- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 30 Sep 2010 09:16:37 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv30840 Modified Files: spec.html syntax.html Log Message: vaguely push people towards a polyglot-compatible doctype (whatwg r5570) [updated by splitter] Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1262 retrieving revision 1.1263 diff -u -d -r1.1262 -r1.1263 --- spec.html 30 Sep 2010 08:47:15 -0000 1.1262 +++ spec.html 30 Sep 2010 09:16:33 -0000 1.1263 @@ -341,7 +341,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.4451. +This is revision 1.4452. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide Index: syntax.html =================================================================== RCS file: /sources/public/html5/spec/syntax.html,v retrieving revision 1.1010 retrieving revision 1.1011 diff -u -d -r1.1010 -r1.1011 --- syntax.html 29 Sep 2010 19:16:53 -0000 1.1010 +++ syntax.html 30 Sep 2010 09:16:35 -0000 1.1011 @@ -390,14 +390,14 @@ following the relevant specifications.</p><p>A DOCTYPE must consist of the following characters, in this order:</p><ol class="brief"><li>A string that is an <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> match for the string "<code title=""><!DOCTYPE</code>".</li> <li>One or more <a href="common-microsyntaxes.html#space-character" title="space character">space characters</a>.</li> - <li>A string that is an <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> match for the string "<code title="">HTML</code>".</li> + <li>A string that is an <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> match for the string "<code title="">html</code>".</li> <li>Optionally, a <a href="#doctype-legacy-string">DOCTYPE legacy string</a> or an <a href="#obsolete-permitted-doctype-string">obsolete permitted DOCTYPE string</a> (defined below).</li> <li>Zero or more <a href="common-microsyntaxes.html#space-character" title="space character">space characters</a>.</li> <li>A U+003E GREATER-THAN SIGN character (>).</li> - </ol><p class="note">In other words, <code><!DOCTYPE HTML></code>, + </ol><p class="note">In other words, <code><!DOCTYPE html></code>, case-insensitively.</p><hr><p>For the purposes of HTML generators that cannot output HTML markup with the short DOCTYPE "<code title=""><!DOCTYPE - HTML></code>", a <dfn id="doctype-legacy-string">DOCTYPE legacy string</dfn> may be inserted + html></code>", a <dfn id="doctype-legacy-string">DOCTYPE legacy string</dfn> may be inserted into the DOCTYPE (in the position defined above). This string must consist of:</p><ol class="brief"><li>One or more <a href="common-microsyntaxes.html#space-character" title="space character">space characters</a>.</li> <li>A string that is an <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> match for the string "<code title="">SYSTEM</code>".</li> @@ -405,8 +405,8 @@ <li>A U+0022 QUOTATION MARK or U+0027 APOSTROPHE character (the <i>quote mark</i>).</li> <li>The literal string "<code><a href="urls.html#about:legacy-compat">about:legacy-compat</a></code>".</li> <li>A matching U+0022 QUOTATION MARK or U+0027 APOSTROPHE character (i.e. the same character as in the earlier step labeled <i>quote mark</i>).</li> - </ol><p class="note">In other words, <code><!DOCTYPE HTML SYSTEM - "about:legacy-compat"></code> or <code><!DOCTYPE HTML SYSTEM + </ol><p class="note">In other words, <code><!DOCTYPE html SYSTEM + "about:legacy-compat"></code> or <code><!DOCTYPE html SYSTEM 'about:legacy-compat'></code>, case-insensitively except for the part in single or double quotes.</p><p>The <a href="#doctype-legacy-string">DOCTYPE legacy string</a> should not be used unless the document is generated from a system that cannot output the
Received on Thursday, 30 September 2010 09:16:39 UTC