- From: CVS User ihickson <cvsmail@w3.org>
- Date: Wed, 23 Apr 2014 17:05:33 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/workers In directory roscoe:/tmp/cvs-serv26319 Modified Files: Overview.html Log Message: Print version of the spec (thanks IZh!); protocol-neutral version of the spec so that scripts and styles work on https://www.whatwg.org/ (whatwg r8578) --- /sources/public/html5/workers/Overview.html 2014/03/17 19:39:17 1.415 +++ /sources/public/html5/workers/Overview.html 2014/04/23 17:05:33 1.416 @@ -216,7 +216,7 @@ <h1>Web Workers</h1> - <h2 class="no-num no-toc" id="editor-s-draft-17-march-2014">Editor's Draft 17 March 2014</h2> + <h2 class="no-num no-toc" id="editor-s-draft-23-april-2014">Editor's Draft 23 April 2014</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/workers/">http://www.w3.org/TR/workers/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -353,7 +353,7 @@ </dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 17 March 2014 Editor's Draft. + This specification is the 23 April 2014 Editor's Draft. </p> @@ -493,7 +493,7 @@ <p>The bulk of this code is simply an unoptimized search for a prime number. The <code title="dom-DedicatedWorkerGlobalScope-postMessage"><a href="#dom-dedicatedworkerglobalscope-postmessage">postMessage()</a></code> method is used to send a message back to the page when a prime is found.</p> - <p><a href="http://www.whatwg.org/demos/workers/primes/page.html">View this example online</a>.</p> + <p><a href="//www.whatwg.org/demos/workers/primes/page.html">View this example online</a>.</p> @@ -601,7 +601,7 @@ postMessage(get('search.cgi?' + event.data)); };</pre> - <p><a href="http://www.whatwg.org/demos/workers/stocks/page.html">View this example online</a>.</p> + <p><a href="//www.whatwg.org/demos/workers/stocks/page.html">View this example online</a>.</p> <h4 id="shared-workers-introduction"><span class="secno">1.2.3 </span>Shared workers introduction</h4> @@ -636,7 +636,7 @@ } </pre> - <p><a href="http://www.whatwg.org/demos/workers/shared/001/test.html">View this example online</a>.</p> + <p><a href="//www.whatwg.org/demos/workers/shared/001/test.html">View this example online</a>.</p> <hr><p>This second example extends the first one by changing two things: first, messages are received using <code title="">addEventListener()</code> instead of an <span title="event handler IDL @@ -672,7 +672,7 @@ } </pre> - <p><a href="http://www.whatwg.org/demos/workers/shared/002/test.html">View this example online</a>.</p> + <p><a href="//www.whatwg.org/demos/workers/shared/002/test.html">View this example online</a>.</p> <hr><p>Finally, the example is extended to show how two pages can connect to the same worker; in this case, the second page is merely in an <code>iframe</code> on the first page, but the same @@ -723,7 +723,7 @@ } </pre> - <p><a href="http://www.whatwg.org/demos/workers/shared/003/test.html">View this example online</a>.</p> + <p><a href="//www.whatwg.org/demos/workers/shared/003/test.html">View this example online</a>.</p> <h4 id="shared-state-using-a-shared-worker"><span class="secno">1.2.4 </span>Shared state using a shared worker</h4> @@ -1011,7 +1011,7 @@ naming another viewer, it sets up a direct connection between the two, so that the two viewers can communicate directly without the worker having to proxy all the messages.</p> - <p><a href="http://www.whatwg.org/demos/workers/multiviewer/page.html">View this example online</a>.</p> + <p><a href="//www.whatwg.org/demos/workers/multiviewer/page.html">View this example online</a>.</p> <h4 id="delegation"><span class="secno">1.2.5 </span>Delegation</h4> @@ -1097,7 +1097,7 @@ <p>They receive two numbers in two events, perform the computation for the range of numbers thus specified, and then report the result back to the parent.</p> - <p><a href="http://www.whatwg.org/demos/workers/multicore/page.html">View this example online</a>.</p> + <p><a href="//www.whatwg.org/demos/workers/multicore/page.html">View this example online</a>.</p> @@ -2284,7 +2284,7 @@ <dd><cite><a href="http://dev.w3.org/2006/webapi/FileUpload/publish/FileAPI.html">File API</a></cite>, A. Ranganathan. W3C.</dd> <dt id="refsHTML">[HTML]</dt> - <dd><cite><a href="http://www.whatwg.org/specs/web-apps/current-work/">HTML</a></cite>, I. Hickson. WHATWG.</dd> + <dd><cite><a href="//www.whatwg.org/specs/web-apps/current-work/">HTML</a></cite>, I. Hickson. WHATWG.</dd> <dt id="refsRFC2119">[RFC2119]</dt> <dd><cite><a href="http://tools.ietf.org/html/rfc2119">Key words for use in RFCs to Indicate Requirement Levels</a></cite>, S. Bradner. IETF.</dd>
Received on Wednesday, 23 April 2014 17:05:34 UTC