[html5] r5474 - [ac] (1) disallow -00:00 in a global date and time string Fixing http://www.w3.o [...]

whatwg at whatwg.org whatwg at whatwg.org
Thu Sep 23 17:56:01 PDT 2010


Author: ianh
Date: 2010-09-23 17:55:59 -0700 (Thu, 23 Sep 2010)
New Revision: 5474

Modified:
   complete.html
   index
   source
Log:
[ac] (1) disallow -00:00 in a global date and time string
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=10370

Modified: complete.html
===================================================================
--- complete.html	2010-09-24 00:47:52 UTC (rev 5473)
+++ complete.html	2010-09-24 00:55:59 UTC (rev 5474)
@@ -4853,9 +4853,11 @@
 
      <li>Or:
 
-      <ol><li>Either a U+002B PLUS SIGN character (+) or a U+002D
-       HYPHEN-MINUS character (-), representing the sign of the
-       time-zone offset</li>
+      <ol><li>Either a U+002B PLUS SIGN character (+) or, if the
+       time-zone offset is not zero, a U+002D HYPHEN-MINUS character
+       (-), representing the sign of the time-zone offset</li>
+       <!-- the -00:00 offset is disallowed because RFC3339 gives it a
+       special semantic -->
 
        <li>Two <a href=#concept-datetime-digit title=concept-datetime-digit>digits</a>,
        representing the hours component <var title="">hour</var> of

Modified: index
===================================================================
--- index	2010-09-24 00:47:52 UTC (rev 5473)
+++ index	2010-09-24 00:55:59 UTC (rev 5474)
@@ -4830,9 +4830,11 @@
 
      <li>Or:
 
-      <ol><li>Either a U+002B PLUS SIGN character (+) or a U+002D
-       HYPHEN-MINUS character (-), representing the sign of the
-       time-zone offset</li>
+      <ol><li>Either a U+002B PLUS SIGN character (+) or, if the
+       time-zone offset is not zero, a U+002D HYPHEN-MINUS character
+       (-), representing the sign of the time-zone offset</li>
+       <!-- the -00:00 offset is disallowed because RFC3339 gives it a
+       special semantic -->
 
        <li>Two <a href=#concept-datetime-digit title=concept-datetime-digit>digits</a>,
        representing the hours component <var title="">hour</var> of

Modified: source
===================================================================
--- source	2010-09-24 00:47:52 UTC (rev 5473)
+++ source	2010-09-24 00:55:59 UTC (rev 5474)
@@ -4158,9 +4158,11 @@
 
       <ol>
 
-       <li>Either a U+002B PLUS SIGN character (+) or a U+002D
-       HYPHEN-MINUS character (-), representing the sign of the
-       time-zone offset</li>
+       <li>Either a U+002B PLUS SIGN character (+) or, if the
+       time-zone offset is not zero, a U+002D HYPHEN-MINUS character
+       (-), representing the sign of the time-zone offset</li>
+       <!-- the -00:00 offset is disallowed because RFC3339 gives it a
+       special semantic -->
 
        <li>Two <span title="concept-datetime-digit">digits</span>,
        representing the hours component <var title="">hour</var> of




More information about the Commit-Watchers mailing list