- From: poot <cvsmail@w3.org>
- Date: Tue, 30 Dec 2008 08:48:55 +0900 (JST)
- To: public-html-diffs@w3.org
When changing encoding on the fly after a POST, don't hit the network again whatever happens. (bug 6258) (whatwg r2616) http://www.w3.org/Bugs/Public/show_bug.cgi?id=6258 8.2.3 Parse state http://people.w3.org/mike/diffs/html5/spec/Overview.1.1786.html#parse-state 8.2.2.4 Changing the encoding while parsing http://people.w3.org/mike/diffs/html5/spec/Overview.1.1786.html#changing-the-encoding-while-parsing http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1785&r2=1.1786&f=h http://html5.org/tools/web-apps-tracker?from=2615&to=2616 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1785 retrieving revision 1.1786 diff -u -d -r1.1785 -r1.1786 --- Overview.html 29 Dec 2008 23:34:56 -0000 1.1785 +++ Overview.html 29 Dec 2008 23:46:03 -0000 1.1786 @@ -37709,7 +37709,13 @@ <i>confident</i>. Whenever possible, this should be done without actually contacting the network layer (the bytes should be re-parsed from memory), even if, e.g., the document is marked as - not being cacheable.</li> + not being cacheable. If this is not possible and contacting the + network layer would involve repeating a request that uses a method + other than HTTP GET (<a href=#concept-http-equivalent-get title=concept-http-equivalent-get>or + equivalent</a> for non-HTTP URLs), then instead set the <a href=#concept-encoding-confidence title=concept-encoding-confidence>confidence</a> to + <i>confident</i> and ignore the new encoding. The resource will be + misinterpreted. User agents may notify the user of the situation, + to aid in application development.</li> </ol><h4 id=parse-state><span class=secno>8.2.3 </span>Parse state</h4><h5 id=the-insertion-mode><span class=secno>8.2.3.1 </span>The insertion mode</h5><p>The <dfn id=insertion-mode>insertion mode</dfn> is a flag that controls the primary operation of the tree construction stage.<p>Initially the <a href=#insertion-mode>insertion mode</a> is "<a href=#the-initial-insertion-mode title="insertion mode: initial">initial</a>". It can change to
Received on Monday, 29 December 2008 23:49:32 UTC