Removed outdated examples
authorStian Soiland-Reyes <soiland-reyes@cs.manchester.ac.uk>
Thu, 19 Jul 2012 11:24:28 +0100
changeset 4165 c18a209e8a00
parent 4164 6a3ebcdad67d
child 4166 088e0ad0d415
Removed outdated examples
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_StartByActivity.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedStartByActivity.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_StartByActivity.ttl	Thu Jul 19 10:55:31 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +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/> .
-
-:filling-fuel
-    a prov:Activity;
-    prov:startedAtTime            "2012-04-24T18:31:00Z"^^xsd:dateTime;
-    prov:endedAtTime              "2012-04-24T18:33:10Z"^^xsd:dateTime;
-    prov:wasStartedByActivity     :observing-low-fuel;
-    prov:qualifiedStartByActivity :need-to-fill-fuel;
-.
-
-:need-to-fill-fuel
-    a prov:StartByActivity;
-    prov:activity :observing-low-fuel;
-    rdfs:comment  """The driver noticed the low fuel light immediately, 
-                     but spent half an hour looking for a cheap petrol station."""@en;
-.
-
-:observing-low-fuel
-    a prov:Activity;
-    prov:startedAtTime "2012-04-24T17:45:00Z"^^xsd:dateTime;
-.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedStartByActivity.ttl	Thu Jul 19 10:55:31 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +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/> .
-
-:filling-fuel
-    a prov:Activity;
-    prov:startedAtTime        "2012-04-24T18:31:00Z"^^xsd:dateTime;
-    prov:endedAtTime          "2012-04-24T18:33:10Z"^^xsd:dateTime;
-    prov:wasAssociatedWith    :driver;
-    prov:wasStartedByActivity :observing-low-fuel;
-    prov:qualifiedStartByActivity [
-        a prov:StartByActivity;
-        prov:activity :observing-low-fuel;
-        rdfs:comment """The driver noticed the low fuel light immediately, 
-                        but spent half an hour looking for a cheap petrol station."""@en ;
-    ];
-.
-
-:observing-low-fuel
-    a prov:Activity;
-    prov:wasAssociatedWith    :driver;
-    prov:startedAtTime        "2012-04-24T17:45:00Z"^^xsd:dateTime;
-.
-
-:driver a prov:Person, prov:Agent .