[html5] r2677 - [e] (0) Correct mistakes pointed out overnight.

whatwg at whatwg.org whatwg at whatwg.org
Fri Jan 16 13:07:15 PST 2009


Author: ianh
Date: 2009-01-16 13:07:13 -0800 (Fri, 16 Jan 2009)
New Revision: 2677

Modified:
   index
   source
Log:
[e] (0) Correct mistakes pointed out overnight.

Modified: index
===================================================================
--- index	2009-01-16 06:18:04 UTC (rev 2676)
+++ index	2009-01-16 21:07:13 UTC (rev 2677)
@@ -7788,9 +7788,6 @@
     parser</a>'s <a href=#tokenization>tokenization</a> stage's <a href=#content-model-flag>content
     model flag</a> to <i>PLAINTEXT</i>.</p>
 
-    <p class=note>All other values are treated as
-    <code>text/html</code>.</p>
-
     <!--
  http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E...%3Ciframe%3E%3C%2Fiframe%3E%3Cscript%3Eonload%20%3D%20function%20()%20%7B%20%0D%0A%20%20var%20d%20%3D%20document.getElementsByTagName('iframe')%5B0%5D.contentDocument%3B%0D%0A%20%20d.open('image%2Fsvg%2Bxml')%3B%0D%0A%20%20d.write(%22%3Cinput%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%20value%3D'(x)html'%2F%3E%22)%3B%0D%0A%20%20d.close()%3B%0D%0A%7D%3B%3C%2Fscript%3E
  http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E...%3Ciframe%3E%3C%2Fiframe%3E%3Cscript%3Eonload%20%3D%20function%20()%20%7B%20%0D%0A%20%20var%20d%20%3D%20document.getElementsByTagName('iframe')%5B0%5D.contentDocument%3B%0D%0A%20%20d.open('image%2Fgif')%3B%0D%0A%20%20var%20a%20%3D%20%5B%200x47%2C%200x49%2C%200x46%2C%200x38%2C%200x39%2C%200x61%2C%200x01%2C%200x00%2C%200x01%2C%200x00%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200x80%2C%200xff%2C%200x00%2C%200xc0%2C%200xc0%2C%200xc0%2C%200x00%2C%200x00%2C%200x00%2C%200x21%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200xf9%2C%200x04%2C%200x01%2C%200x00%2C%200x00%2C%200x00%2C%200x00%2C%200x2c%2C%200x00%2C%200x00%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200x00%2C%200x00%2C%200x01%2C%200x00%2C%200x01%2C%200x00%2C%200x00%2C%200x02%2C%200x02%2C%200x44%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200x01%2C%200x00%2C%200x3b%20%5D%3B%0D%0A%20%20var%20s%20%3D%20%22%22%3B%0D%0A%20%20for%20(var%20i%20%3D%200%3B%20i%20%3C%20a.length%3B%20i%20%2B%3D%201)%0D%0A%20%20%20%20s%20%2B%3D%20String.fromCharCode(a%5Bi%5D)%3B%0D%0A%20%20d.write(s)%3B%0D%0A%20%20d.close()%3B%0D%0A%7D%3B%3C%2Fscript%3E
@@ -10192,19 +10189,19 @@
   ABNF. <a href=#refsABNF>[ABNF]</a></p> <!-- XXX
   ftp://ftp.rfc-editor.org/in-notes/std/std68.txt -->
 
-  <pre>documentation ::= *( *( space / tab / comment ) [ line-comment ] newline )
-comment       ::= slash star *( not-star / star not-slash ) 1*star slash
-line-comment  ::= slash slash *not-newline
+  <pre>documentation = *( *( space / tab / comment ) [ line-comment ] newline )
+comment       = slash star *( not-star / star not-slash ) 1*star slash
+line-comment  = slash slash *not-newline
 
 ; characters
-space         ::= < a U+0020 SPACE character >
-tab           ::= < a U+0009 TAB character >
-newline       ::= < a U+000A LINE FEED character >
-star          ::= < a U+002A ASTERISK character >
-slash         ::= < a U+002F SOLIDUS character >
-not-newline   ::= < a single Unicode character other than U+000A LINE FEED >
-not-star      ::= < a single Unicode character other than U+002A ASTERISK >
-not-slash     ::= < a single Unicode character other than U+002F SOLIDUS ></pre>
+space         = < a U+0020 SPACE character >
+tab           = < a U+0009 TAB character >
+newline       = < a U+000A LINE FEED character >
+star          = < a U+002A ASTERISK character >
+slash         = < a U+002F SOLIDUS character >
+not-newline   = < a single Unicode character other than U+000A LINE FEED >
+not-star      = < a single Unicode character other than U+002A ASTERISK >
+not-slash     = < a single Unicode character other than U+002F SOLIDUS ></pre>
 
   <div class=example>
 
