[html5] r3000 - [e] (0) Fix typos, fix the silly 'escaping' of out-of-range characters in submis [...]
whatwg at whatwg.org
whatwg at whatwg.org
Mon Apr 27 12:57:33 PDT 2009
Author: ianh
Date: 2009-04-27 12:57:32 -0700 (Mon, 27 Apr 2009)
New Revision: 3000
Modified:
index
source
Log:
[e] (0) Fix typos, fix the silly 'escaping' of out-of-range characters in submission to actually match what browsers do.
Modified: index
===================================================================
--- index 2009-04-27 06:16:42 UTC (rev 2999)
+++ index 2009-04-27 19:57:32 UTC (rev 3000)
@@ -2160,7 +2160,7 @@
<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>
<p>A <a href=#valid-non-negative-integer>valid non-negative integer</a> represents the number
@@ -2224,7 +2224,7 @@
<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
+ <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>
@@ -2623,7 +2623,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>
@@ -35464,10 +35464,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>
@@ -43122,7 +43125,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>
Modified: source
===================================================================
--- source 2009-04-27 06:16:42 UTC (rev 2999)
+++ source 2009-04-27 19:57:32 UTC (rev 3000)
@@ -1219,7 +1219,7 @@
<h5>Non-negative integers</h5>
<p>A string is a <dfn>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>
<p>A <span>valid non-negative integer</span> represents the number
@@ -1296,7 +1296,7 @@
<h5>Signed integers</h5>
- <p>A string is a <dfn>valid integer</dfn> if it consists of one of
+ <p>A string is a <dfn>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>
@@ -1799,7 +1799,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>
@@ -39949,10 +39949,13 @@
<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 (;).</p></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
+ (;).</p></li><!-- we should say it should be the shortest
+ possible string, no leading zeros. this whole step as asinine,
+ though, so... -->
<li>
@@ -48785,7 +48788,7 @@
<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>
More information about the Commit-Watchers
mailing list