- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 21 Jul 2008 12:40:29 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/pubnotes In directory hutz:/tmp/cvs-serv31774 Modified Files: Overview.html Overview.src.html Log Message: filled out the "summary" section Index: Overview.html =================================================================== RCS file: /sources/public/html5/pubnotes/Overview.html,v retrieving revision 1.321 retrieving revision 1.322 diff -u -d -r1.321 -r1.322 --- Overview.html 19 Jul 2008 18:44:20 -0000 1.321 +++ Overview.html 21 Jul 2008 12:40:27 -0000 1.322 @@ -12,7 +12,7 @@ </head> <body><div class="head"><div><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" width="72" height="48" alt="W3C" /></a></div><h1>HTML 5 Publication Notes</h1><h2> W3C - Editor’s Draft <em>20 July 2008</em></h2><dl><dt>Latest Editor’s Draft:</dt><dd><a id="latestED" href="http://dev.w3.org/html5/pubnotes/Overview.src.html">http://dev.w3.org/html5/pubnotes/Overview.src.html</a><script type="text/ecmascript"> + Editor’s Draft <em>21 July 2008</em></h2><dl><dt>Latest Editor’s Draft:</dt><dd><a id="latestED" href="http://dev.w3.org/html5/pubnotes/Overview.src.html">http://dev.w3.org/html5/pubnotes/Overview.src.html</a><script type="text/ecmascript"> var id = "$Id$"; var a = document.getElementById('cvsVersionLink'); var xs = id.match(/ ([0-9]\.[0-9.]+) /); @@ -36,7 +36,7 @@ of the changes without necessarily needing to read the specification itself.</p> <div class="ednote"><h4 class="ednoteHeader">Editorial note</h4><p>This document was generated on - <b>2008-07-20T03:43:53+09:00</b>.</p></div></div> + <b>2008-07-21T21:39:05+09:00</b>.</p></div></div> <div id="status"> <h2>Status of this Document</h2> <p><em> @@ -46,7 +46,7 @@ report can be found in the <a href="http://www.w3.org/TR/">W3C technical reports index</a> at http://www.w3.org/TR/. </em></p><p> - This document is the 20 July 2008 <b>Editor’s Draft</b> of + This document is the 21 July 2008 <b>Editor’s Draft</b> of <cite>HTML 5 Publication Notes</cite>. Please send comments about this document to @@ -572,7 +572,48 @@ detailed descriptions of the changes, see the sections in this document that follow this one.</p> <ul> - <li> </li> + <li>A new <a href="http://www.w3.org/TR/html5/single-page/#channel0">channel messaging</a> feature was added. It defines + the + <code>MessageChannel</code> + and + <code>MessagePort</code> + interfaces.</li> + <li>The <a href="messageport">messagePort</a> attribute + was added to the interface definition for the + <code>MessageEvent</code> interface.</li> + <li>For use in the newly added <a href="#channel0">channel + messaging</a> feature as well as in the <a href="cross-document">cross-document messaging</a> + feature, + the <code class="method">postMessage()</code> + method + now has, in addition to its existing + <a href="http://www.w3.org/TR/html5/single-page/#postmessage"><code class="method">postMessage(<var>message</var>, + <var>targetOrigin</var>)</code></a> form (“two + argument” form), + <a href="http://www.w3.org/TR/html5/single-page/#postmessage0"><code class="method">postMessage(<var>message</var>, + <var>messagePort</var>, + <var>targetOrigin</var>)</code></a> form (“three + argument” form).</li> + <li>The “Network connections” section was extensively + rewritten and re-titled <a href="http://www.w3.org/TR/html5/single-page/#network">Web sockets</a>. It defines a <code>WebSocket</code> + interface (which essentially replaces the + <code>Connection</code> interface defined in previous + drafts) and a “Web Socket protocol” that specifies how + a Web-socket-enabled user agent and Web-socket-enabled + server communicate.</li> + <li>A new “<a href="#urls">URLs</a> section was added; + among other things, it defines the terms “URL” and + “absolute” URL, defines interfaces for URL manipulation + and related URL decomposition attributes, and specifies + URL parsing rules for user agents.</li> + <li>The <a href="http://www.w3.org/TR/html5/single-page/#effective3">origin of a resource and the effective + script origin of a resource</a> are now defined as + being allowed to include “extra data”, such as the + host’s certificate.</li> + <li>The + <code class="element">event-source</code> element + was renamed to <a href="http://www.w3.org/TR/html5/single-page/#the-eventsource"><code class="element">eventsource</code></a>.</li> + <li>The “Server-sent DOM events” feature was renamed <a href="http://www.w3.org/TR/html5/single-page/#server-sent-events">server-sent events</a>.</li> </ul> </div> <div id="details_wd2" class="section"> Index: Overview.src.html =================================================================== RCS file: /sources/public/html5/pubnotes/Overview.src.html,v retrieving revision 1.313 retrieving revision 1.314 diff -u -d -r1.313 -r1.314 --- Overview.src.html 19 Jul 2008 18:44:20 -0000 1.313 +++ Overview.src.html 21 Jul 2008 12:40:27 -0000 1.314 @@ -75,7 +75,62 @@ detailed descriptions of the changes, see the sections in this document that follow this one.</p> <ul> - <li> </li> + <li>A new <a + href=http://www.w3.org/TR/html5/single-page/#channel0 + >channel messaging</a> feature was added. It defines + the + <code>MessageChannel</code> + and + <code>MessagePort</code> + interfaces.</li> + <li>The <a href=messageport>messagePort</a> attribute + was added to the interface definition for the + <code>MessageEvent</code> interface.</li> + <li>For use in the newly added <a href=#channel0>channel + messaging</a> feature as well as in the <a + href=cross-document>cross-document messaging</a> + feature, + the <code class=method>postMessage()</code> + method + now has, in addition to its existing + <a href=http://www.w3.org/TR/html5/single-page/#postmessage + ><code class=method>postMessage(<var>message</var>, + <var>targetOrigin</var>)</code></a> form (“two + argument” form), + <a href=http://www.w3.org/TR/html5/single-page/#postmessage0 + ><code + class=method>postMessage(<var>message</var>, + <var>messagePort</var>, + <var>targetOrigin</var>)</code></a> form (“three + argument” form).</li> + <li>The “Network connections” section was extensively + rewritten and re-titled <a + href=http://www.w3.org/TR/html5/single-page/#network + >Web sockets</a>. It defines a <code>WebSocket</code> + interface (which essentially replaces the + <code>Connection</code> interface defined in previous + drafts) and a “Web Socket protocol” that specifies how + a Web-socket-enabled user agent and Web-socket-enabled + server communicate.</li> + <li>A new “<a href=#urls>URLs</a> section was added; + among other things, it defines the terms “URL” and + “absolute” URL, defines interfaces for URL manipulation + and related URL decomposition attributes, and specifies + URL parsing rules for user agents.</li> + <li>The <a + href=http://www.w3.org/TR/html5/single-page/#effective3 + >origin of a resource and the effective + script origin of a resource</a> are now defined as + being allowed to include “extra data”, such as the + host’s certificate.</li> + <li>The + <code class=element>event-source</code> element + was renamed to <a + href=http://www.w3.org/TR/html5/single-page/#the-eventsource><code + class=element>eventsource</code></a>.</li> + <li>The “Server-sent DOM events” feature was renamed <a + href=http://www.w3.org/TR/html5/single-page/#server-sent-events + >server-sent events</a>.</li> </ul> </section> <section id=details_wd2>
Received on Monday, 21 July 2008 12:41:04 UTC