@@ -44135,21 +44132,21 @@
   <p>The event stream format is as described by the <code title="">stream</code> production of the following ABNF. <a href=#refsABNF>[ABNF]</a></p> <!-- XXX
   ftp://ftp.rfc-editor.org/in-notes/std/std68.txt -->
 
-  <pre>stream        ::= [ bom ] *event
-event         ::= *( comment / field ) end-of-line
-comment       ::= colon *any-char end-of-line
-field         ::= 1*name-char [ colon [ space ] *any-char ] end-of-line
-end-of-line   ::= ( cr lf / cr / lf / eof )
-eof           ::= < matches repeatedly at the end of the stream ></pre>
+  <pre>stream        = [ bom ] *event
+event         = *( comment / field ) end-of-line
+comment       = colon *any-char end-of-line
+field         = 1*name-char [ colon [ space ] *any-char ] end-of-line
+end-of-line   = ( cr lf / cr / lf / eof )
+eof           = < matches repeatedly at the end of the stream ></pre>
 
 ; characters
-bom           ::= < a single U+FEFF BYTE ORDER MARK character >
-space         ::= < a single U+0020 SPACE character >
-colon         ::= < a single U+003A COLON character >
-cr            ::= < a single U+000D CARRIAGE RETURN character >
-lf            ::= < a single U+000A LINE FEED character >
-name-char     ::= < a single Unicode character other than U+003A COLON, U+000D CARRIAGE RETURN and U+000A LINE FEED >
-any-char      ::= < a single Unicode character other than U+000D CARRIAGE RETURN and U+000A LINE FEED >
+bom           = < a single U+FEFF BYTE ORDER MARK character >
+space         = < a single U+0020 SPACE character >
+colon         = < a single U+003A COLON character >
+cr            = < a single U+000D CARRIAGE RETURN character >
+lf            = < a single U+000A LINE FEED character >
+name-char     = < a single Unicode character other than U+003A COLON, U+000D CARRIAGE RETURN and U+000A LINE FEED >
+any-char      = < a single Unicode character other than U+000D CARRIAGE RETURN and U+000A LINE FEED >
 
   <p>Event streams in this format must always be encoded as
   UTF-8.</p>

Modified: source
===================================================================
--- source	2009-01-16 06:18:04 UTC (rev 2676)
+++ source	2009-01-16 21:07:13 UTC (rev 2677)
@@ -8001,9 +8001,6 @@
     parser</span>'s <span>tokenization</span> stage's <span>content
     model flag</span> to <i>PLAINTEXT</i>.</p>
 
-    <p class="note">All other values are treated as
-    <code>text/html</code>.</p>
-
     <!--
  http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E...%3Ciframe%3E%3C%2Fiframe%3E%3Cscript%3Eonload%20%3D%20function%20()%20%7B%20%0D%0A%20%20var%20d%20%3D%20document.getElementsByTagName('iframe')%5B0%5D.contentDocument%3B%0D%0A%20%20d.open('image%2Fsvg%2Bxml')%3B%0D%0A%20%20d.write(%22%3Cinput%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%20value%3D'(x)html'%2F%3E%22)%3B%0D%0A%20%20d.close()%3B%0D%0A%7D%3B%3C%2Fscript%3E
  http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E...%3Ciframe%3E%3C%2Fiframe%3E%3Cscript%3Eonload%20%3D%20function%20()%20%7B%20%0D%0A%20%20var%20d%20%3D%20document.getElementsByTagName('iframe')%5B0%5D.contentDocument%3B%0D%0A%20%20d.open('image%2Fgif')%3B%0D%0A%20%20var%20a%20%3D%20%5B%200x47%2C%200x49%2C%200x46%2C%200x38%2C%200x39%2C%200x61%2C%200x01%2C%200x00%2C%200x01%2C%200x00%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200x80%2C%200xff%2C%200x00%2C%200xc0%2C%200xc0%2C%200xc0%2C%200x00%2C%200x00%2C%200x00%2C%200x21%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200xf9%2C%200x04%2C%200x01%2C%200x00%2C%200x00%2C%200x00%2C%200x00%2C%200x2c%2C%200x00%2C%200x00%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200x00%2C%200x00%2C%200x01%2C%200x00%2C%200x01%2C%200x00%2C%200x00%2C%200x02%2C%200x02%2C%200x44%2C%0D%0A%20%20%20%20%20%20%20%20%20%20%20%200x01%2C%200x00%2C%200x3b%20%5D%3B%0D%0A%20%20var%20s%20%3D%20%22%22%3B%0D%0A%20%20for%20(var%20i%20%3D%200%3B%20i%20%3C%20a.length%3B%20i%20%2B%3D%201)%0D%0A%20%20%20%20s%20%2B%3D%20String.fromCharCode(a%5Bi%5D)%3B%0D%0A%20%20d.write(s)%3B%0D%0A%20%20d.close()%3B%0D%0A%7D%3B%3C%2Fscript%3E
