- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 07 Dec 2009 06:20:57 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv26302 Modified Files: Overview.html Log Message: Remove a bogus sentence from the WebSocket protocol URL parsing section; and some minor editorial tweaks (whatwg r4410) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3524 retrieving revision 1.3525 diff -u -d -r1.3524 -r1.3525 --- Overview.html 6 Dec 2009 08:23:52 -0000 1.3524 +++ Overview.html 7 Dec 2009 06:20:54 -0000 1.3525 @@ -235,7 +235,7 @@ } function load(script) { var e = document.createElement('script'); - e.setAttribute('src', 'http://www.whatwg.org/specs/web-apps/current-work/' + script + '?' + document.referrer); + e.setAttribute('src', 'http://www.whatwg.org/specs/web-apps/current-work/' + script + '?' + encodeURIComponent(location) + '&' + encodeURIComponent(document.referrer)); document.body.appendChild(e); } function init() { @@ -249,8 +249,7 @@ load('toc.js'); load('styler.js'); // load('updater.js'); // would need cross-site XHR - if (document.getElementById('head')) - load('dfn.js'); + load('dfn.js'); // load('status.js'); // would need cross-site XHR if (getCookie('profile') == '1') document.getElementsByTagName('h2')[0].textContent += '; load: ' + (new Date() - loadTimer) + 'ms'; @@ -261,7 +260,7 @@ <h1>HTML5</h1> <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2> - <h2 class="no-num no-toc" id="editor-s-draft-6-december-2009">Editor's Draft 6 December 2009</h2> + <h2 class="no-num no-toc" id="editor-s-draft-7-december-2009">Editor's Draft 7 December 2009</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -354,7 +353,7 @@ specification's progress along the W3C Recommendation track. - This specification is the 6 December 2009 Editor's Draft. + This specification is the 7 December 2009 Editor's Draft. </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of) what was previously the HTML4, XHTML1, and DOM2 HTML
Received on Monday, 7 December 2009 06:21:06 UTC