- From: poot <cvsmail@w3.org>
- Date: Wed, 7 Apr 2010 09:30:02 +0900 (JST)
- To: public-html-diffs@w3.org
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><p>
Both
- <span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"><span itemprop="fn">Princeton</span></span>
+ <span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"><span itemprop="fn"
+ ><span itemprop="n" itemscope><span itemprop="given-name">Princeton</span></span></span></span>
and
- <span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"><span itemprop="fn">Trekkie</span></span>
+ <span itemscope itemtype="http://microformats.org/profile/hcard" itemref="home"><span itemprop="fn"
+ ><span itemprop="n" itemscope><span itemprop="given-name">Trekkie</span></span></span></span>
live at
<span id="home" itemprop="adr" itemscope><span itemprop="street-address">Avenue Q</span>.</span>
</p></pre>
@@ -1958,18 +1960,22 @@
<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> .
+@prefix hcard: <http://www.w3.org/1999/xhtml/microdata#http://microformats.org/profile/hcard%23:> .
<> <http://www.w3.org/1999/xhtml/microdata#item> _:n0 ;
<http://www.w3.org/1999/xhtml/microdata#item> _:n1 .
-_:n0 rdf:type <http://microformats.org/profile/hcard> ;
- hcard:fn "Princeton" ;
- hcard:adr _:n2 .
-_:n1 rdf:type <http://microformats.org/profile/hcard> ;
- hcard:fn "Trekkie" ;
- hcard:adr _:n2 .
-_:n2 hcard:adr%20street-address "Avenue Q" ;
- hcard:adr%20street-address "Avenue Q" .</pre>
+_:n0 rdf:type <http://microformats.org/profile/hcard> ;
+ hcard:fn "Princeton" ;
+ hcard:n _:n0a
+ hcard:adr _:n2 .
+_:n0a hcard:n%20given-name "Princeton" .
+_:n1 rdf:type <http://microformats.org/profile/hcard> ;
+ 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