@@ -10799,19 +10796,19 @@
   ABNF. <a href="#refsABNF">[ABNF]</a></p> <!-- XXX
   ftp://ftp.rfc-editor.org/in-notes/std/std68.txt -->
 
-  <pre>documentation ::= *( *( space / tab / comment ) [ line-comment ] newline )
-comment       ::= slash star *( not-star / star not-slash ) 1*star slash
-line-comment  ::= slash slash *not-newline
+  <pre>documentation = *( *( space / tab / comment ) [ line-comment ] newline )
+comment       = slash star *( not-star / star not-slash ) 1*star slash
+line-comment  = slash slash *not-newline
 
 ; characters
-space         ::= < a U+0020 SPACE character >
-tab           ::= < a U+0009 TAB character >
-newline       ::= < a U+000A LINE FEED character >
-star          ::= < a U+002A ASTERISK character >
-slash         ::= < a U+002F SOLIDUS character >
-not-newline   ::= < a single Unicode character other than U+000A LINE FEED >
-not-star      ::= < a single Unicode character other than U+002A ASTERISK >
-not-slash     ::= < a single Unicode character other than U+002F SOLIDUS ></pre>
+space         = < a U+0020 SPACE character >
+tab           = < a U+0009 TAB character >
+newline       = < a U+000A LINE FEED character >
+star          = < a U+002A ASTERISK character >
+slash         = < a U+002F SOLIDUS character >
+not-newline   = < a single Unicode character other than U+000A LINE FEED >
+not-star      = < a single Unicode character other than U+002A ASTERISK >
+not-slash     = < a single Unicode character other than U+002F SOLIDUS ></pre>
 
   <div class="example">
 
@@ -50362,21 +50359,21 @@
   href="#refsABNF">[ABNF]</a></p> <!-- XXX
   ftp://ftp.rfc-editor.org/in-notes/std/std68.txt -->
 
-  <pre>stream        ::= [ bom ] *event
-event         ::= *( comment / field ) end-of-line
-comment       ::= colon *any-char end-of-line
-field         ::= 1*name-char [ colon [ space ] *any-char ] end-of-line
-end-of-line   ::= ( cr lf / cr / lf / eof )
-eof           ::= < matches repeatedly at the end of the stream ></pre>
+  <pre>stream        = [ bom ] *event
+event         = *( comment / field ) end-of-line
+comment       = colon *any-char end-of-line
+field         = 1*name-char [ colon [ space ] *any-char ] end-of-line
+end-of-line   = ( cr lf / cr / lf / eof )
+eof           = < matches repeatedly at the end of the stream ></pre>
 
 ; characters
-bom           ::= < a single U+FEFF BYTE ORDER MARK character >
-space         ::= < a single U+0020 SPACE character >
-colon         ::= < a single U+003A COLON character >
-cr            ::= < a single U+000D CARRIAGE RETURN character >
-lf            ::= < a single U+000A LINE FEED character >
-name-char     ::= < a single Unicode character other than U+003A COLON, U+000D CARRIAGE RETURN and U+000A LINE FEED >
-any-char      ::= < a single Unicode character other than U+000D CARRIAGE RETURN and U+000A LINE FEED >
+bom           = < a single U+FEFF BYTE ORDER MARK character >
+space         = < a single U+0020 SPACE character >
+colon         = < a single U+003A COLON character >
+cr            = < a single U+000D CARRIAGE RETURN character >
+lf            = < a single U+000A LINE FEED character >
+name-char     = < a single Unicode character other than U+003A COLON, U+000D CARRIAGE RETURN and U+000A LINE FEED >
+any-char      = < a single Unicode character other than U+000D CARRIAGE RETURN and U+000A LINE FEED >
 
   <p>Event streams in this format must always be encoded as
   UTF-8.</p>




More information about the Commit-Watchers mailing list