- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 07 Jul 2008 10:45:53 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/pubnotes In directory hutz:/tmp/cvs-serv2404 Modified Files: ChangeLog Overview.html Overview.src.html VERSION Log Message: 1.1037 Make HTML5 agnostic regarding Cookie and Cookie2. (Re: Web Sockets) (credit: ns) (whatwg r1848) Index: Overview.html =================================================================== RCS file: /sources/public/html5/pubnotes/Overview.html,v retrieving revision 1.295 retrieving revision 1.296 diff -u -d -r1.295 -r1.296 --- Overview.html 2 Jul 2008 21:35:20 -0000 1.295 +++ Overview.html 7 Jul 2008 10:45:51 -0000 1.296 @@ -13,7 +13,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>2 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>3 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.]+) /); @@ -52,7 +52,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 2 July 2008 <b>Editor’s Draft</b> of + This document is the 3 July 2008 <b>Editor’s Draft</b> of <cite>HTML 5 Publication Notes</cite>. Please send comments about this document to @@ -108,6 +108,8 @@ </li> <li id="dom_wd2-toc"><a href="#dom_wd2">Section 3, Semantics and structure of HTML documents</a> <ul> +<li id="documents_fpwd-toc"><a href="#documents_fpwd">Section 3.2, Documents</a> +</li> <li id="elements_wd2-toc"><a href="#elements_wd2">Section 3.3, Elements</a> <ul> <li id="global_wd2-toc"><a href="#global_wd2">Section 3.3.3, Global attributes</a> @@ -825,9 +827,9 @@ <p>This section provides a definition of HTML documents and HTML elements in terms of the DOM; it defines:</p> <ul> - <li>the <code>HTMLDocument</code> interface - (associated DOM attributes and DOM tree - accessors)</li> + <li>the <code>Document</code> object and + <code>HTMLDocument</code> interface (associated DOM + attributes and DOM tree accessors)</li> <li>the <code>HTMLElement</code> interface</li> <li>global HTML content attributes and event-handler content attributes</li> @@ -840,6 +842,28 @@ <code class="domattribute">innerHTML</code> family of DOM attributes.</li> </ul> + <div id="documents_fpwd" class="section"> + <h2>Section 3.2, Documents <a class="hash" href="#documents_fpwd">#</a> <a class="toc-bak" href="#documents_fpwd-toc">T</a></h2><div class="spec-links"><p class="spec-link">View “<a href="http://www.w3.org/html/wg/html5/#documents">Section 3.2, Documents</a>” in the + current “Editor’s Draft” + version of the specification.</p><p class="spec-link">View + + “<a href="http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html#documents">Section 3.2, Documents</a>” + in a + diff-marked version of the specification, showing + changes made between + 10 June 2008 + and + current “Editor’s Draft”.</p></div> + <p>This section defines the Document object. In this + section, the following changes were made:</p> + <ul> + <li>In the “Resource metadata management” + subsection, which deals in part with the + <code class="domattribute">cookie</code> + attribute, references to RFC 2109 were changed to + refer to RFC 2109 “or later specifications”.</li> + </ul> + </div> <div id="elements_wd2" class="section"> <h2>Section 3.3, Elements <a class="hash" href="#elements_wd2">#</a> <a class="toc-bak" href="#elements_wd2-toc">T</a></h2><div class="spec-links"><p class="spec-link">View “<a href="http://www.w3.org/html/wg/html5/#elements">Section 3.3, Elements</a>” in the current “Editor’s Draft” @@ -913,7 +937,17 @@ <li>In the “Dynamic markup insertion in HTML” subsection, an instance of the phrase “script that will execute as soon as the parser resumes” was - changed to <q> pending external script</q>.</li> + changed to <q>pending external script</q>.</li> + <li>In the “Dynamic markup insertion in XML” + subsection, a portion of the text was updated to now + read, <q><em class="highlight">For the innerHTML + attribute on HTMLElement objects,</em> if any of + the elements in the serialization are in no + namespace, the default namespace in scope for + those elements must be explicitly declared as the + empty string. <em class="highlight">(This doesn’t + apply to the innerHTML attribute on HTMLDocument + objects.)</em></q></li> </ul> </div> </div> @@ -1795,6 +1829,12 @@ resource.</li> </ul> </div> + + + + + + <div id="links_wd2" class="section"> <h2>Section 5.11, Links <a class="hash" href="#links_wd2">#</a> <a class="toc-bak" href="#links_wd2-toc">T</a></h2><div class="spec-links"><p class="spec-link">View “<a href="http://www.w3.org/html/wg/html5/#links">Section 5.11, Links</a>” in the current “Editor’s Draft” Index: ChangeLog =================================================================== RCS file: /sources/public/html5/pubnotes/ChangeLog,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- ChangeLog 2 Jul 2008 00:52:23 -0000 1.27 +++ ChangeLog 7 Jul 2008 10:45:50 -0000 1.28 @@ -1,3 +1,61 @@ +2008-07-03 09:46 mike + + * Overview.src.html (1.281): 1.956 make innerHTML on XML + documents not do the xmlns='' thing. (whatwg r1766) + +2008-07-03 06:35 mike + + * Overview.html (1.295), Overview.src.html (1.280): 1.958 Remove + redundancy in gradient extrapolation. (whatwg r1768) + +2008-07-03 06:22 mike + + * Overview.html (1.294), Overview.src.html (1.279): 1.959 Clarify + the meaning of 'butt'. (re: Canvas line style comments) (whatwg + r1769) + +2008-07-03 06:06 mike + + * Overview.html (1.293), Overview.src.html (1.278): 1.960 Define + 'miter limit' better. + +2008-07-03 05:59 mike + + * Overview.html (1.292), Overview.src.html (1.277): 1.961 + toDataURL() arguments for image/jpeg. (Re: <canvas> JPEG quality) + (whatwg r1771) + +2008-07-03 03:50 mike + + * Overview.html (1.291), Overview.src.html (1.276): 1.962 Make + computed values in the Canvas API take effect on setting (whatwg + r1772) + +2008-07-03 01:34 mike + + * Overview.html (1.290), Overview.src.html (1.275): 1.966 Clarify + that we are specifying black-box behaviour, so it (whatwg r1776) + +2008-07-02 22:27 mike + + * Overview.html (1.289), Overview.src.html (1.274): 1.971 Fix an + error in the outlining algorithm that broke outlines (whatwg + r1781) + +2008-07-02 22:18 mike + + * Overview.html (1.288), Overview.src.html (1.273): 1.974 Revamp + the way that type='' on <link> is defined (whatwg r1784) + +2008-07-02 22:07 mike + + * Overview.html (1.287), Overview.src.html (1.272): 1.975 Allow + sniffing when the expected type is an image. (whatwg r1785) + +2008-07-02 09:52 mike + + * ChangeLog (1.27), VERSION (1.8): checkpointing + 2008-07-02 09:18 mike * Overview.html (1.286), Overview.src.html (1.271): 1.977 Define Index: VERSION =================================================================== RCS file: /sources/public/html5/pubnotes/VERSION,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- VERSION 2 Jul 2008 00:52:23 -0000 1.8 +++ VERSION 7 Jul 2008 10:45:51 -0000 1.9 @@ -1,6 +1,6 @@ <!-- * vim: set ft=xml: --> <versions> <done>1.1028</done> - <todo>1.976</todo> + <todo>1.955</todo> <todo>1.939</todo> </versions> Index: Overview.src.html =================================================================== RCS file: /sources/public/html5/pubnotes/Overview.src.html,v retrieving revision 1.281 retrieving revision 1.282 diff -u -d -r1.281 -r1.282 --- Overview.src.html 3 Jul 2008 00:46:08 -0000 1.281 +++ Overview.src.html 7 Jul 2008 10:45:51 -0000 1.282 @@ -286,9 +286,9 @@ <p>This section provides a definition of HTML documents and HTML elements in terms of the DOM; it defines:</p> <ul> - <li>the <code>HTMLDocument</code> interface - (associated DOM attributes and DOM tree - accessors)</li> + <li>the <code>Document</code> object and + <code>HTMLDocument</code> interface (associated DOM + attributes and DOM tree accessors)</li> <li>the <code>HTMLElement</code> interface</li> <li>global HTML content attributes and event-handler content attributes</li> @@ -301,6 +301,18 @@ <code class=domattribute>innerHTML</code> family of DOM attributes.</li> </ul> + <section id=documents_fpwd> + <h2>Section 3.2, Documents</h2> + <p>This section defines the Document object. In this + section, the following changes were made:</p> + <ul> + <li>In the “Resource metadata management” + subsection, which deals in part with the + <code class=domattribute>cookie</code> + attribute, references to RFC 2109 were changed to + refer to RFC 2109 “or later specifications”.</li> + </ul> + </section> <section id=elements_wd2> <h2>Section 3.3, Elements</h2> <p>This section defines the @@ -982,6 +994,12 @@ resource.</li> </ul> </section> + <!-- * <section id=structured_wd2> --> + <!-- * <h2>Section 5.10, Structured client-side storage</h2> --> + <!-- * <p>This section concerns new mechanisms in HTML5 for --> + <!-- * persistent client-side storage of data. In this --> + <!-- * section, the following changes were made:</p> --> + <!-- * </section> --> <section id=links_wd2> <h2>Section 5.11, Links</h2> <p>In this section, which concerns handling of
Received on Monday, 7 July 2008 10:46:28 UTC