Browse files

Merge pull request #1102 from unor/book-microdata-examples

Example fixes: no 'content' attribute for 'span' in Microdata; wrong attribute in Microdata; following recommendation for 'price' content
  • Loading branch information...
2 parents c8d62fc + 07dc18b commit cd26a939b5e89de345e136acfddc9de6298c013f @danbri danbri committed Apr 15, 2016
Showing with 12 additions and 11 deletions.
  1. +3 −2 data/examples.txt
  2. +9 −9 data/ext/bib/bsdo-translation-examples.txt
View
5 data/examples.txt
@@ -1113,7 +1113,7 @@ by <a itemprop="author" href="/author/jd_salinger.html">J.D. Salinger</a>
</div>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
- Price: <span itemprop="price" content="6.99">$6.99</span>
+ Price: $<span itemprop="price">6.99</span>
<meta itemprop="priceCurrency" content="USD" />
<link itemprop="availability" href="http://schema.org/InStock">In Stock
</div>
@@ -1172,7 +1172,8 @@ by <a property="author" href="/author/jd_salinger.html">J.D. Salinger</a>
</div>
<div property="offers" typeof="Offer">
- Price: <meta property="priceCurrency" content="USD" />$<meta property="price" content="6.99" />6.99
+ Price: $<span property="price">6.99</span>
+ <meta property="priceCurrency" content="USD" />
<link property="availability" href="http://schema.org/InStock">In Stock
</div>
View
18 data/ext/bib/bsdo-translation-examples.txt
@@ -28,17 +28,17 @@ MICRODATA:
<div>
<div itemscope itemtype="http://schema.org/Book" itemid="http://worldcat.org/entity/work/id/2292573321">
<h1><span itemprop="name">Rouge et le noir</span></h1>
- <div>Author: <span property="itemprop" itemscope itemtype="http://schema.org/Person" itemid="http://viaf.org/viaf/17823">Stendhal</span></div>
- <div>Language: <span itemprop="inLanguage" content="fr">French</span></div>
+ <div>Author: <span itemprop="author" itemscope itemtype="http://schema.org/Person" itemid="http://viaf.org/viaf/17823">Stendhal</span></div>
+ <div>Language: <meta itemprop="inLanguage" content="fr" />French</div>
<div>Has Translation: <span itemprop="workTranslation" itemscope itemtype="http://schema.org/CreativeWork" itemid="http://worldcat.org/entity/work/id/460647">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></div>
</div>
<div itemscope itemtype="http://schema.org/Book" itemid="http://worldcat.org/entity/work/id/460647">
<h1><span itemprop="name">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></h1>
<div>Author: <span itemprop="author" itemscope itemtype="http://schema.org/Person" itemid="http://viaf.org/viaf/17823">Stendhal</span></div>
- <div>Language: <span itemprop="inLanguage" content="en">English</span></div>
+ <div>Language: <meta itemprop="inLanguage" content="en" />English</div>
<div>Subject: <span itemprop="about">Psychological fiction, French</span></div>
<div>Translation of: <span itemprop="translationOfWork" itemscope itemtype="http://schema.org/CreativeWork" itemid="http://worldcat.org/entity/work/id/2292573321">Rouge et le noir</span></div>
- <div>Translator: <span property="itemprop" itemscope itemtype="http://schema.org/Person" itemid="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
+ <div>Translator: <span itemprop="translator" itemscope itemtype="http://schema.org/Person" itemid="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
</div>
</div>
@@ -48,17 +48,17 @@ RDFA:
<div vocab="http://schema.org/">
<div typeof="Book" resource="http://worldcat.org/entity/work/id/2292573321">
<h1><span property="name">Rouge et le noir</span></h1>
- <div>Author: <span property="author" typeOf="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
+ <div>Author: <span property="author" typeof="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
<div>Language: <span property="inLanguage" content="fr">French</span></div>
- <div>Has Translation: <span property="workTranslation" typeOf="CreativeWork" resource="http://worldcat.org/entity/work/id/460647">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></div>
+ <div>Has Translation: <span property="workTranslation" typeof="CreativeWork" resource="http://worldcat.org/entity/work/id/460647">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></div>
</div>
<div typeof="Book" resource="http://worldcat.org/entity/work/id/460647">
<h1><span property="name">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></h1>
- <div>Author: <span property="author" typeOf="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
+ <div>Author: <span property="author" typeof="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
<div>Language: <span property="inLanguage" content="en">English</span></div>
<div>Subject: <span property="about">Psychological fiction, French</span></div>
- <div>Translation of: <span property="translationOfWork" typeOf="CreativeWork" resource="http://worldcat.org/entity/work/id/2292573321">Rouge et le noir</span></div>
- <div>Translator: <span property="translator" typeOf="Person" resource="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
+ <div>Translation of: <span property="translationOfWork" typeof="CreativeWork" resource="http://worldcat.org/entity/work/id/2292573321">Rouge et le noir</span></div>
+ <div>Translator: <span property="translator" typeof="Person" resource="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
</div>
</div>

0 comments on commit cd26a93

Please sign in to comment.