html5/spec-author-view Overview.html,1.1569,1.1570 common-microsyntaxes.html,1.566,1.567 index-of-terms.html,1.493,1.494 offline.html,1.1142,1.1143 spec.html,1.1699,1.1700 spec.preprocessed.html,1.551,1.552 the-progress-element.html,1.115,1.116

Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv353

Modified Files:
	Overview.html common-microsyntaxes.html index-of-terms.html 
	offline.html spec.html spec.preprocessed.html 
	the-progress-element.html 
Log Message:
Explain some of the conformance terminology better. (whatwg r6473)

[updated by splitter]


Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.1569
retrieving revision 1.1570
diff -u -d -r1.1569 -r1.1570
--- Overview.html	16 Aug 2011 01:58:10 -0000	1.1569
+++ Overview.html	16 Aug 2011 04:58:19 -0000	1.1570
@@ -362,7 +362,7 @@
     <dt>Editor:</dt>
     <dd><a href="mailto:ian@hixie.ch">Ian Hickson</a>, Google, Inc.</dd>
    </dl><p>This specification is available in the following formats: <a href="spec.html">single page HTML</a>, <a href="Overview.html">multipage HTML</a>, <a href="http://dev.w3.org/html5/spec/">full specification</a>.
-      This is revision 1.5169.</p> 
+      This is revision 1.5175.</p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &copy; 2011 <a href="http://www.w3.org/"><abbr title="World Wide
    Web Consortium">W3C</abbr></a><sup>&reg;</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts

Index: offline.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/offline.html,v
retrieving revision 1.1142
retrieving revision 1.1143
diff -u -d -r1.1142 -r1.1143
--- offline.html	15 Aug 2011 20:59:38 -0000	1.1142
+++ offline.html	16 Aug 2011 04:58:20 -0000	1.1143
@@ -806,7 +806,7 @@
   &lt;title&gt;Online status&lt;/title&gt;
   &lt;script&gt;
    function updateIndicator() {
-     document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
+     document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
    }
   &lt;/script&gt;
  &lt;/head&gt;

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.1699
retrieving revision 1.1700
diff -u -d -r1.1699 -r1.1700
--- spec.html	16 Aug 2011 01:58:10 -0000	1.1699
+++ spec.html	16 Aug 2011 04:58:21 -0000	1.1700
@@ -363,7 +363,7 @@
     <dt>Editor:</dt>
     <dd><a href="mailto:ian@hixie.ch">Ian Hickson</a>, Google, Inc.</dd>
    </dl><p>This specification is available in the following formats: <a href="spec.html">single page HTML</a>, <a href="Overview.html">multipage HTML</a>, <a href="http://dev.w3.org/html5/spec/">full specification</a>.
-      This is revision 1.5169.</p> 
+      This is revision 1.5175.</p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    © 2011 <a href="http://www.w3.org/"><abbr title="World Wide
    Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts
@@ -2367,14 +2367,13 @@
   two strings as matches of each other.</p><h3 id="common-microsyntaxes"><span class="secno">2.4 </span>Common microsyntaxes</h3><p>There are various places in HTML that accept particular data
   types, such as dates or numbers. This section describes what the
   conformance criteria for content in those formats is, and how to
