--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ActivityInvolvement.ttl Mon Jul 02 21:30:43 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@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 : <http://example.com/> .
-
-:bar_chart
- a prov:Entity;
- prov:wasGeneratedBy :illustrating;
- prov:qualifiedGeneration :making-bar-chart;
-.
-
-:making-bar-chart
- a prov:Generation,
- prov:ActivityInvolvement; ## Instances of Generation, Invalidation, and Communication qualify
- prov:activity :illustrating; ## the involvement of an Activity (cited by prov:activity)
- rdfs:comment "Ended up with bar chart as line chart looked ugly."@en;
-.
-
-:illustrating a prov:Activity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_AgentInvolvement.ttl Mon Jul 02 21:30:43 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@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 : <http://example.com/> .
-
-:illustrating
- a prov:Activity;
- prov:wasAssociatedWith :derek;
- prov:qualifiedAssociation [
- a prov:Association,
- prov:AgentInfluence; ## Instances of Generation, Invalidation, and Communication qualify
- prov:agent :derek; ## the influence of an Agent (cited by prov:agent)
- prov:hadRole :illustrationist
- ];
-.
-
-:derek a prov:Person, prov:Agent, prov:Entity .
-
-:illustratonist a prov:Role .