- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 07 Dec 2010 02:42:19 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/md
In directory hutz:/tmp/cvs-serv5969
Modified Files:
Overview.html
Log Message:
update spec as suggested in http://www.w3.org/mid/20100827190608.GA2112@octavius (whatwg r5706)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/md/Overview.html,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- Overview.html 16 Nov 2010 00:21:39 -0000 1.105
+++ Overview.html 7 Dec 2010 02:42:17 -0000 1.106
@@ -2101,7 +2101,7 @@
<dt>Title</dt>
<dd><cite itemprop="http://purl.org/dc/terms/title">Just a Geek</cite></dd>
<dt>By</dt>
- <dd><span itemprop="http://purl.org/dc/terms/creator">Wil Wheaton</span></dd>
+ <dd><span itemprop="http://purl.org/dc/elements/1.1/creator">Wil Wheaton</span></dd>
<dt>Format</dt>
<dd itemprop="http://purl.org/vocab/frbr/core#realization"
itemscope
@@ -2121,20 +2121,21 @@
<p>This is equivalent to the following Turtle:</p>
- <pre class="turtle">@prefix dc: <http://purl.org/dc/terms/> .
+ <pre class="turtle">@prefix dct: <http://purl.org/dc/terms/> .
+ @prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
<http://books.example.com/works/45U8QJGZSQKDH8N> a frbr:Work ;
- dc:creator "Wil Wheaton"@en ;
- dc:title "Just a Geek"@en ;
+ dce:creator "Wil Wheaton"@en ;
+ dct:title "Just a Geek"@en ;
frbr:realization <http://books.example.com/products/9780596007683.BOOK>,
<http://books.example.com/products/9780596802189.EBOOK> .
<http://books.example.com/products/9780596007683.BOOK> a frbr:Expression ;
- dc:type <http://books.example.com/product-types/BOOK> .
+ dct:type <http://books.example.com/product-types/BOOK> .
<http://books.example.com/products/9780596802189.EBOOK> a frbr:Expression ;
- dc:type <http://books.example.com/product-types/EBOOK> .</pre>
+ dct:type <http://books.example.com/product-types/EBOOK> .</pre>
</div>
Received on Tuesday, 7 December 2010 02:42:21 UTC