Skip to content

Instantly share code, notes, and snippets.

@edsu
Created March 11, 2010 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edsu/329537 to your computer and use it in GitHub Desktop.
Save edsu/329537 to your computer and use it in GitHub Desktop.
# RESTful Web Services Cookbook
# http://oreilly.com/catalog/9780596801694
# rdf courtesy of O'Reilly and W3C's RDFa Distiller
curl 'http://www.w3.org/2007/08/pyRdfa/extract?uri=http://oreilly.com/catalog/9780596801694&format=turtle'
@prefix dc: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix frbr: <http://vocab.org/frbr/core#> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xhv: <http://www.w3.org/1999/xhtml/vocab#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://customer.wileyeurope.com/CGI-BIN/lansaweb?procfun+shopcart+shcfn01+funcparms+parmisbn(a0130):9780596801687+parmqty(p0050):1+parmurl(l0560):http://oreilly.com/store/> a gr:Offering ;
rdfs:label " Print" ;
gr:hasPriceSpecification
[ a gr:UnitPriceSpecification ;
gr:hasCurrency "GBP" ;
gr:hasCurrencyValue "30.99"^^xsd:float
] ;
gr:includesObject
[ a gr:TypeAndQuantityNode ;
gr:amountOfThisGood "1"^^xsd:float ;
gr:typeOfGood <urn:x-domain:oreilly.com:product:9780596801687.BOOK>
] .
<http://my.safaribooksonline.com/9780596809140> a gr:Offering ;
rdfs:label " Safari Books Online" ;
gr:includesObject
[ a gr:TypeAndkbook turtleQuantityNode ;
gr:amountOfThisGood "1"^^xsd:float ;
gr:typeOfGood <urn:x-domain:oreilly.com:product:9780596809140.SAF>
] .
<http://oreilly.com/catalog/9780596801694> xhv:stylesheet <http://oreilly.com/catalog/assets/catalog_page.css?2>, <http://oreilly.com/catalog/assets/jquery.lightbox-0.5.css> .
<https://epoch.oreilly.com/shop/cart.orm?p=BUNDLE&prod=9780596801687.BOOK&prod=9781449382483.EBOOK&bundle=1&retUrl=http%3A%252F%252Foreilly.com%252Fstore%252F> a gr:Offering ;
rdfs:label "Print+Ebook" ;
gr:hasPriceSpecification
[ a gr:UnitPriceSpecification ;
gr:hasCurrency "USD" ;
gr:hasCurrencyValue "43.99"^^xsd:float
] ;
gr:includesObject
[ a gr:TypeAndQuantityNode ;
gr:amountOfThisGood "1"^^xsd:float ;
gr:typeOfGood <urn:x-domain:oreilly.com:product:9781449382483.EBOOK>
],
[ a gr:TypeAndQuantityNode ;
gr:amountOfThisGood "1"^^xsd:float ;
gr:typeOfGood <urn:x-domain:oreilly.com:product:9780596801687.BOOK>
] .
<https://epoch.oreilly.com/shop/cart.orm?prod=9780596801687.BOOK> a gr:Offering ;
rdfs:label " Print" ;
gr:hasPriceSpecification
[ a gr:UnitPriceSpecification ;
gr:hasCurrency "USD" ;
gr:hasCurrencyValue "39.99"^^xsd:float
] ;
gr:includesObject
[ a gr:TypeAndQuantityNode ;
gr:amountOfThisGood "1"^^xsd:float ;
gr:typeOfGood <urn:x-domain:oreilly.com:product:9780596801687.BOOK>
] .
<https://epoch.oreilly.com/shop/cart.orm?prod=9781449382483.EBOOK> a gr:Offering ;
rdfs:label " Ebook" ;
gr:hasPriceSpecification
[ a gr:UnitPriceSpecification ;
gr:hasCurrency "USD" ;
gr:hasCurrencyValue "31.99"^^xsd:float
] ;
gr:includesObject
[ a gr:TypeAndQuantityNode ;
gr:amountOfThisGood "1"^^xsd:float ;
gr:typeOfGood <urn:x-domain:oreilly.com:product:9781449382483.EBOOK>
] .
<urn:x-domain:oreilly.com:product:9780596801694.IP> a frbr:Expression ;
dc:creator <urn:x-domain:oreilly.com:agent:pdb:3673> ;
dc:issued "2010-02-22"^^xsd:dateTime ;
dc:publisher "O'Reilly Media / Yahoo Press" ;
dc:title "RESTful Web Services Cookbook" ;
frbr:embodiment <urn:x-domain:oreilly.com:product:9780596801687.BOOK>, <urn:x-domain:oreilly.com:product:9780596809140.SAF>, <urn:x-domain:oreilly.com:product:9781449382483.EBOOK> .
<urn:x-domain:oreilly.com:agent:pdb:3673> a foaf:Person ;
foaf:homepage <http://www.oreillynet.com/pub/au/3850> ;
foaf:name "Subbu Allamaraju" .
<urn:x-domain:oreilly.com:product:9780596809140.SAF> a frbr:Manifestation ;
dc:type <http://purl.oreilly.com/product-types/SAF> .
<urn:x-domain:oreilly.com:product:9781449382483.EBOOK> a frbr:Manifestation ;
dc:identifier <urn:isbn:9781449382483> ;
dc:issued "2010-02-22"^^xsd:dateTime ;
dc:type <http://purl.oreilly.com/product-types/EBOOK> .
<urn:x-domain:oreilly.com:product:9780596801687.BOOK> a frbr:Manifestation ;
dc:extent """
320
""" ;
dc:identifier <urn:isbn:9780596801687> ;
dc:issued "2010-03-04"^^xsd:dateTime ;
dc:type <http://purl.oreilly.com/product-types/BOOK> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment