- From: Anant Narayanan via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 21 Jul 2012 05:00:29 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2011/webrtc/editor In directory hutz:/tmp/cvs-serv32416/webrtc/editor Modified Files: webrtc-20120720.html webrtc.html Log Message: Fix changelog and update dated version Index: webrtc.html =================================================================== RCS file: /sources/public/2011/webrtc/editor/webrtc.html,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- webrtc.html 21 Jul 2012 02:54:44 -0000 1.19 +++ webrtc.html 21 Jul 2012 05:00:26 -0000 1.20 @@ -2222,9 +2222,12 @@ <dl class="idl" title="dictionary DataChannelInit"> <dt>boolean reliable</dt> - <dd>-</dd><!--dt>[Clamp] long priority</dt> + <dd>FIXME: write description</dd> - <dd>-</dd--> + <!-- + <dt>[Clamp] long priority</dt> + <dd>-</dd + --> </dl> </section> @@ -2256,7 +2259,7 @@ // remote side closed the data channel }; }; -</pre>> +</pre> </div><!--div> <p>This simple example shows how configure two DataChannel objects for different purposes.</p> <pre class='example sh_javascript'> @@ -2452,7 +2455,7 @@ <p>The following event fires on <code><a>DataChannel</a></code> objects:</p> - <table> + <table border="1" style="border-width:0; width:60%"> <tr> <th>Event name</th> @@ -2507,7 +2510,7 @@ <p>The following events fire on <code><a>RTCPeerConnection</a></code> objects:</p> - <table> + <table border="1" style="border-width:0; width:60%"> <tr> <th>Event name</th> @@ -2532,7 +2535,8 @@ <td><code>Event</code></td> <td>TODO</td> - </tr><!-- + </tr> + <!-- <tr> <td><dfn title="event-MediaStream-error"><code>error</code></dfn></td> <td><code>Event</code></td> @@ -2543,24 +2547,22 @@ <td><code>Event</code></td> <td>The <code title="dom-RTCPeerConnection-close">close()</code> method was called. </td> - </tr> - --> - <!-- - <tr> - <td> - <dfn id="event-mediastream-message"> - <code>message</code> - </dfn> - </td> + </tr> + <tr> + <td> + <dfn id="event-mediastream-message"> + <code>message</code> + </dfn> + </td> - <td> - <code>MessageEvent</code> - </td> + <td> + <code>MessageEvent</code> + </td> - <td>A <a href="#data-udp-media-stream">data UDP media - stream</a> message was received.</td> - </tr> - --> + <td>A <a href="#data-udp-media-stream">data UDP media + stream</a> message was received.</td> + </tr> + --> <tr> <td><dfn id= @@ -2626,6 +2628,7 @@ </tr> </tbody> </table> + </section> <section> @@ -2633,6 +2636,33 @@ <p>This section will be removed before publication.</p> + <!-- Why do the first two headings automatically convert to <h2>? --> + <h3>Changes since Jul 20, 2012</h3> + + <ol> + <li>Added RTC Prefix to names (including the notes below).</li> + + <li>Moved to new defintion of configuration and ice servers object.</li> + + <li>Added correlating lines to candidate structure.</li> + + <li>Converted setLocalDescription and setRemoteDescription to be asynchronous.</li> + </ol> + + <h3>Changes since Jul 13, 2012</h3> + + <ol> + <li>Removed peer attribute from RTCPeerConnectionIceEvent (duplicates + functionality of Event.target attribute).</li> + + <li>Removed RTCIceCandidateCallback (no longer used).</li> + + <li>Removed RTCPeerConnectionEvent (we use a simple event instead).</li> + + <li>Removed RTCSdpType argument from setLocalDescription() and + setRemoteDescription(). Updated simple example to match.</li> + </ol> + <h3>Changes since May 28, 2012</h3> <ol> @@ -2640,6 +2670,16 @@ <li>Changed the data structure used to pass in STUN and TURN servers in configuration.</li> + + <li>Updated simple RTCPeerConnection example (RTCPeerConnection + constructor arguments; use icecandidate event).</li> + + <li>Initial import of new Data API.</li> + + <li>Removed some left-overs from the old Data Stream API.</li> + + <li>Renamed "underlying data channel" to "underlying data transport". + Fixed closing procedures. Fixed some typos.</li> </ol> <h3>Changes since April 27, 2012</h3> @@ -2658,12 +2698,18 @@ <ol> <li>Moved MediaStream and related definitions to getUserMedia.</li> - <li>Removed some left-overs from the old Data Stream API.</li> + <li>Removed section "Obtaining local multimedia content".</li> - <li>Initial import of new Data API.</li> + <li>Updated getUserMedia() calls in examples (changes in Media Capture TF + spec).</li> + + <li>Introduced MediaStreamTrackList interface with support for adding and + removing tracks.</li> + + <li>Updated the algorithm that is run when RTCPeerConnection receives a + stream (create new stream when negotiated instead of when data + arrives).</li> - <li>Renamed "underlying data channel" to "underlying data transport". - Fixed closing procedures. Fixed some typos.</li> </ol> <h3>Changes since 12 January 2012</h3> @@ -2735,46 +2781,6 @@ <li>Moved (and extended) the explanation about track references and media sources from LocalMediaStream to MediaStreamTrack.</li> - <li>Removed section "Obtaining local multimedia content".</li> - - <li>Updated getUserMedia() calls in examples (changes in Media Capture TF - spec).</li> - - <li>Introduced MediaStreamTrackList interface with support for adding and - removing tracks.</li> - - <li>Updated the algorithm that is run when RTCPeerConnection receives a - stream (create new stream when negotiated instead of when data - arrives).</li> - - <li>Removed some left-overs from the old Data Stream API.</li> - - <li>Initial import of new Data API.</li> - - <li>Renamed "underlying data channel" to "underlying data transport". - Fixed closing procedures. Fixed some typos.</li> - - <li>Updated simple RTCPeerConnection example (RTCPeerConnection - constructor arguments; use icecandidate event).</li> - - <li>Removed peer attribute from RTCPeerConnectionIceEvent (duplicates - functionality of Event.target attribute).</li> - - <li>Removed RTCIceCandidateCallback (no longer used).</li> - - <li>Removed RTCPeerConnectionEvent (we use a simple event instead).</li> - - <li>Removed RTCSdpType argument from setLocalDescription() and - setRemoteDescription(). Updated simple example to match.</li> - - <li>Added RTC Prefix to names (including the notes above).</li> - - <li>Moved to new defintion of configuration and ice servers object.</li> - - <li>Added correlating lines to candidate structure.</li> - - <li>Converted setLocalDescription and setRemoteDescription to be asynchronous.</li> - </ol> </section> Index: webrtc-20120720.html =================================================================== RCS file: /sources/public/2011/webrtc/editor/webrtc-20120720.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- webrtc-20120720.html 21 Jul 2012 02:54:44 -0000 1.1 +++ webrtc-20120720.html 21 Jul 2012 05:00:26 -0000 1.2 @@ -454,7 +454,7 @@ border-collapse: collapse; width: 100%; } -</style><link rel="stylesheet" href="http://www.w3.org/StyleSheets/TR/W3C-ED" /> +</style><link rel="stylesheet" href="http://www.w3.org/StyleSheets/TR/W3C-ED" /><link rel="stylesheet" type="text/css" href="resource://sharemenot-at-franziroesner-dot-com/sharemenot/data/Content Script/Content.css" /> <!--[if lt IE 9]><script src='undefined://www.w3.org/2008/site/js/html5shiv.js'></script><![endif]--> </head> @@ -470,14 +470,11 @@ <dl> <dt>This version:</dt> - <dd><a href="http://dev.w3.org/2011/webrtc/editor/webrtc-20120720.html">http://dev.w3.org/2011/webrtc/editor/webrtc-20120720.html</a></dd> + <dd><a href="http://dev.w3.org/2011/webrtc/editor/webrtc.html">http://dev.w3.org/2011/webrtc/editor/webrtc.html</a></dd> <dt>Latest published version:</dt> <dd><a href="http://www.w3.org/TR/webrtc/">http://www.w3.org/TR/webrtc/</a></dd> - <dt>Previous version:</dt> - <dd><a href="http://dev.w3.org/2011/webrtc/editor/webrtc-20120530.html">http://dev.w3.org/2011/webrtc/editor/webrtc-20120530.html</a></dd> - <dt>Latest editor's draft:</dt> <dd><a href="http://dev.w3.org/2011/webrtc/editor/webrtc.html">http://dev.w3.org/2011/webrtc/editor/webrtc.html</a></dd> @@ -2306,7 +2303,7 @@ <pre class="idl"><span id="idl-def-DataChannelInit" class="idlDictionary">dictionary <span class="idlDictionaryID">DataChannelInit</span> { <span class="idlMember"> <span class="idlMemberType"><a>boolean</a></span> <span class="idlMemberName"><a href="#widl-DataChannelInit-reliable">reliable</a></span>;</span> -};</span></pre><section id="dictionary-datachannelinit-members"><h4><span class="secno">9.1.4 </span>Dictionary <a class="idlType" href="#idl-def-DataChannelInit"><code>DataChannelInit</code></a> Members</h4><dl class="dictionary-members"><dt id="widl-DataChannelInit-reliable"><code>reliable</code> of type <span class="idlMemberType"><a>boolean</a></span></dt><dd>-</dd></dl></section> +};</span></pre><section id="dictionary-datachannelinit-members"><h4><span class="secno">9.1.4 </span>Dictionary <a class="idlType" href="#idl-def-DataChannelInit"><code>DataChannelInit</code></a> Members</h4><dl class="dictionary-members"><dt id="widl-DataChannelInit-reliable"><code>reliable</code> of type <span class="idlMemberType"><a>boolean</a></span></dt><dd>FIXME: write description</dd></dl></section> </section> <section id="examples"> @@ -2332,7 +2329,7 @@ chan</span><span class="pun">.</span><span class="pln">onclose </span><span class="pun">=</span><span class="pln"> </span><span class="kwd">function</span><span class="pln"> </span><span class="pun">()</span><span class="pln"> </span><span class="pun">{</span><span class="pln"> </span><span class="com">// remote side closed the data channel</span><span class="pln"> </span><span class="pun">};</span><span class="pln"> -</span><span class="pun">};</span></pre></div>> +</span><span class="pun">};</span></pre></div> </div> <!--div> <p>This simple example shows how configure two DataChannel objects for different purposes.</p> @@ -2512,7 +2509,7 @@ <p>The following event fires on <code><a href="#idl-def-DataChannel" class="idlType"><code>DataChannel</code></a></code> objects:</p> - <table> + <table border="1" style="border-width:0; width:60%"> <tbody><tr> <th>Event name</th> @@ -2566,7 +2563,7 @@ <p>The following events fire on <code><a href="#idl-def-RTCPeerConnection" class="idlType"><code>RTCPeerConnection</code></a></code> objects:</p> - <table> + <table border="1" style="border-width:0; width:60%"> <tbody><tr> <th>Event name</th> @@ -2591,6 +2588,7 @@ <td>TODO</td> </tr> + <!-- <tr> <td><dfn title="event-MediaStream-error"><code>error</code></dfn></td> @@ -2602,26 +2600,22 @@ <td><code>Event</code></td> <td>The <code title="dom-RTCPeerConnection-close">close()</code> method was called. </td> - </tr> - --> - - -<!-- - <tr> - <td> - <dfn id="event-mediastream-message"> - <code>message</code> - </dfn> - </td> + </tr> + <tr> + <td> + <dfn id="event-mediastream-message"> + <code>message</code> + </dfn> + </td> - <td> - <code>MessageEvent</code> - </td> + <td> + <code>MessageEvent</code> + </td> - <td>A <a href="#data-udp-media-stream">data UDP media - stream</a> message was received.</td> - </tr> - --> + <td>A <a href="#data-udp-media-stream">data UDP media + stream</a> message was received.</td> + </tr> + --> <tr> @@ -2681,6 +2675,7 @@ </tr> </tbody> </table> + </section> <section id="change-log"> @@ -2690,16 +2685,55 @@ <p>This section will be removed before publication.</p> - <h2 id="changes-since-may-28-2012">Changes since May 28, 2012</h2> + +<!-- Why do the first two headings automatically convert to <h2>? --> + + <h2 id="changes-since-jul-20-2012">Changes since Jul 20, 2012</h2> + + <ol> + <li>Added RTC Prefix to names (including the notes below).</li> + + <li>Moved to new defintion of configuration and ice servers object.</li> + + <li>Added correlating lines to candidate structure.</li> + + <li>Converted setLocalDescription and setRemoteDescription to be asynchronous.</li> + </ol> + + <h2 id="changes-since-jul-13-2012">Changes since Jul 13, 2012</h2> + + <ol> + <li>Removed peer attribute from RTCPeerConnectionIceEvent (duplicates + functionality of Event.target attribute).</li> + + <li>Removed RTCIceCandidateCallback (no longer used).</li> + + <li>Removed RTCPeerConnectionEvent (we use a simple event instead).</li> + + <li>Removed RTCSdpType argument from setLocalDescription() and + setRemoteDescription(). Updated simple example to match.</li> + </ol> + + <h3 id="changes-since-may-28-2012">Changes since May 28, 2012</h3> <ol> <li>Changed names to use RTC Prefix.</li> <li>Changed the data structure used to pass in STUN and TURN servers in configuration.</li> + + <li>Updated simple RTCPeerConnection example (RTCPeerConnection + constructor arguments; use icecandidate event).</li> + + <li>Initial import of new Data API.</li> + + <li>Removed some left-overs from the old Data Stream API.</li> + + <li>Renamed "underlying data channel" to "underlying data transport". + Fixed closing procedures. Fixed some typos.</li> </ol> - <h2 id="changes-since-april-27-2012">Changes since April 27, 2012</h2> + <h3 id="changes-since-april-27-2012">Changes since April 27, 2012</h3> <ol> <li>Major rewrite of RTCPeerConnection section to line up with IETF JSEP @@ -2715,12 +2749,18 @@ <ol> <li>Moved MediaStream and related definitions to getUserMedia.</li> - <li>Removed some left-overs from the old Data Stream API.</li> + <li>Removed section "Obtaining local multimedia content".</li> - <li>Initial import of new Data API.</li> + <li>Updated getUserMedia() calls in examples (changes in Media Capture TF + spec).</li> + + <li>Introduced MediaStreamTrackList interface with support for adding and + removing tracks.</li> + + <li>Updated the algorithm that is run when RTCPeerConnection receives a + stream (create new stream when negotiated instead of when data + arrives).</li> - <li>Renamed "underlying data channel" to "underlying data transport". - Fixed closing procedures. Fixed some typos.</li> </ol> <h3 id="changes-since-12-january-2012">Changes since 12 January 2012</h3> @@ -2792,46 +2832,6 @@ <li>Moved (and extended) the explanation about track references and media sources from LocalMediaStream to MediaStreamTrack.</li> - <li>Removed section "Obtaining local multimedia content".</li> - - <li>Updated getUserMedia() calls in examples (changes in Media Capture TF - spec).</li> - - <li>Introduced MediaStreamTrackList interface with support for adding and - removing tracks.</li> - - <li>Updated the algorithm that is run when RTCPeerConnection receives a - stream (create new stream when negotiated instead of when data - arrives).</li> - - <li>Removed some left-overs from the old Data Stream API.</li> - - <li>Initial import of new Data API.</li> - - <li>Renamed "underlying data channel" to "underlying data transport". - Fixed closing procedures. Fixed some typos.</li> - - <li>Updated simple RTCPeerConnection example (RTCPeerConnection - constructor arguments; use icecandidate event).</li> - - <li>Removed peer attribute from RTCPeerConnectionIceEvent (duplicates - functionality of Event.target attribute).</li> - - <li>Removed RTCIceCandidateCallback (no longer used).</li> - - <li>Removed RTCPeerConnectionEvent (we use a simple event instead).</li> - - <li>Removed RTCSdpType argument from setLocalDescription() and - setRemoteDescription(). Updated simple example to match.</li> - - <li>Added RTC Prefix to names (including the notes above).</li> - - <li>Moved to new defintion of configuration and ice servers object.</li> - - <li>Added correlating lines to candidate structure.</li> - - <li>Converted setLocalDescription and setRemoteDescription to be asynchronous.</li> - </ol> </section> @@ -2859,4 +2859,4 @@ </dd><dt id="bib-TURN-URI">[TURN-URI]</dt><dd>M. Petit-Huguenin, S. Nandakumar, G. Salgueiro, and P. Jones. <a href="http://tools.ietf.org/html/draft-petithuguenin-behave-turn-uris"><cite>Traversal Using Relays around NAT (TURN) Uniform Resource Identifiers.</cite></a> 12 March 2012. Internet Draft (work in progress). URL: <a href="http://tools.ietf.org/html/draft-petithuguenin-behave-turn-uris">http://tools.ietf.org/html/draft-petithuguenin-behave-turn-uris</a> </dd><dt id="bib-WEBIDL">[WEBIDL]</dt><dd>Cameron McCormack. <a href="http://www.w3.org/TR/2011/WD-WebIDL-20110927/"><cite>Web IDL.</cite></a> 27 September 2011. W3C Working Draft. (Work in progress.) URL: <a href="http://www.w3.org/TR/2011/WD-WebIDL-20110927/">http://www.w3.org/TR/2011/WD-WebIDL-20110927/</a> </dd></dl></section><section id="informative-references"><h3><span class="secno">B.2 </span>Informative references</h3><dl class="bibliography"><dt id="bib-RTCWEB-JSEP">[RTCWEB-JSEP]</dt><dd>J. Uberti, C. Jennings. <a href="http://datatracker.ietf.org/doc/draft-ietf-rtcweb-jsep/"><cite>Javascript Session Establishment Protocol.</cite></a> URL: <a href="http://datatracker.ietf.org/doc/draft-ietf-rtcweb-jsep/">http://datatracker.ietf.org/doc/draft-ietf-rtcweb-jsep/</a> -</dd></dl></section></section></body></html> +</dd></dl></section></section></body></html> \ No newline at end of file
Received on Saturday, 21 July 2012 05:00:31 UTC