- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 25 Oct 2011 03:46:25 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17269
Modified Files:
offline.html spec.html tokenization.html
Log Message:
typo (whatwg r6750)
[updated by splitter]
Index: tokenization.html
===================================================================
RCS file: /sources/public/html5/spec/tokenization.html,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- tokenization.html 14 Oct 2011 22:46:28 -0000 1.85
+++ tokenization.html 25 Oct 2011 03:46:23 -0000 1.86
@@ -1613,12 +1613,12 @@
case-insensitive</a> match for the word "DOCTYPE", then consume
those characters and switch to the <a href="#doctype-state">DOCTYPE state</a>.</p>
- <p>Otherwise, if the <a href="parsing.html#current-node">current node</a> is not an element in
- the <a href="namespaces.html#html-namespace-0">HTML namespace</a> and the next seven characters are an
- <a href="infrastructure.html#case-sensitive">case-sensitive</a> match for the string "[CDATA[" (the five
- uppercase letters "CDATA" with a U+005B LEFT SQUARE BRACKET
- character before and after), then consume those characters and
- switch to the <a href="#cdata-section-state">CDATA section state</a>.</p>
+ <p>Otherwise, if there is a <a href="parsing.html#current-node">current node</a> and it is not
+ an element in the <a href="namespaces.html#html-namespace-0">HTML namespace</a> and the next seven
+ characters are a <a href="infrastructure.html#case-sensitive">case-sensitive</a> match for the string
+ "[CDATA[" (the five uppercase letters "CDATA" with a U+005B LEFT
+ SQUARE BRACKET character before and after), then consume those
+ characters and switch to the <a href="#cdata-section-state">CDATA section state</a>.</p>
<p>Otherwise, this is a <a href="parsing.html#parse-error">parse error</a>. Switch to the
<a href="#bogus-comment-state">bogus comment state</a>. The next character that is
Index: offline.html
===================================================================
RCS file: /sources/public/html5/spec/offline.html,v
retrieving revision 1.1055
retrieving revision 1.1056
diff -u -d -r1.1055 -r1.1056
--- offline.html 4 Oct 2011 17:46:31 -0000 1.1055
+++ offline.html 25 Oct 2011 03:46:23 -0000 1.1056
@@ -1247,7 +1247,8 @@
<p><i>Fetching the manifest</i>: <a href="fetching-resources.html#fetch">Fetch</a> the resource
from <var title="">manifest URL</var> with the <i>synchronous
flag</i> set, and let <var title="">manifest</var> be that
- resource.</p>
+ resource. HTTP caching semantics should be honored for this
+ request.</p>
<p>If the resource is labeled with the <a href="infrastructure.html#mime-type">MIME type</a>
<code><a href="iana.html#text-cache-manifest">text/cache-manifest</a></code>, either with no parameters or
with a single parameter with the name "<code title="">charset</code>" whose value is an <a href="infrastructure.html#ascii-case-insensitive">ASCII
@@ -1576,8 +1577,9 @@
server-side errors.</p>
<p class="note">Except for the "no-store" directive, HTTP
- caching rules are ignored for the purposes of the
- <a href="#application-cache-download-process">application cache download process</a>.</p>
+ caching rules that would cause a file to be expired or otherwise
+ not cached are ignored for the purposes of the <a href="#application-cache-download-process">application
+ cache download process</a>.</p>
</li>
@@ -1699,7 +1701,15 @@
<p><a href="fetching-resources.html#fetch">Fetch</a> the resource from <var title="">manifest
URL</var> again, with the <i>synchronous flag</i> set, and let
- <var title="">second manifest</var> be that resource.</p>
+ <var title="">second manifest</var> be that resource. HTTP caching
+ semantics should again be honored for this request.</p>
+ <p class="note">Since caching can be honored, authors are
+ encouraged to avoid setting the cache headers on the manifest in
+ such a way that the user agent would simply not contact the
+ network for this second request; otherwise, the user agent would
+ not notice if the cache had changed during the cache update
+ process.</p>
+
</li>
<li>
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1746
retrieving revision 1.1747
diff -u -d -r1.1746 -r1.1747
--- spec.html 25 Oct 2011 00:47:30 -0000 1.1746
+++ spec.html 25 Oct 2011 03:46:23 -0000 1.1747
@@ -349,7 +349,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.5408.
+This is revision 1.5411.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2011 <a href="http://www.w3.org/"><abbr title="World Wide
Received on Tuesday, 25 October 2011 03:46:27 UTC