[html5] r4634 - [e] (0) Make the microdata spec stand slightly more alone.

whatwg at whatwg.org whatwg at whatwg.org
Fri Jan 29 03:53:49 PST 2010


Author: ianh
Date: 2010-01-29 03:53:47 -0800 (Fri, 29 Jan 2010)
New Revision: 4634

Modified:
   complete.html
   index
   source
Log:
[e] (0) Make the microdata spec stand slightly more alone.

Modified: complete.html
===================================================================
--- complete.html	2010-01-29 08:52:47 UTC (rev 4633)
+++ complete.html	2010-01-29 11:53:47 UTC (rev 4634)
@@ -2100,7 +2100,12 @@
 
 
 
+
+<!--FIXUP microdata +1-->
+<!--FIXUP 2dcontext +1-->
   <h3 id=conformance-requirements><span class=secno>2.2 </span>Conformance requirements</h3>
+<!--FIXUP microdata -1-->
+<!--FIXUP 2dcontext -1-->
 
   <p>All diagrams, examples, and notes in this specification are
   non-normative, as are all sections explicitly marked non-normative.
@@ -2129,11 +2134,10 @@
   specification applies to implementations regardless of the
   conformity of the input documents.</p>
 
-
   <div class=impl>
 
-  <!-- put this list into its own section -->
 
+
   <p>User agents fall into several (overlapping) categories with
   different conformance requirements.</p>
 
@@ -2371,6 +2375,8 @@
 
   </div>
 
+
+
   <p>For compatibility with existing content and prior specifications,
   this specification describes two authoring formats: one based on XML
   (referred to as <a href=#the-xhtml-syntax>the XHTML syntax</a>), and one using a <a href=#writing>custom format</a> inspired by SGML (referred to as
@@ -6034,7 +6040,9 @@
   </ol><!-- see also http://ln.hixie.ch/?start=1161042744&count=1 --></div>
 
 
+<!--FIXUP microdata -1-->
   <h5 id=htmlpropertiescollection-0><span class=secno>2.7.2.5 </span>HTMLPropertiesCollection</h5>
+<!--FIXUP microdata +1-->
 
   <p>The <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> interface represents a
   <a href=#collections title=collections>collection</a> of elements that add
@@ -47830,6 +47838,8 @@
 
   <h5 id=examples-1><span class=secno>5.4.1.2 </span>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
   <div class=example>
 
    <p>Here is a long example vCard for a fictional character called
@@ -48641,6 +48651,8 @@
 
   <h5 id=examples-2><span class=secno>5.4.2.2 </span>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
 <!-- get more from http://www.ietf.org/rfc/rfc2445.txt -->
 
   <div class=example>
@@ -48826,6 +48838,8 @@
 
   <h5 id=examples-3><span class=secno>5.4.3.2 </span>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
   <div class=example>
 
    <p>This example shows an embedded image entitled <cite>My
@@ -49236,10 +49250,14 @@
 
   </ol><h5 id=examples-4><span class=secno>5.5.2.1 </span>Examples</h5>
 
-  <p>Here is an example of some HTML using Microdata to express RDF
-  statements:</p>
+  <p><i>This section is non-normative.</i></p>
 
-  <pre><dl itemscope
+  <div class=example>
+
+   <p>Here is an example of some HTML using Microdata to express RDF
+   statements:</p>
+
+   <pre><dl itemscope
     itemtype="http://purl.org/vocab/frbr/core#Work"
     itemid="http://purl.oreilly.com/works/45U8QJGZSQKDH8N">
  <dt>Title</dt>
@@ -49263,10 +49281,10 @@
  </dd>
 </dl></pre>
 
-  <p>This is equivalent to the following Turtle:</p>
+   <p>This is equivalent to the following Turtle:</p>
 
   <pre class=turtle>@prefix dc: <http://purl.org/dc/terms/> .
- at prefix frbr: <http://purl.org/vocab/frbr/core#> .
+ @prefix frbr: <http://purl.org/vocab/frbr/core#> .
 
 <http://purl.oreilly.com/works/45U8QJGZSQKDH8N> a frbr:Work ;
      dc:creator "Wil Wheaton"@en ;
@@ -49280,10 +49298,14 @@
 <http://purl.oreilly.com/products/9780596802189.EBOOK> a frbr:Expression ;
      dc:type <http://purl.oreilly.com/product-types/EBOOK> .</pre>
 
-  <hr><p>The following snippet of HTML has microdata for two people with
-  the same address:</p>
+  </div>
 
-  <pre><p>
+  <div class=example>
+
+   <p>The following snippet of HTML has microdata for two people with
+   the same address:</p>
+
+   <pre><p>
  Both
  <span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"><span itemprop="fn">Princeton</span></span>
  and
@@ -49292,11 +49314,11 @@
  <span id="dome" itemprop="adr" itemscope><span itemprop="street-address">Avenue Q</span>.</span>
 </p></pre>
 
-  <p>...generates these triples expressed in Turtle (including a
-  triple that in this case is expressed twice, though that is not
-  meaningful in RDF):</p>
+   <p>It generates these triples expressed in Turtle (including a
+   triple that in this case is expressed twice, though that is not
+   meaningful in RDF):</p>
 
-  <pre class=turtle>@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+   <pre class=turtle>@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix dct: <http://purl.org/dc/terms/> .
 @prefix hcard: <http://www.w3.org/1999/xhtml/microdata#http%3A%2F%2Fmicroformats.org%2Fprofile%2Fhcard%23%3A> .
 
@@ -49311,6 +49333,7 @@
 _:n2 hcard:adr%20street-address "Avenue Q" ;
      hcard:adr%20street-address "Avenue Q" .</pre>
 
+  </div>
 
 
 

Modified: index
===================================================================
--- index	2010-01-29 08:52:47 UTC (rev 4633)
+++ index	2010-01-29 11:53:47 UTC (rev 4634)
@@ -2000,7 +2000,12 @@
 
 
 
+
+<!--FIXUP microdata +1-->
+<!--FIXUP 2dcontext +1-->
   <h3 id=conformance-requirements><span class=secno>2.2 </span>Conformance requirements</h3>
+<!--FIXUP microdata -1-->
+<!--FIXUP 2dcontext -1-->
 
   <p>All diagrams, examples, and notes in this specification are
   non-normative, as are all sections explicitly marked non-normative.
@@ -2029,11 +2034,10 @@
   specification applies to implementations regardless of the
   conformity of the input documents.</p>
 
-
   <div class=impl>
 
-  <!-- put this list into its own section -->
 
+
   <p>User agents fall into several (overlapping) categories with
   different conformance requirements.</p>
 
@@ -2271,6 +2275,8 @@
 
   </div>
 
+
+
   <p>For compatibility with existing content and prior specifications,
   this specification describes two authoring formats: one based on XML
   (referred to as <a href=#the-xhtml-syntax>the XHTML syntax</a>), and one using a <a href=#writing>custom format</a> inspired by SGML (referred to as
@@ -5934,7 +5940,9 @@
   </ol><!-- see also http://ln.hixie.ch/?start=1161042744&count=1 --></div>
 
 
+<!--FIXUP microdata -1-->
   <h5 id=htmlpropertiescollection-0><span class=secno>2.7.2.5 </span>HTMLPropertiesCollection</h5>
+<!--FIXUP microdata +1-->
 
   <p>The <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> interface represents a
   <a href=#collections title=collections>collection</a> of elements that add
@@ -47730,6 +47738,8 @@
 
   <h5 id=examples-1><span class=secno>5.4.1.2 </span>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
   <div class=example>
 
    <p>Here is a long example vCard for a fictional character called
@@ -48541,6 +48551,8 @@
 
   <h5 id=examples-2><span class=secno>5.4.2.2 </span>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
 <!-- get more from http://www.ietf.org/rfc/rfc2445.txt -->
 
   <div class=example>
@@ -48726,6 +48738,8 @@
 
   <h5 id=examples-3><span class=secno>5.4.3.2 </span>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
   <div class=example>
 
    <p>This example shows an embedded image entitled <cite>My
@@ -49136,10 +49150,14 @@
 
   </ol><h5 id=examples-4><span class=secno>5.5.2.1 </span>Examples</h5>
 
-  <p>Here is an example of some HTML using Microdata to express RDF
-  statements:</p>
+  <p><i>This section is non-normative.</i></p>
 
-  <pre><dl itemscope
+  <div class=example>
+
+   <p>Here is an example of some HTML using Microdata to express RDF
+   statements:</p>
+
+   <pre><dl itemscope
     itemtype="http://purl.org/vocab/frbr/core#Work"
     itemid="http://purl.oreilly.com/works/45U8QJGZSQKDH8N">
  <dt>Title</dt>
@@ -49163,10 +49181,10 @@
  </dd>
 </dl></pre>
 
-  <p>This is equivalent to the following Turtle:</p>
+   <p>This is equivalent to the following Turtle:</p>
 
   <pre class=turtle>@prefix dc: <http://purl.org/dc/terms/> .
- at prefix frbr: <http://purl.org/vocab/frbr/core#> .
+ @prefix frbr: <http://purl.org/vocab/frbr/core#> .
 
 <http://purl.oreilly.com/works/45U8QJGZSQKDH8N> a frbr:Work ;
      dc:creator "Wil Wheaton"@en ;
@@ -49180,10 +49198,14 @@
 <http://purl.oreilly.com/products/9780596802189.EBOOK> a frbr:Expression ;
      dc:type <http://purl.oreilly.com/product-types/EBOOK> .</pre>
 
-  <hr><p>The following snippet of HTML has microdata for two people with
-  the same address:</p>
+  </div>
 
-  <pre><p>
+  <div class=example>
+
+   <p>The following snippet of HTML has microdata for two people with
+   the same address:</p>
+
+   <pre><p>
  Both
  <span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"><span itemprop="fn">Princeton</span></span>
  and
@@ -49192,11 +49214,11 @@
  <span id="dome" itemprop="adr" itemscope><span itemprop="street-address">Avenue Q</span>.</span>
 </p></pre>
 
-  <p>...generates these triples expressed in Turtle (including a
-  triple that in this case is expressed twice, though that is not
-  meaningful in RDF):</p>
+   <p>It generates these triples expressed in Turtle (including a
+   triple that in this case is expressed twice, though that is not
+   meaningful in RDF):</p>
 
-  <pre class=turtle>@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+   <pre class=turtle>@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix dct: <http://purl.org/dc/terms/> .
 @prefix hcard: <http://www.w3.org/1999/xhtml/microdata#http%3A%2F%2Fmicroformats.org%2Fprofile%2Fhcard%23%3A> .
 
@@ -49211,6 +49233,7 @@
 _:n2 hcard:adr%20street-address "Avenue Q" ;
      hcard:adr%20street-address "Avenue Q" .</pre>
 
+  </div>
 
 
 

Modified: source
===================================================================
--- source	2010-01-29 08:52:47 UTC (rev 4633)
+++ source	2010-01-29 11:53:47 UTC (rev 4634)
@@ -1017,8 +1017,13 @@
 
 
 
+<!--START microdata-->
 
+<!--FIXUP microdata +1-->
+<!--FIXUP 2dcontext +1-->
   <h3>Conformance requirements</h3>
+<!--FIXUP microdata -1-->
+<!--FIXUP 2dcontext -1-->
 
   <p>All diagrams, examples, and notes in this specification are
   non-normative, as are all sections explicitly marked non-normative.
@@ -1049,10 +1054,9 @@
   specification applies to implementations regardless of the
   conformity of the input documents.</p>
 
-
   <div class="impl">
 
-  <!-- put this list into its own section -->
+<!--END microdata-->
 
   <p>User agents fall into several (overlapping) categories with
   different conformance requirements.</p>
@@ -1279,6 +1283,8 @@
 
   </dl>
 
+<!--START microdata-->
+
   <p>Some conformance requirements are phrased as requirements on
   elements, attributes, methods or objects. Such requirements fall
   into two categories: those describing content model restrictions,
@@ -1304,6 +1310,8 @@
 
   </div>
 
+<!--END microdata-->
+
   <p>For compatibility with existing content and prior specifications,
   this specification describes two authoring formats: one based on XML
   (referred to as <span>the XHTML syntax</span>), and one using a <a
@@ -5731,7 +5739,9 @@
   </div>
 
 <!--END w3c-html--><!--START microdata-->
+<!--FIXUP microdata -1-->
   <h5>HTMLPropertiesCollection</h5>
+<!--FIXUP microdata +1-->
 
   <p>The <code>HTMLPropertiesCollection</code> interface represents a
   <span title="collections">collection</span> of elements that add
@@ -53690,6 +53700,8 @@
 
   <h5>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
   <div class="example">
 
    <p>Here is a long example vCard for a fictional character called
@@ -54670,6 +54682,8 @@
 
   <h5>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
 <!-- get more from http://www.ietf.org/rfc/rfc2445.txt -->
 
   <div class="example">
@@ -54873,6 +54887,8 @@
 
   <h5>Examples</h5>
 
+  <p><i>This section is non-normative.</i></p>
+
   <div class="example">
 
    <p>This example shows an embedded image entitled <cite>My
@@ -55416,10 +55432,14 @@
 
   <h5>Examples</h5>
 
-  <p>Here is an example of some HTML using Microdata to express RDF
-  statements:</p>
+  <p><i>This section is non-normative.</i></p>
 
-  <pre><dl itemscope
+  <div class="example">
+
+   <p>Here is an example of some HTML using Microdata to express RDF
+   statements:</p>
+
+   <pre><dl itemscope
     itemtype="http://purl.org/vocab/frbr/core#Work"
     itemid="http://purl.oreilly.com/works/45U8QJGZSQKDH8N">
  <dt>Title</dt>
@@ -55443,10 +55463,10 @@
  </dd>
 </dl></pre>
 
-  <p>This is equivalent to the following Turtle:</p>
+   <p>This is equivalent to the following Turtle:</p>
 
   <pre class="turtle">@prefix dc: <http://purl.org/dc/terms/> .
- at prefix frbr: <http://purl.org/vocab/frbr/core#> .
+ @prefix frbr: <http://purl.org/vocab/frbr/core#> .
 
 <http://purl.oreilly.com/works/45U8QJGZSQKDH8N> a frbr:Work ;
      dc:creator "Wil Wheaton"@en ;
@@ -55460,12 +55480,14 @@
 <http://purl.oreilly.com/products/9780596802189.EBOOK> a frbr:Expression ;
      dc:type <http://purl.oreilly.com/product-types/EBOOK> .</pre>
 
-  <hr>
+  </div>
 
-  <p>The following snippet of HTML has microdata for two people with
-  the same address:</p>
+  <div class="example">
 
-  <pre><p>
+   <p>The following snippet of HTML has microdata for two people with
+   the same address:</p>
+
+   <pre><p>
  Both
  <span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"><span itemprop="fn">Princeton</span></span>
  and
@@ -55474,11 +55496,11 @@
  <span id="dome" itemprop="adr" itemscope><span itemprop="street-address">Avenue Q</span>.</span>
 </p></pre>
 
-  <p>...generates these triples expressed in Turtle (including a
-  triple that in this case is expressed twice, though that is not
-  meaningful in RDF):</p>
+   <p>It generates these triples expressed in Turtle (including a
+   triple that in this case is expressed twice, though that is not
+   meaningful in RDF):</p>
 
-  <pre class="turtle">@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+   <pre class="turtle">@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix dct: <http://purl.org/dc/terms/> .
 @prefix hcard: <http://www.w3.org/1999/xhtml/microdata#http%3A%2F%2Fmicroformats.org%2Fprofile%2Fhcard%23%3A> .
 
@@ -55493,6 +55515,7 @@
 _:n2 hcard:adr%20street-address "Avenue Q" ;
      hcard:adr%20street-address "Avenue Q" .</pre>
 
+  </div>
 
 
 
@@ -66890,7 +66913,7 @@
   <h2 id="storage-and-database">Structured client-side storage APIs</h2>
 
 <!--START complete-->
-<!--FIXUP -1-->
+<!--FIXUP complete -1-->
   <h3 id="webstorage">Web Storage</h3>
 
 <!--START storage-->
@@ -68817,7 +68840,7 @@
 <!--END database-->
 
 <!--START complete-->
-<!--FIXUP +1-->
+<!--FIXUP complete +1-->
 <!--START html--><!--START w3c-html-->
 
 




More information about the Commit-Watchers mailing list