Syntax error fixes
authorStian Soiland-Reyes <soiland-reyes@cs.manchester.ac.uk>
Thu, 25 Oct 2012 15:44:43 +0100
changeset 4554 a4d591af7035
parent 4553 622d39a3cc47
child 4555 1f11f244d05d
Syntax error fixes
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Bundle.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInfluence.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInfluence.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Bundle.ttl	Thu Oct 25 13:00:32 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Bundle.ttl	Thu Oct 25 15:44:43 2012 +0100
@@ -1,14 +1,17 @@
-@base:           <http://www.example.com/example.ttl> .
+@base            <http://www.example.com/example.ttl> .
 @prefix my:      <http://example.com/my#> .
 @prefix prov:    <http://www.w3.org/ns/prov#> .
+@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
+@prefix :        <http://example.com/#> .
+
 
 ## A provenance file located a http://example.com/example.ttl
 
-< > a prov:Bundle;
+<> a prov:Bundle;
     prov:generatedAtTime "2012-05-24T10:30:00"^^xsd:dateTime;
     prov:wasAttributedTo :Bob.
 
 my:report1
     a my:Report, prov:Entity;
 	my:version "1";
-	prov:generatedAtTime "2012-05-24T10:00:01"^^xsd:dateTime.
\ No newline at end of file
+	prov:generatedAtTime "2012-05-24T10:00:01"^^xsd:dateTime.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInfluence.ttl	Thu Oct 25 13:00:32 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInfluence.ttl	Thu Oct 25 15:44:43 2012 +0100
@@ -16,5 +16,5 @@
    prov:generated :sortedData;
 .
 
-:rawData    rdf:type	prov:Entity .
-:sortedData    rdf:type    prov:Entity .
+:rawData    a prov:Entity .
+:sortedData a prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInfluence.ttl	Thu Oct 25 13:00:32 2012 +0200
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInfluence.ttl	Thu Oct 25 15:44:43 2012 +0100
@@ -16,7 +16,7 @@
 
    # This unqualified influence is unknown in PROV, 
    # this would be a subproperty of wasAssociatedWith.
-   ex:wasConductedBy    :bob;
+   my:wasConductedBy    :bob;
    prov:wasInfluencedBy :bob;  
    prov:qualifiedInfluence [   
       # Even though PROV systems do not understand :wasConductedBy,