--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl Mon Apr 23 17:28:24 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl Mon Apr 23 17:33:33 2012 +0200
@@ -3,7 +3,7 @@
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-@prefix foaf: <http://xmlns.com/foaf/0.1/>
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
:derek
a prov:Agent, foaf:Person;
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl Mon Apr 23 17:28:24 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl Mon Apr 23 17:33:33 2012 +0200
@@ -3,5 +3,9 @@
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
-# TODO
+ :boogle
+ a prov:Agent, prov:Organization, foaf:Organization;
+ foaf:name "Boogle".
+ .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Person.ttl Mon Apr 23 17:28:24 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Person.ttl Mon Apr 23 17:33:33 2012 +0200
@@ -2,6 +2,11 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix : <http://example.com/> .
-# TODO
+:derek
+ a prov:Person, foaf:Person;
+ foaf:givenName "Derek"^^xsd:string;
+ foaf:mbox <mailto:dererk@example.org>;
+ foaf:homePage <http://dereck.example.com>;