microdata; hixie: Remove the magic from the vCard vocabulary, since the magic doesn't really work. (whatwg r4981)

microdata; hixie: Remove the magic from the vCard vocabulary, since the
magic doesn't really work. (whatwg r4981)

http://dev.w3.org/cvsweb/html5/md/Overview.html?r1=1.61&r2=1.62&f=h
http://html5.org/tools/web-apps-tracker?from=4980&to=4981

===================================================================
RCS file: /sources/public/html5/md/Overview.html,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- Overview.html 7 Apr 2010 00:00:21 -0000 1.61
+++ Overview.html 7 Apr 2010 00:29:48 -0000 1.62
@@ -285,7 +285,7 @@
    <h1>HTML Microdata</h1>
    <h2 class="no-num no-toc" id="generatedID"></h2>
 
-   <h2 class="no-num no-toc" id="editor-s-draft-6-april-2010">Editor's Draft 6 April 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-7-april-2010">Editor's Draft 7 April 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/microdata/">http://www.w3.org/TR/microdata/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -381,7 +381,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 6 April 2010 Editor's Draft.
+  This specification is the 7 April 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>The contents of this specification are also part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a
   specification</a> published by the <a href="http://www.whatwg.org/">WHATWG</a>, which is available under a
   license that permits reuse of the specification text.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><!-- (this text is from the RDFa+HTML spec --><p>This specification is an extension to the HTML5 language. All
@@ -1945,9 +1945,11 @@
 
    <pre>&lt;p&gt;
  Both
- &lt;span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"&gt;&lt;span itemprop="fn"&gt;Princeton&lt;/span&gt;&lt;/span&gt;
+ &lt;span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"&gt;&lt;span itemprop="fn"
+ &gt;&lt;span itemprop="n" itemscope&gt;&lt;span itemprop="given-name"&gt;Princeton&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
  and
- &lt;span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"&gt;&lt;span itemprop="fn"&gt;Trekkie&lt;/span&gt;&lt;/span&gt;
+ &lt;span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"&gt;&lt;span itemprop="fn"
+ &gt;&lt;span itemprop="n" itemscope&gt;&lt;span itemprop="given-name"&gt;Trekkie&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
  live at
  &lt;span id="home" itemprop="adr" itemscope&gt;&lt;span itemprop="street-address"&gt;Avenue Q&lt;/span&gt;.&lt;/span&gt;
 &lt;/p&gt;</pre>
@@ -1958,18 +1960,22 @@
 
    <pre class="turtle">@prefix rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt; .
 @prefix dct: &lt;http://purl.org/dc/terms/&gt; .
-@prefix hcard: &lt;http://www.w3.org/1999/xhtml/microdata#http%3A%2F%2Fmicroformats.org%2Fprofile%2Fhcard%23%3A&gt; .
+@prefix hcard: &lt;http://www.w3.org/1999/xhtml/microdata#http://microformats.org/profile/hcard%23:&gt; .
 
 &lt;&gt; &lt;http://www.w3.org/1999/xhtml/microdata#item&gt; _:n0 ;
    &lt;http://www.w3.org/1999/xhtml/microdata#item&gt; _:n1 .
-_:n0 rdf:type &lt;http://microformats.org/profile/hcard&gt; ;
-     hcard:fn "Princeton" ;
-     hcard:adr _:n2 .
-_:n1 rdf:type &lt;http://microformats.org/profile/hcard&gt; ;
-     hcard:fn "Trekkie" ;
-     hcard:adr _:n2 .
-_:n2 hcard:adr%20street-address "Avenue Q" ;
-     hcard:adr%20street-address "Avenue Q" .</pre>
+_:n0  rdf:type &lt;http://microformats.org/profile/hcard&gt; ;
+      hcard:fn "Princeton" ;
+      hcard:n _:n0a
+      hcard:adr _:n2 .
+_:n0a hcard:n%20given-name "Princeton" .
+_:n1  rdf:type &lt;http://microformats.org/profile/hcard&gt; ;
+      hcard:fn "Trekkie" ;
+      hcard:n _:n1a
+      hcard:adr _:n2 .
+_:n1a hcard:n%20given-name "Trekkie" .
+_:n2  hcard:adr%20street-address "Avenue Q" ;
+      hcard:adr%20street-address "Avenue Q" .</pre>
 
   </div>

Received on Wednesday, 7 April 2010 00:30:29 UTC