- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 27 Apr 2009 19:57:39 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv23798
Modified Files:
Overview.html
Log Message:
Fix typos, fix the silly 'escaping' of out-of-range characters in submission to actually match what browsers do. (whatwg r3000)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2162
retrieving revision 1.2163
diff -u -d -r1.2162 -r1.2163
--- Overview.html 27 Apr 2009 06:16:48 -0000 1.2162
+++ Overview.html 27 Apr 2009 19:57:36 -0000 1.2163
@@ -1911,7 +1911,7 @@
attribute is not specified at all (the <i>missing value
default</i>), but for various reasons that isn't the way this
specification actually defines it.<h4 id="numbers"><span class="secno">2.4.4 </span>Numbers</h4><h5 id="non-negative-integers"><span class="secno">2.4.4.1 </span>Non-negative integers</h5><p>A string is a <dfn id="valid-non-negative-integer">valid non-negative integer</dfn> if it
- consists of one of more characters in the range U+0030 DIGIT ZERO
+ consists of one or more characters in the range U+0030 DIGIT ZERO
(0) to U+0039 DIGIT NINE (9).<p>A <a href="#valid-non-negative-integer">valid non-negative integer</a> represents the number
that is represented in base ten by that string of digits.<div class="impl">
@@ -1966,7 +1966,7 @@
<li><p>Return <var title="">value</var>.</li>
- </ol></div><h5 id="signed-integers"><span class="secno">2.4.4.2 </span>Signed integers</h5><p>A string is a <dfn id="valid-integer">valid integer</dfn> if it consists of one of
+ </ol></div><h5 id="signed-integers"><span class="secno">2.4.4.2 </span>Signed integers</h5><p>A string is a <dfn id="valid-integer">valid integer</dfn> if it consists of one or
more characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT
NINE (9), optionally prefixed with a U+002D HYPHEN-MINUS ("-")
character.<p>A <a href="#valid-integer">valid integer</a> without a U+002D HYPHEN-MINUS ("-")
@@ -2338,7 +2338,7 @@
a character in the range U+0031 DIGIT ONE (1) to U+0039 DIGIT NINE
(9), optionally followed by zero of more characters in the range
U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), optionally followed
- by a U+002E FULL STOP character (.) and one of more characters in
+ by a U+002E FULL STOP character (.) and one or more characters in
the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), and
optionally suffixed by a U+0025 PERCENT SIGN character (%).</p>
@@ -31475,10 +31475,13 @@
<ol><li><p>For each character in the entry's name and value that
cannot be expressed using the selected character encoding,
replace the character by a string consisting of a U+0026
- AMPERSAND character (&), one of more characters in the range
- U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9) representing the
- Unicode code point of the character in base ten, and finally a
- U+003B SEMICOLON character (;).</li>
+ AMPERSAND character (&), a U+0023 NUMBER SIGN character (#),
+ one or more characters in the range U+0030 DIGIT ZERO (0) to
+ U+0039 DIGIT NINE (9) representing the Unicode code point of the
+ character in base ten, and finally a U+003B SEMICOLON character
+ (;).</li><!-- we should say it should be the shortest
+ possible string, no leading zeros. this whole step as asinine,
+ though, so... -->
<li>
@@ -38536,7 +38539,7 @@
<ul><li>
- <p>One of more resources (including their out-of-band metadata,
+ <p>One or more resources (including their out-of-band metadata,
such as HTTP headers, if any), identified by URLs, each falling
into one (or more) of the following categories:</p>
Received on Monday, 27 April 2009 19:57:48 UTC