update from satya
authorTim L <lebot@rpi.edu>
Mon, 19 Sep 2011 15:34:53 -0400
changeset 340 58b63eefed49
parent 339 afa1a1b2c959
child 341 cd4c523e99c2
update from satya
ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.ttl
--- a/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.ttl	Mon Sep 19 15:24:37 2011 -0400
+++ b/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.ttl	Mon Sep 19 15:34:53 2011 -0400
@@ -1,8 +1,7 @@
-@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
-@prefix prov: <http://dvcs.w3.org/hg/prov/file/tip/ontology/ProvenanceOntology.owl#> .
-@prefix ext:  <http://dvcs.w3.org/hg/prov/file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#> .
-@prefix :     <#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix ext: <http://www.w3.org/TR/ProvenanceOntology.owl#> .
+@prefix :    <#> .
 
 :bob
     a ext:Journalist .
@@ -20,67 +19,67 @@
     a ext:Journalist .
 
 :e1
-    a ext:CrimeFile;
+    a ext:CrimeFile ;
     ext:hasFileContent ""^^xsd:string ;
-    ext:hasFilePath "/share/crime.txt"^^xsd:string ;
-    prov:isGeneratedBy :pe0 .
+    ext:hasFilePath </share/crime.txt>;
+    prov:wasGeneratedBy :pe0 .
 
 :e2
-    a ext:CrimeFile;
+    a ext:CrimeFile ;
     ext:hasFileContent "There was a lot of crime in London last month."^^xsd:string ;
-    ext:hasFilePath "/share/crime.txt"^^xsd:string ;
-    prov:isDerivedFrom :e1 ;
-    prov:isGeneratedBy :pe1 .
+    ext:hasFilePath </share/crime.txt>;
+    prov:wasDerivedFrom :e1 ;
+    prov:wasGeneratedBy :pe1 .
 
 :e3
-    a ext:CrimeFile;
+    a ext:CrimeFile ;
     ext:hasFileContent "There was a lot of crime in London and New-York last month."^^xsd:string ;
-    ext:hasFilePath "/share/crime.txt"^^xsd:string ;
-    prov:isDerivedFrom :e2 ;
-    prov:isGeneratedBy :pe3 .
+    ext:hasFilePath </share/crime.txt>;
+    prov:wasDerivedFrom :e2 ;
+    prov:wasGeneratedBy :pe3 .
 
 :e4
-    a ext:CrimeFile;
+    a ext:CrimeFile ;
     ext:hasFileContent "There was a lot of crime in London last month."^^xsd:string ;
-    prov:isDerivedFrom :e2 ;
-    prov:isGeneratedBy :pe2 .
+    prov:wasDerivedFrom :e2 ;
+    prov:wasGeneratedBy :pe2 .
 
 :e5
-    a ext:CrimeFile;
+    a ext:CrimeFile ;
     ext:hasFileContent "There was a lot of crime in London and New-York last month."^^xsd:string ;
-    prov:isDerivedFrom :e3 ;
-    prov:isGeneratedBy :pe4 .
+    prov:wasDerivedFrom :e3 ;
+    prov:wasGeneratedBy :pe4 .
 
 :e6
-    a ext:CrimeFile;
-    prov:isDerivedFrom :e3 ;
-    prov:isGeneratedBy :pe5 .
+    a ext:CrimeFile ;
+    prov:wasDerivedFrom :e3 ;
+    prov:wasGeneratedBy :pe5 .
 
 :pe0
-    a ext:FileCreation;
+    a ext:FileCreation ;
     prov:isControlledBy :alice .
 
 :pe1
-    a ext:FileAppending;
+    a ext:FileAppending ;
     prov:Used :e1 ;
     prov:isControlledBy :bob .
 
 :pe2
-    a ext:EmailProcessExecution;
+    a ext:EmailProcessExecution ;
     prov:Used :e2 ;
     prov:isControlledBy :charles .
 
 :pe3
-    a ext:FileEditing;
+    a ext:FileEditing ;
     prov:Used :e2 ;
     prov:isControlledBy :david .
 
 :pe4
-    a ext:EmailProcessExecution;
+    a ext:EmailProcessExecution ;
     prov:Used :e3 ;
     prov:isControlledBy :edith .
 
 :pe5
-    a ext:SpellChecking;
+    a ext:SpellChecking ;
     prov:Used :e3 .