--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_DictionaryInvolvement.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_DictionaryInvolvement.ttl Thu Apr 26 09:27:48 2012 +0100
@@ -4,4 +4,5 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+
+#TO DO
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involved.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involved.ttl Thu Apr 26 09:27:48 2012 +0100
@@ -4,4 +4,16 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:illustrationActivity a prov:Activity .
+:aggregationActivity a prov:Activity .
+:aggregatedByRegions a prov:Entity .
+
+ex:illustrationActivity
+ prov:used :aggregatedByRegions;
+ prov:wasAssociatedWith :derek;
+ prov:wasInformedBy :aggregationActivity .
+
+ex:illustrationActivity prov:involved :aggregatedByRegions ,
+ :derek ,
+ :aggregationActivity .
+
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedDerivation.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedDerivation.ttl Thu Apr 26 09:27:48 2012 +0100
@@ -4,4 +4,12 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:bar_chart prov:wasDerivedFrom :aggregatedByRegions ;
+ prov:qualifiedDerivation [
+ a prov:Derivation ;
+ prov:hadGeneration :illustration ; ## more details about the activity underpinning the derivation
+ prov:entity :aggregatedByRegions ;
+ ]
+.
+
+
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedRevision.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedRevision.ttl Thu Apr 26 09:27:48 2012 +0100
@@ -4,4 +4,10 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:e1 a prov:Entity .
+
+:e2 a prov:Entity .
+ prov:qualifiedRevision [
+ a prov:Revision ;
+ prov:entity :e1 ;
+ ] .
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasRevisionOf.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasRevisionOf.ttl Thu Apr 26 09:27:48 2012 +0100
@@ -4,4 +4,9 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+# :post9821v1 is a post, which is a revision of the original post :post9821.
+
+:post9821v1
+ a prov:Entity, sioc:Post;
+ prov:wasRevisionOf :post9821;
+.