-  parse them.</p><div><h4 id="common-parser-idioms"><span class="secno">2.4.1 </span>Common parser idioms</h4><p>The <dfn id="space-character" title="space character">space characters</dfn>, for the
+  parse them.</p><div><h4 id="common-parser-idioms"><span class="secno">2.4.1 </span>Common parser idioms</h4></div><p>The <dfn aria-haspopup="true" id="space-character" role="button" tabindex="0">space characters</dfn>, for the
   purposes of this specification, are U+0020 SPACE, U+0009 CHARACTER
   TABULATION (tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and
-  U+000D CARRIAGE RETURN (CR).</p><p>The <dfn id="white_space" title="White_Space">White_Space characters</dfn> are
+  U+000D CARRIAGE RETURN (CR).</p><p>The <dfn aria-haspopup="true" id="white_space" role="button" tabindex="0">White_Space characters</dfn> are
   those that have the Unicode property "White_Space" in the Unicode
   <code title="">PropList.txt</code> data file. <a href="#refsUNICODE">[UNICODE]</a></p><p class="note">This should not be confused with the "White_Space"
-  value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.</p><p class="note">For the special cases of splitting a string <a href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#split-a-string-on-spaces" title='Read about this "on spaces" reference in the full HTML5 spec.' class="full-spec-link">on spaces</a> and <a href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#split-a-string-on-spaces" title='Read about this "on commas" reference in the full HTML5 spec.' class="full-spec-link">on commas</a>, this algorithm
-  does not apply (those algorithms also perform <a href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#strip-leading-and-trailing-whitespace" title='Read about this "whitespace trimming" reference in the full HTML5 spec.' class="full-spec-link">whitespace trimming</a>).</p></div><h4 id="boolean-attributes"><span class="secno">2.4.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn aria-haspopup="true" id="boolean-attribute" role="button" tabindex="0">boolean
+  value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.</p><h4 id="boolean-attributes"><span class="secno">2.4.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn aria-haspopup="true" id="boolean-attribute" role="button" tabindex="0">boolean
   attributes</dfn>. The presence of a boolean attribute on an element
   represents the true value, and the absence of the attribute
   represents the false value.</p><p>If the attribute is present, its value must either be the empty
@@ -20345,9 +20344,9 @@
   completion represented by the element. The <dfn aria-haspopup="true" id="attr-progress-value" role="button" tabindex="0"><code>value</code></dfn> attribute
   specifies how much of the task has been completed, and the <dfn aria-haspopup="true" id="attr-progress-max" role="button" tabindex="0"><code>max</code></dfn> attribute specifies
   how much work the task requires in total. The units are arbitrary
-  and not specified.</p><p class="note">To make an determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value" id="value_41">value</a></code> attribute with the current
+  and not specified.</p><p class="note">To make a determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value" id="value_41">value</a></code> attribute with the current
   progress (either a number from 0.0 to 1.0, or, if the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_37">max</a></code> attribute is specified, a
-  number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_38">max</a></code> attribute. To make an
+  number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_38">max</a></code> attribute). To make an
   indeterminate progress bar, remove the <code title="attr-progress-value"><a href="#attr-progress-value" id="value_42">value</a></code> attribute.</p><p>Authors are encouraged to also include the current value and the
   maximum value inline as text inside the element, so that the
   progress is made available to users of legacy user agents.</p><div class="example">
@@ -23931,7 +23930,7 @@
   &lt;title&gt;Online status&lt;/title&gt;
   &lt;script&gt;
    function updateIndicator() {
-     document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
+     document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
    }
   &lt;/script&gt;
  &lt;/head&gt;
@@ -56809,10 +56808,10 @@
 <dd>
 <a class="no-num" href="#source_15">Interfaces</a>
 </dd>
-</dl><dl id="space-character_index"><dt><span title="space character">space characters</span>
+</dl><dl id="space-character_index"><dt><span aria-haspopup="true" role="button" tabindex="0">space characters</span>
 </dt>
 <dd>
-<a class="dfn-ref" href="#space-character"><span class="secno">2.4.1 </span>Common parser idioms</a>
+<a class="dfn-ref" href="#space-character"><span class="secno">2.4 </span>Common microsyntaxes</a>
 </dd>
 <dd>
 <a href="#space-character_0"><span class="secno">2.4.4.4 </span>Lists of integers</a>
@@ -62801,10 +62800,10 @@
 <a class="dfn-ref" href="#week-number-of-the-last-day"><span class="secno">2.4.5.6 </span>Weeks</a>
 <a class="index-counter" href="#week-number-of-the-last-day_0">(2)</a>
 </dd>
-</dl><dl id="white_space_index"><dt><span title="White_Space">White_Space characters</span>
+</dl><dl id="white_space_index"><dt><span aria-haspopup="true" role="button" tabindex="0">White_Space characters</span>
 </dt>
 <dd>
-<a class="dfn-ref" href="#white_space"><span class="secno">2.4.1 </span>Common parser idioms</a>
+<a class="dfn-ref" href="#white_space"><span class="secno">2.4 </span>Common microsyntaxes</a>
 </dd>
 <dd>
 <a href="#white_space_0"><span class="secno">2.4.5.7 </span>Vaguer moments in time</a>

Index: spec.preprocessed.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.preprocessed.html,v
retrieving revision 1.551
retrieving revision 1.552
diff -u -d -r1.551 -r1.552
--- spec.preprocessed.html	16 Aug 2011 01:58:15 -0000	1.551
+++ spec.preprocessed.html	16 Aug 2011 04:58:25 -0000	1.552
@@ -379,7 +379,7 @@
     <dt>Editor:</dt>
     <dd><a href="mailto:ian@hixie.ch">Ian Hickson</a>, Google, Inc.</dd>
    </dl><p>This specification is available in the following formats: <a href="spec.html">single page HTML</a>, <a href="Overview.html">multipage HTML</a>, <a href="http://dev.w3.org/html5/spec/">full specification</a>.
-      This is revision 1.5169.</p> 
+      This is revision 1.5175.</p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2011 <a href="http://www.w3.org/"><abbr title="World Wide
    Web Consortium">W3C</abbr></a><sup>&#174;</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts
@@ -1926,15 +1926,13 @@
   two strings as matches of each other.</p><h3 id="common-microsyntaxes"><span class="secno">2.5 </span>Common microsyntaxes</h3><p>There are various places in HTML that accept particular data
   types, such as dates or numbers. This section describes what the
   conformance criteria for content in those formats is, and how to
-  parse them.</p><div><h4 id="common-parser-idioms"><span class="secno">2.5.1 </span>Common parser idioms</h4><p>The <dfn id="space-character" title="space character">space characters</dfn>, for the
+  parse them.</p><div><h4 id="common-parser-idioms"><span class="secno">2.5.1 </span>Common parser idioms</h4></div><p>The <dfn id="space-character" role="button" tabindex="0" aria-haspopup="true">space characters</dfn>, for the
   purposes of this specification, are U+0020 SPACE, U+0009 CHARACTER
   TABULATION (tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and
-  U+000D CARRIAGE RETURN (CR).</p><p>The <dfn id="white_space" title="White_Space">White_Space characters</dfn> are
+  U+000D CARRIAGE RETURN (CR).</p><p>The <dfn id="white_space" role="button" tabindex="0" aria-haspopup="true">White_Space characters</dfn> are
   those that have the Unicode property "White_Space" in the Unicode
   <code title="">PropList.txt</code> data file. <a href="#refsUNICODE">[UNICODE]</a></p><p class="note">This should not be confused with the "White_Space"
-  value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.</p><p class="note">For the special cases of splitting a string <a href="#split-a-string-on-spaces" title="split a string on spaces">on spaces</a> and <a href="#split-a-string-on-spaces" title="split a string on spaces">on commas</a>, this algorithm
-  does not apply (those algorithms also perform <a href="#strip-leading-and-trailing-whitespace" title="strip
-  leading and trailing whitespace">whitespace trimming</a>).</p></div><h4 id="boolean-attributes"><span class="secno">2.5.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn id="boolean-attribute" role="button" tabindex="0" aria-haspopup="true">boolean
+  value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.</p><h4 id="boolean-attributes"><span class="secno">2.5.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn id="boolean-attribute" role="button" tabindex="0" aria-haspopup="true">boolean
   attributes</dfn>. The presence of a boolean attribute on an element
   represents the true value, and the absence of the attribute
   represents the false value.</p><p>If the attribute is present, its value must either be the empty
@@ -20182,9 +20180,9 @@
   completion represented by the element. The <dfn id="attr-progress-value" role="button" tabindex="0" aria-haspopup="true"><code>value</code></dfn> attribute
   specifies how much of the task has been completed, and the <dfn id="attr-progress-max" role="button" tabindex="0" aria-haspopup="true"><code>max</code></dfn> attribute specifies
   how much work the task requires in total. The units are arbitrary
-  and not specified.</p><p class="note">To make an determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute with the current
+  and not specified.</p><p class="note">To make a determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute with the current
   progress (either a number from 0.0 to 1.0, or, if the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute is specified, a
-  number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute. To make an
+  number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute). To make an
   indeterminate progress bar, remove the <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute.</p><p>Authors are encouraged to also include the current value and the
   maximum value inline as text inside the element, so that the
   progress is made available to users of legacy user agents.</p><div class="example">
@@ -23815,7 +23813,7 @@
   &lt;title&gt;Online status&lt;/title&gt;
   &lt;script&gt;
    function updateIndicator() {
-     document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
+     document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
    }
   &lt;/script&gt;
  &lt;/head&gt;

Index: common-microsyntaxes.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/common-microsyntaxes.html,v
retrieving revision 1.566
retrieving revision 1.567
diff -u -d -r1.566 -r1.567
--- common-microsyntaxes.html	15 Aug 2011 20:59:31 -0000	1.566
+++ common-microsyntaxes.html	16 Aug 2011 04:58:19 -0000	1.567
@@ -355,14 +355,13 @@
   <h3 id="common-microsyntaxes"><span class="secno">2.4 </span>Common microsyntaxes</h3><p>There are various places in HTML that accept particular data
   types, such as dates or numbers. This section describes what the
   conformance criteria for content in those formats is, and how to
-  parse them.<div><h4 id="common-parser-idioms"><span class="secno">2.4.1 </span>Common parser idioms</h4><p>The <dfn id="space-character" title="space character">space characters</dfn>, for the
+  parse them.<div><h4 id="common-parser-idioms"><span class="secno">2.4.1 </span>Common parser idioms</h4></div><p>The <dfn aria-haspopup="true" id="space-character" role="button" tabindex="0">space characters</dfn>, for the
   purposes of this specification, are U+0020 SPACE, U+0009 CHARACTER
   TABULATION (tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and
-  U+000D CARRIAGE RETURN (CR).<p>The <dfn id="white_space" title="White_Space">White_Space characters</dfn> are
+  U+000D CARRIAGE RETURN (CR).<p>The <dfn aria-haspopup="true" id="white_space" role="button" tabindex="0">White_Space characters</dfn> are
   those that have the Unicode property "White_Space" in the Unicode
   <code title="">PropList.txt</code> data file. <a href="references.html#refsUNICODE">[UNICODE]</a><p class="note">This should not be confused with the "White_Space"
-  value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.<p class="note">For the special cases of splitting a string <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#split-a-string-on-spaces" title='Read about this "on spaces" reference in the full HTML5 spec.'>on spaces</a> and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#split-a-string-on-spaces" title='Read about this "on commas" reference in the full HTML5 spec.'>on commas</a>, this algorithm
-  does not apply (those algorithms also perform <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#strip-leading-and-trailing-whitespace" title='Read about this "whitespace trimming" reference in the full HTML5 spec.'>whitespace trimming</a>).</div><h4 id="boolean-attributes"><span class="secno">2.4.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn aria-haspopup="true" id="boolean-attribute" role="button" tabindex="0">boolean
+  value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.<h4 id="boolean-attributes"><span class="secno">2.4.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn aria-haspopup="true" id="boolean-attribute" role="button" tabindex="0">boolean
   attributes</dfn>. The presence of a boolean attribute on an element
   represents the true value, and the absence of the attribute
   represents the false value.<p>If the attribute is present, its value must either be the empty

Index: the-progress-element.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/the-progress-element.html,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -d -r1.115 -r1.116
--- the-progress-element.html	15 Aug 2011 20:59:57 -0000	1.115
+++ the-progress-element.html	16 Aug 2011 04:58:26 -0000	1.116
@@ -380,9 +380,9 @@
   completion represented by the element. The <dfn aria-haspopup="true" id="attr-progress-value" role="button" tabindex="0"><code>value</code></dfn> attribute
   specifies how much of the task has been completed, and the <dfn aria-haspopup="true" id="attr-progress-max" role="button" tabindex="0"><code>max</code></dfn> attribute specifies
   how much work the task requires in total. The units are arbitrary
-  and not specified.<p class="note">To make an determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value" id="value_41">value</a></code> attribute with the current
+  and not specified.<p class="note">To make a determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value" id="value_41">value</a></code> attribute with the current
   progress (either a number from 0.0 to 1.0, or, if the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_37">max</a></code> attribute is specified, a
-  number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_38">max</a></code> attribute. To make an
+  number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_38">max</a></code> attribute). To make an
   indeterminate progress bar, remove the <code title="attr-progress-value"><a href="#attr-progress-value" id="value_42">value</a></code> attribute.<p>Authors are encouraged to also include the current value and the
   maximum value inline as text inside the element, so that the
   progress is made available to users of legacy user agents.<div class="example">

Index: index-of-terms.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/index-of-terms.html,v
retrieving revision 1.493
retrieving revision 1.494
diff -u -d -r1.493 -r1.494
--- index-of-terms.html	15 Aug 2011 22:58:04 -0000	1.493
+++ index-of-terms.html	16 Aug 2011 04:58:19 -0000	1.494
@@ -26997,10 +26997,10 @@
 <dd>
 <a class="no-num" href="index.html#source_15">Interfaces</a>
 </dd>
-</dl><dl id="space-character_index"><dt><span title="space character">space characters</span>
+</dl><dl id="space-character_index"><dt><span aria-haspopup="true" role="button" tabindex="0">space characters</span>
 </dt>
 <dd>
-<a class="dfn-ref" href="common-microsyntaxes.html#space-character"><span class="secno">2.4.1 </span>Common parser idioms</a>
+<a class="dfn-ref" href="common-microsyntaxes.html#space-character"><span class="secno">2.4 </span>Common microsyntaxes</a>
 </dd>
 <dd>
 <a href="common-microsyntaxes.html#space-character_0"><span class="secno">2.4.4.4 </span>Lists of integers</a>
@@ -32989,10 +32989,10 @@
 <a class="dfn-ref" href="common-microsyntaxes.html#week-number-of-the-last-day"><span class="secno">2.4.5.6 </span>Weeks</a>
 <a class="index-counter" href="common-microsyntaxes.html#week-number-of-the-last-day_0">(2)</a>
 </dd>
-</dl><dl id="white_space_index"><dt><span title="White_Space">White_Space characters</span>
+</dl><dl id="white_space_index"><dt><span aria-haspopup="true" role="button" tabindex="0">White_Space characters</span>
 </dt>
 <dd>
-<a class="dfn-ref" href="common-microsyntaxes.html#white_space"><span class="secno">2.4.1 </span>Common parser idioms</a>
+<a class="dfn-ref" href="common-microsyntaxes.html#white_space"><span class="secno">2.4 </span>Common microsyntaxes</a>
 </dd>
 <dd>
 <a href="common-microsyntaxes.html#white_space_0"><span class="secno">2.4.5.7 </span>Vaguer moments in time</a>

Received on Tuesday, 16 August 2011 04:58:33 UTC