--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ActivityInvolvement.ttl Wed Apr 25 15:16:48 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ActivityInvolvement.ttl Wed Apr 25 15:27:04 2012 +0100
@@ -4,4 +4,12 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:bar_chart
+ prov:wasGeneratedBy :illustrating
+ prov:qualifiedGeneration :making-bar-chart .
+
+:making-bar-chart
+ a prov:Generation, prov:ActivityInvolvement ;
+ prov:activity :illustrating ;
+ rdfs:comment "Ended up with bar chart as line chart looked ugly."@en .
+
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedGeneration.ttl Wed Apr 25 15:16:48 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedGeneration.ttl Wed Apr 25 15:27:04 2012 +0100
@@ -4,4 +4,11 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:bar_chart
+ a prov:Entity;
+ prov:wasGeneratedBy :illustrating
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:activity :illustrating ;
+ rdfs:comment "Ended up with bar chart as line chart looked ugly."@en .
+ ] .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasGeneratedBy.ttl Wed Apr 25 15:16:48 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasGeneratedBy.ttl Wed Apr 25 15:27:04 2012 +0100
@@ -2,9 +2,8 @@
@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 ex: <http://example.com/> .
+@prefix : <http://example.com/> .
-ex:bar_chart
- a prov:Entity;
- prov:wasGeneratedBy ex:illustrationActivity;
-.
+:bar_chart
+ a prov:Entity ;
+ prov:wasGeneratedBy :illustrating .