PROV-ISSUE-90 Example namespaces in www.example.com
authorssoiland
Thu, 13 Oct 2011 11:12:01 +0100
changeset 719 6cdd441bf84f
parent 718 fef0628c42f3
child 720 e460011941e6
PROV-ISSUE-90 Example namespaces in www.example.com
http://www.example.com/crime (the ontology)
http://www.example.com/crimeFile (the instance)
ontology/ProvenanceFormalModel.html
ontology/ProvenanceFormalModel.xhtml
ontology/components/assumedBy/appending-a-file-to-itself.ttl
ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology.owl.rdf.graffle
ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology_updated_by_Khalid.graffle
ontology/examples/ontology-extensions/crime-file/crime.owl
ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.rdf.graffle
ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl
ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.ttl
--- a/ontology/ProvenanceFormalModel.html	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/ProvenanceFormalModel.html	Thu Oct 13 11:12:01 2011 +0100
@@ -179,13 +179,9 @@
         supported by all OWL2 syntax [[!OWL2-PRIMER]] to represent the
         PROV ontology. The OWL2 document for the PROV ontology is
         available at [[PROV-Ontology-Namespace]], which is also the
-        namespace for the PROV ontology and is denoted by "PROV" and
-        the prefix "prov".
+        namespace for the PROV ontology and is denoted by 
+        the prefix <code>prov</code>.
 		</p>
-        <div class="issue">The namespace URI for the ontology has not
-        yet been decided, and the examples in this document might
-        therefore not be using consistent namespaces. This is <a
-        href="http://www.w3.org/2011/prov/track/issues/90">ISSUE-90</a></div>
 	  </section>
 	</section> <!-- PROV Ontology -->
 
@@ -220,7 +216,7 @@
 		  <p> Example of instances of class Entity from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are files with identifiers <i>e1</i> and <i>e2</i>. The RDF/XML syntax for asserting that e1 is an instance of Entity is given below.		
 		  <div class="exampleOuter">
 			<pre class="example">
-				&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#e1"&gt;
+				&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#e1"&gt;
 				    &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Entity"/&gt;
 				&lt;/rdf:Description&gt;
 			</pre>
@@ -236,10 +232,10 @@
           <div><b>Example</b></div>
 		  <div class="exampleOuter">
 			<pre class="example">
-                &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#e2"&gt;
+                &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#e2"&gt;
                   &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Entity"/&gt;
-                  &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile"/&gt;
-                  &lt;cf:hasLocation rdf:resource="http://www.w3.org/PROV/CrimeFile#sharedDirectoryLocation1"/&gt;
+                  &lt;rdf:type rdf:resource="http://www.example.com/crime#CrimeFile"/&gt;
+                  &lt;cf:hasLocation rdf:resource="http://www.example.com/crimeFile#sharedDirectoryLocation1"/&gt;
                   &lt;cf:hasFileContent rdf:datatype="http://www.w3.org/2001/XMLSchema#string"&gt;There was a lot of crime in London last month.&lt;/cf:hasFileContent&gt;                 
                 &lt;/rdf:Description&gt;
 			</pre>
@@ -258,7 +254,7 @@
 		  <p> Example of instances of class ProcessExecution from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are file creation (<i>pe0</i>) and file editing (<i>pe2</i>) . The RDF/XML syntax for asserting that pe2 is an instance of ProcessExecution is given below.		
 		  <div class="exampleOuter">
 			<pre class="example">
-				&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#pe2"&gt;
+				&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#pe2"&gt;
 				    &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/ProcessExecution"/&gt;
 				&lt;/rdf:Description&gt;
 			</pre>
@@ -279,7 +275,7 @@
 		  <p> Example of instances of class Agent from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are <i>Alice</i> and <i>Edith</i>. The RDF/XML syntax for asserting that Alice is an instance of Agent is given below.		
 		  <div class="exampleOuter">
 			<pre class="example">
-				&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#Alice"&gt;
+				&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#Alice"&gt;
 				    &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Agent"/&gt;
 				&lt;/rdf:Description&gt;
 			</pre>
@@ -312,7 +308,7 @@
 		  <p> Example of instances of class Time from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are <i>t</i> and <i>t+1</i>. The RDF/XML syntax for this asserting that t+1 is an instance of Time is given below.		
 		  <div class="exampleOuter">
 			<pre class="example">
-				&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#t+1"&gt;
+				&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#t+1"&gt;
 				    &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Time"/&gt;
 				&lt;/rdf:Description&gt;
 			</pre>
@@ -357,7 +353,7 @@
 		  <div class="exampleOuter">
 			<pre class="example">
             &lt;cf:hasLocation&gt;
-                &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#sharedDirectoryLocation1"&gt;
+                &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#sharedDirectoryLocation1"&gt;
                     &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Location"/&gt;
                     &lt;cf:hasFilePath rdf:datatype="http://www.w3.org/2001/XMLSchema#string"&gt;/share/crime.txt&lt;/cf:hasFilePath&gt;
                 &lt;/rdf:Description&gt;
@@ -379,10 +375,10 @@
 		  <p> Example of instances of class EntityInRole from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are <i>author</i> role assumed by Bob and <i>file creator</i> role assumed by Alice. The RDF/XML syntax for asserting that Bob assumes the role of an author is given below.		
 		  <div class="exampleOuter">
 			<pre class="example">
-				&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#AliceAsAuthor"&gt;
+				&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#AliceAsAuthor"&gt;
 				    &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/EntityInRole"/&gt;
-				    &lt;prov:assumedBy rdf:resource="http://www.w3.org/PROV/CrimeFile#Alice"/&gt;
-				    &lt;prov:assumedRole rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#author"/&gt;
+				    &lt;prov:assumedBy rdf:resource="http://www.example.com/crimeFile#Alice"/&gt;
+				    &lt;prov:assumedRole rdf:resource="http://www.example.com/crime#author"/&gt;
 				&lt;/rdf:Description&gt;
 			</pre>
 		  </div>
@@ -415,13 +411,13 @@
 		  <p> Example of wasGeneratedBy property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>e1 wasGeneratedBy pe0</i>. The RDF/XML syntax for asserting this is given below.		
 		  <div class="exampleOuter">
 			<pre class="example">
-                &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#e1"&gt;
+                &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#e1"&gt;
                     &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Entity"/&gt;
-                    &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile"/&gt;
+                    &lt;rdf:type rdf:resource="http://www.example.com/crime#CrimeFile"/&gt;
                     &lt;prov:wasGeneratedBy&gt;
-                        &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#pe0"&gt;
+                        &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#pe0"&gt;
                             &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/ProcessExecution"/&gt;
-                            &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#FileCreation"/&gt;
+                            &lt;rdf:type rdf:resource="http://www.example.com/crime#FileCreation"/&gt;
                         &lt;/rdf:Description&gt;
                     &lt;prov:wasGeneratedBy&gt;
                 &lt;/rdf:Description&gt;    
@@ -439,8 +435,8 @@
 			<p> Example of wasDerivedFrom property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>e3 wasDerivedFrom e2</i>. The RDF/XML syntax for asserting this is given below.		
 			<div class="exampleOuter">
 				<pre class="example">
-					&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#e3"&gt;
-					    &lt;prov:wasDerivedFrom rdf:resource="http://www.w3.org/PROV/CrimeFile#e2"/&gt;
+					&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#e3"&gt;
+					    &lt;prov:wasDerivedFrom rdf:resource="http://www.example.com/crimeFile#e2"/&gt;
 					&lt;/rdf:Description&gt;	
 				</pre>
 			</div>
@@ -460,8 +456,8 @@
 		  <p> Example of Used property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>pe2 Used e2</i>. The RDF/XML syntax for asserting this is given below.</p>		
 		  <div class="exampleOuter">
 			<pre class="example">
-				&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#pe2"&gt;
-				  	&lt;prov:used rdf:resource="http://www.w3.org/PROV/CrimeFile#e2"/&gt;
+				&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#pe2"&gt;
+				  	&lt;prov:used rdf:resource="http://www.example.com/crimeFile#e2"/&gt;
 				  &lt;/rdf:Description&gt;	
 			</pre>
 		  </div>
@@ -494,10 +490,10 @@
 	 	  <p> Example of wasControlledBy property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>FileAppending</i> (ProcessExecution) <i>wasControlledBy Bob</i>. The RDF/XML syntax for asserting this is given below.		
 		  <div class="exampleOuter">
 			<pre class="example">
-				&lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#pe1"&gt;
+				&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#pe1"&gt;
 				  &lt;prov:wasControlledBy&gt;
-				    &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#Bob"&gt;
-				      &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist"/&gt;
+				    &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#Bob"&gt;
+				      &lt;rdf:type rdf:resource="http://www.example.com/crime#Journalist"/&gt;
 				    &lt;/rdf:Description&gt;
 				  &lt;/prov:wasControlledBy&gt;
 				&lt;/rdf:Description&gt;	
@@ -694,34 +690,34 @@
                     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
                     xmlns:prov="http://www.w3.org/ns/prov-o/"
                     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
-                    xmlns:cf="http://www.w3.org/PROV/CrimeFileOntology.owl#"&gt; 
+                    xmlns:cf="http://www.example.com/crime#"&gt; 
 
-                    &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#e2"&gt;
+                    &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#e2"&gt;
                       &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Entity"/&gt;
-                      &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile"/&gt;
+                      &lt;rdf:type rdf:resource="http://www.example.com/crime#CrimeFile"/&gt;
                       &lt;prov:wasGeneratedBy&gt;
-                      &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#pe1"&gt;
+                      &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#pe1"&gt;
                           &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/ProcessExecution"/&gt;
-                          &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#FileAppending"/&gt;
+                          &lt;rdf:type rdf:resource="http://www.example.com/crime#FileAppending"/&gt;
                           &lt;prov:wasControlledBy&gt;
-                            &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#Bob"&gt;
-                                &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist"/&gt;
+                            &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#Bob"&gt;
+                                &lt;rdf:type rdf:resource="http://www.example.com/crime#Journalist"/&gt;
                             &lt;/rdf:Description&gt;
                           &lt;/prov:wasControlledBy&gt;                        
                       &lt;/rdf:Description&gt;
                       &lt;/prov:wasGeneratedBy&gt;
-                      &lt;prov:wasDerivedFrom rdf:resource="http://www.w3.org/PROV/CrimeFile#e1"/&gt;
+                      &lt;prov:wasDerivedFrom rdf:resource="http://www.example.com/crimeFile#e1"/&gt;
                       &lt;cf:hasLocation&gt;
-                          &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#sharedDirectoryLocation1"&gt;
+                          &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#sharedDirectoryLocation1"&gt;
                               &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Location"/&gt;
                               &lt;cf:hasFilePath rdf:datatype="http://www.w3.org/2001/XMLSchema#string"&gt;/share/crime.txt&lt;/cf:hasFilePath&gt;
                           &lt;/rdf:Description&gt;
                       &lt;/cf:hasLocation&gt; 
                       &lt;cf:hasFileContent rdf:datatype="http://www.w3.org/2001/XMLSchema#string"&gt;There was a lot of crime in London last month.&lt;/cf:hasFileContent&gt;                 
                      &lt;/rdf:Description&gt;
-                     &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#pe2"&gt;
+                     &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#pe2"&gt;
                          &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/ProcessExecution"/&gt;
-                         &lt;prov:used rdf:resource="http://www.w3.org/PROV/CrimeFile#e2"/&gt;
+                         &lt;prov:used rdf:resource="http://www.example.com/crimeFile#e2"/&gt;
                      &lt;/rdf:Description&gt;
                   &lt;/rdf:RDF&gt;
 			</pre>
@@ -734,7 +730,7 @@
 		<p>The cf:Journalist is a specialization of the PROV ontology <a href="#agent">Agent</a> class and models all individuals that participate in creating, editing, and sharing the crime file.The following RDF/XML code illustrates how cf:Journalist is asserted to be a specialization of <a href="#agent">PROV:Agent.</a></p>
 		<div class="exampleOuter">
 			<pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist"&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crime#Journalist"&gt;
 			    &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov-o/Agent"/&gt;
 			  &lt;/rdf:Description&gt;
 			</pre>
@@ -746,7 +742,7 @@
 		</p>
 		<div class="exampleOuter">
 			<pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile"&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crime#CrimeFile"&gt;
 			    &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov-o/Entity"/&gt;
 			  &lt;/rdf:Description&gt;
 			</pre>
@@ -764,7 +760,7 @@
         specialization of the <a href="#processexecution">PROV:ProcessExecution</a> to define class cf:FileCreation (other classes can be similarly defined by using the subClassOf property).</p>
 		<div class="exampleOuter">
 			<pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFileOntology.owl#FileCreation"&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crime#FileCreation"&gt;
 			    &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov-o/ProcessExecution"/&gt;
 			  &lt;/rdf:Description&gt;
 			</pre>
@@ -784,7 +780,7 @@
 		<p>The property cf:hadFilePath is a specialization of the PROV ontology hadLocation object property and links the class CrimeFile to the FileDirectory class. The following RDF/XML code illustrates the use of rdfs:subPropertyOf to create hadFilePath property.</p>
 		<div class="exampleOuter">
 		  <pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFileOntology.owl#hadFilePath"&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crime#hadFilePath"&gt;
 			    &lt;rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov-o/hadLocation"/&gt;
 			  &lt;/rdf:Description&gt;
 		  </pre>
@@ -1324,15 +1320,15 @@
 		</p>
 		<div class="exampleOuter">
 		  <pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#alice"&gt;
-                  &lt;rdf:type rdf:resource="http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist"/&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#alice"&gt;
+                  &lt;rdf:type rdf:resource="http://www.example.com/crime#Journalist"/&gt;
 			  &lt;/rdf:Description&gt;
 		  </pre>
 		</div>
 		<p>and</p> 
 		<div class="exampleOuter">
 		  <pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist"&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crime#Journalist"&gt;
                   &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov-o/Agent"/&gt;
 			  &lt;/rdf:Description&gt;
 			  &lt;rdf:Description rdf:about="http://www.w3.org/ns/prov-o/Agent"&gt;
@@ -1343,7 +1339,7 @@
 		<p>we can infer that</p>
 		<div class="exampleOuter">
 		  <pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#alice"&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#alice"&gt;
                   &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Agent"/&gt;
 			  &lt;/rdf:Description&gt;
 		  </pre>
@@ -1351,7 +1347,7 @@
 		<p>and</p>
 		<div class="exampleOuter">
 		  <pre class="example">
-			  &lt;rdf:Description rdf:about="http://www.w3.org/PROV/CrimeFile#alice"&gt;
+			  &lt;rdf:Description rdf:about="http://www.example.com/crimeFile#alice"&gt;
                   &lt;rdf:type rdf:resource="http://www.w3.org/ns/prov-o/Entity"/&gt;
 			  &lt;/rdf:Description&gt;
 		  </pre>
--- a/ontology/ProvenanceFormalModel.xhtml	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/ProvenanceFormalModel.xhtml	Thu Oct 13 11:12:01 2011 +0100
@@ -492,7 +492,7 @@
 <p> The PROV Ontology Model (also PROV ontology) encodes the PROV Data Model [<cite><a class="bibref" rel="biblioentry" href="#bib-PROV-DM">PROV-DM</a></cite>] in the OWL2 Web Ontology Language (OWL2). The PROV ontology consists of a set of classes, properties, and restrictions that can be used to represent provenance information. The PROV ontology is specialized to create domain-specific provenance ontologies that model the provenance information specific to different applications. The PROV ontology supports a set of entailments based on OWL2 formal semantics and provenance specific inference rules. The PROV ontology is available for download as a separate OWL2 document.</p>
     </div><div class="introductory section" id="sotd"><h2>Status of This Document</h2><p><em>This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the <a href="http://www.w3.org/TR/">W3C technical reports index</a> at http://www.w3.org/TR/.</em></p>
 <p>TODO: <em class="rfc2119" title="must">must</em> include at least one customized paragraph. This section <em class="rfc2119" title="should">should</em> include the title page date (i.e., the one next to the maturity level at the top of the document). These paragraphs <em class="rfc2119" title="should">should</em> explain the publication context, including rationale and relationships to other work. See examples and more discussion in the Manual of Style.<a href="http://www.w3.org/2001/06/manual/#Status">TODO</a></p>
-<p>This document was published by the <a href="http://www.w3.org/2011/prov/wiki/Main_Page">Provenance Working Group</a> as a First Public Working Draft. This document is intended to become a W3C Recommendation. If you wish to make comments regarding this document, please send them to <a href="mailto:public-prov-wg@w3.org">public-prov-wg@w3.org</a> (<a href="mailto:public-prov-wg-request@w3.org?subject=subscribe">subscribe</a>, <a href="http://lists.w3.org/Archives/Public/public-prov-wg/">archives</a>). All feedback is welcome.</p><p>Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February 2004 W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p></div><div id="toc" class="section"><h2 class="introductory">Table of Contents</h2><ul class="toc"><li class="tocline"><a href="#prov-ontology" class="tocxref"><span class="secno">1. </span>PROV Ontology</a><ul class="toc"><li class="tocline"><a href="#owl2-syntax-used-in-this-document" class="tocxref"><span class="secno">1.1 </span>OWL2 Syntax Used in this Document</a></li></ul></li><li class="tocline"><a href="#prov-ontology--classes-and-properties" class="tocxref"><span class="secno">2. </span>PROV Ontology: Classes and Properties</a><ul class="toc"><li class="tocline"><a href="#classes" class="tocxref"><span class="secno">2.1 </span>Classes</a><ul class="toc"><li class="tocline"><a href="#entity" class="tocxref"><span class="secno">2.1.1 </span>Entity</a></li><li class="tocline"><a href="#processexecution" class="tocxref"><span class="secno">2.1.2 </span>ProcessExecution</a></li><li class="tocline"><a href="#agent" class="tocxref"><span class="secno">2.1.3 </span>Agent</a></li><li class="tocline"><a href="#recipe" class="tocxref"><span class="secno">2.1.4 </span>Recipe</a></li><li class="tocline"><a href="#time" class="tocxref"><span class="secno">2.1.5 </span>Time</a></li><li class="tocline"><a href="#revision" class="tocxref"><span class="secno">2.1.6 </span>Revision</a></li><li class="tocline"><a href="#provenancecontainer" class="tocxref"><span class="secno">2.1.7 </span>ProvenanceContainer</a></li><li class="tocline"><a href="#location" class="tocxref"><span class="secno">2.1.8 </span>Location</a></li><li class="tocline"><a href="#entityinrole" class="tocxref"><span class="secno">2.1.9 </span>EntityInRole</a></li></ul></li><li class="tocline"><a href="#object-properties" class="tocxref"><span class="secno">2.2 </span>Object Properties</a><ul class="toc"><li class="tocline"><a href="#wasgeneratedby" class="tocxref"><span class="secno">2.2.1 </span>wasGeneratedBy</a></li><li class="tocline"><a href="#wasderivedfrom" class="tocxref"><span class="secno">2.2.2 </span>wasDerivedFrom</a></li><li class="tocline"><a href="#used" class="tocxref"><span class="secno">2.2.3 </span>Used</a></li><li class="tocline"><a href="#hadparticipant" class="tocxref"><span class="secno">2.2.4 </span>hadParticipant</a></li><li class="tocline"><a href="#wascomplementof" class="tocxref"><span class="secno">2.2.5 </span>wasComplementOf</a></li><li class="tocline"><a href="#wascontrolledby" class="tocxref"><span class="secno">2.2.6 </span>wasControlledBy</a></li><li class="tocline"><a href="#hadrecipe" class="tocxref"><span class="secno">2.2.7 </span>hadRecipe</a></li><li class="tocline"><a href="#wasinformedby" class="tocxref"><span class="secno">2.2.8 </span>wasInformedBy</a></li><li class="tocline"><a href="#wasscheduledafter" class="tocxref"><span class="secno">2.2.9 </span>wasScheduledAfter</a></li></ul></li><li class="tocline"><a href="#characteristics-of-object-properties" class="tocxref"><span class="secno">2.3 </span>Characteristics of Object Properties </a></li><li class="tocline"><a href="#annotation-properties" class="tocxref"><span class="secno">2.4 </span>Annotation Properties</a></li><li class="tocline"><a href="#overview-of-the-ontology" class="tocxref"><span class="secno">2.5 </span>Overview of the ontology</a></li></ul></li><li class="tocline"><a href="#specializing-provenance-ontology-for-domain-specific-provenance-applications" class="tocxref"><span class="secno">3. </span>Specializing Provenance Ontology for Domain-specific Provenance Applications</a><ul class="toc"><li class="tocline"><a href="#modeling-the-crime-file-scenario" class="tocxref"><span class="secno">3.1 </span>Modeling the Crime File Scenario</a><ul class="toc"><li class="tocline"><a href="#specialization-of-prov-ontology-classes" class="tocxref"><span class="secno">3.1.1 </span>Specialization of PROV Ontology Classes</a><ul class="toc"><li class="tocline"><a href="#cf-journalist" class="tocxref"><span class="secno">3.1.1.1 </span>cf:Journalist</a></li><li class="tocline"><a href="#cf-crimefile" class="tocxref"><span class="secno">3.1.1.2 </span>cf:CrimeFile</a></li><li class="tocline"><a href="#cf-filecreation--cf-fileediting--cf-fileappending--cf-emailprocessexecution--cf-spellchecking" class="tocxref"><span class="secno">3.1.1.3 </span>cf:FileCreation, cf:FileEditing, cf:FileAppending, cf:EmailProcessExecution, cf:SpellChecking</a></li></ul></li><li class="tocline"><a href="#specialization-of-prov-ontology-properties" class="tocxref"><span class="secno">3.1.2 </span>Specialization of PROV Ontology Properties</a><ul class="toc"><li class="tocline"><a href="#cf-hadfilepath" class="tocxref"><span class="secno">3.1.2.1 </span>cf:hadFilePath</a></li></ul></li></ul></li><li class="tocline"><a href="#modeling-an-example-scientific-workflow-scenario" class="tocxref"><span class="secno">3.2 </span>Modeling an Example Scientific Workflow Scenario</a><ul class="toc"><li class="tocline"><a href="#workflow-extensions-to-prov-classes" class="tocxref"><span class="secno">3.2.1 </span>Workflow extensions to PROV classes</a></li><li class="tocline"><a href="#workflow-extensions-to-prov-properties" class="tocxref"><span class="secno">3.2.2 </span>Workflow extensions to PROV properties</a></li><li class="tocline"><a href="#workflow-structure" class="tocxref"><span class="secno">3.2.3 </span>Workflow structure</a></li><li class="tocline"><a href="#example-workflow" class="tocxref"><span class="secno">3.2.4 </span>Example workflow</a></li><li class="tocline"><a href="#example-workflow-run" class="tocxref"><span class="secno">3.2.5 </span>Example workflow run</a></li></ul></li></ul></li><li class="tocline"><a href="#formal-semantics-of-the-prov-ontology" class="tocxref"><span class="secno">4. </span>Formal Semantics of the PROV Ontology</a><ul class="toc"><li class="tocline"><a href="#rdf-semantics-for-prov-ontology" class="tocxref"><span class="secno">4.1 </span>RDF Semantics for PROV Ontology</a></li><li class="tocline"><a href="#owl2-semantics-for-prov-ontology" class="tocxref"><span class="secno">4.2 </span>OWL2 Semantics for PROV Ontology</a></li><li class="tocline"><a href="#provenance-specific-entailments-supported-by-prov-ontology" class="tocxref"><span class="secno">4.3 </span>Provenance-specific Entailments Supported by PROV Ontology</a><ul class="toc"><li class="tocline"><a href="#provenance-constraint-on-processexecution" class="tocxref"><span class="secno">4.3.1 </span>Provenance constraint on ProcessExecution</a></li><li class="tocline"><a href="#provenance-constraint-on-wasgeneratedby--generation-affects-attributes" class="tocxref"><span class="secno">4.3.2 </span>Provenance constraint on wasGeneratedBy (generation-affects-attributes)</a></li><li class="tocline"><a href="#provenance-constraint-on-wasgeneratedby--generation-pe-ordering" class="tocxref"><span class="secno">4.3.3 </span>Provenance constraint on wasGeneratedBy (generation-pe-ordering)</a></li><li class="tocline"><a href="#provenance-constraint-on-wasgeneratedby--generation-unicity" class="tocxref"><span class="secno">4.3.4 </span>Provenance constraint on wasGeneratedBy (generation-unicity)</a></li><li class="tocline"><a href="#provenance-constraint-on-used--use-attributes" class="tocxref"><span class="secno">4.3.5 </span>Provenance constraint on Used (use-attributes)</a></li><li class="tocline"><a href="#provenance-constraint-on-used--use-pe-ordering" class="tocxref"><span class="secno">4.3.6 </span>Provenance constraint on Used (use-pe-ordering)</a></li></ul></li></ul></li><li class="tocline"><a href="#acknowledgements" class="tocxref"><span class="secno">A. </span>Acknowledgements</a></li><li class="tocline"><a href="#references" class="tocxref"><span class="secno">B. </span>References</a><ul class="toc"><li class="tocline"><a href="#normative-references" class="tocxref"><span class="secno">B.1 </span>Normative references</a></li><li class="tocline"><a href="#informative-references" class="tocxref"><span class="secno">B.2 </span>Informative references</a></li></ul></li></ul></div>
+<p>This document was published by the <a href="http://www.w3.org/2011/prov/wiki/Main_Page">Provenance Working Group</a> as a First Public Working Draft. This document is intended to become a W3C Recommendation. If you wish to make comments regarding this document, please send them to <a href="mailto:public-prov-wg@w3.org">public-prov-wg@w3.org</a> (<a href="mailto:public-prov-wg-request@w3.org?subject=subscribe">subscribe</a>, <a href="http://lists.w3.org/Archives/Public/public-prov-wg/">archives</a>). All feedback is welcome.</p><p>Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.</p><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February 2004 W3C Patent Policy</a>. W3C maintains a <a rel="disclosure" href="">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p></div><div id="toc" class="section"><h2 class="introductory">Table of Contents</h2><ul class="toc"><li class="tocline"><a href="#prov-ontology" class="tocxref"><span class="secno">1. </span>PROV Ontology</a><ul class="toc"><li class="tocline"><a href="#owl2-syntax-used-in-this-document" class="tocxref"><span class="secno">1.1 </span>OWL2 Syntax Used in this Document</a></li></ul></li><li class="tocline"><a href="#prov-ontology--owl-encoding-of-prov-data-model" class="tocxref"><span class="secno">2. </span>PROV Ontology: Classes and Properties</a><ul class="toc"><li class="tocline"><a href="#classes" class="tocxref"><span class="secno">2.1 </span>Classes</a><ul class="toc"><li class="tocline"><a href="#entity" class="tocxref"><span class="secno">2.1.1 </span>Entity</a></li><li class="tocline"><a href="#processexecution" class="tocxref"><span class="secno">2.1.2 </span>ProcessExecution</a></li><li class="tocline"><a href="#agent" class="tocxref"><span class="secno">2.1.3 </span>Agent</a></li><li class="tocline"><a href="#recipe" class="tocxref"><span class="secno">2.1.4 </span>Recipe</a></li><li class="tocline"><a href="#time" class="tocxref"><span class="secno">2.1.5 </span>Time</a></li><li class="tocline"><a href="#revision" class="tocxref"><span class="secno">2.1.6 </span>Revision</a></li><li class="tocline"><a href="#provenancecontainer" class="tocxref"><span class="secno">2.1.7 </span>ProvenanceContainer</a></li><li class="tocline"><a href="#location" class="tocxref"><span class="secno">2.1.8 </span>Location</a></li><li class="tocline"><a href="#entityinrole" class="tocxref"><span class="secno">2.1.9 </span>EntityInRole</a></li></ul></li><li class="tocline"><a href="#object-properties" class="tocxref"><span class="secno">2.2 </span>Object Properties</a><ul class="toc"><li class="tocline"><a href="#wasgeneratedby" class="tocxref"><span class="secno">2.2.1 </span>wasGeneratedBy</a></li><li class="tocline"><a href="#wasderivedfrom" class="tocxref"><span class="secno">2.2.2 </span>wasDerivedFrom</a></li><li class="tocline"><a href="#used" class="tocxref"><span class="secno">2.2.3 </span>Used</a></li><li class="tocline"><a href="#hadparticipant" class="tocxref"><span class="secno">2.2.4 </span>hadParticipant</a></li><li class="tocline"><a href="#wascomplementof" class="tocxref"><span class="secno">2.2.5 </span>wasComplementOf</a></li><li class="tocline"><a href="#wascontrolledby" class="tocxref"><span class="secno">2.2.6 </span>wasControlledBy</a></li><li class="tocline"><a href="#hadrecipe" class="tocxref"><span class="secno">2.2.7 </span>hadRecipe</a></li><li class="tocline"><a href="#wasinformedby" class="tocxref"><span class="secno">2.2.8 </span>wasInformedBy</a></li><li class="tocline"><a href="#wascheduledafter" class="tocxref"><span class="secno">2.2.9 </span>wasScheduledAfter</a></li></ul></li><li class="tocline"><a href="#characteristics-of-object-properties" class="tocxref"><span class="secno">2.3 </span>Characteristics of Object Properties </a></li><li class="tocline"><a href="#annotation-properties" class="tocxref"><span class="secno">2.4 </span>Annotation Properties</a></li><li class="tocline"><a href="#overview-of-the-ontology" class="tocxref"><span class="secno">2.5 </span>Overview of the ontology</a></li></ul></li><li class="tocline"><a href="#specializing-provenance-ontology-for-domain-specific-provenance-applications" class="tocxref"><span class="secno">3. </span>Specializing Provenance Ontology for Domain-specific Provenance Applications</a><ul class="toc"><li class="tocline"><a href="#moeling-the-crime-file-scenario" class="tocxref"><span class="secno">3.1 </span>Modeling the Crime File Scenario</a><ul class="toc"><li class="tocline"><a href="#specialization-of-prov-ontology-classes" class="tocxref"><span class="secno">3.1.1 </span>Specialization of PROV Ontology Classes</a><ul class="toc"><li class="tocline"><a href="#cf-journalist" class="tocxref"><span class="secno">3.1.1.1 </span>cf:Journalist</a></li><li class="tocline"><a href="#cf-crimefile" class="tocxref"><span class="secno">3.1.1.2 </span>cf:CrimeFile</a></li><li class="tocline"><a href="#cf-filecreation" class="tocxref"><span class="secno">3.1.1.3 </span>cf:FileCreation, cf:FileEditing, cf:FileAppending, cf:EmailProcessExecution, cf:SpellChecking</a></li></ul></li><li class="tocline"><a href="#specialization-of-prov-ontology-properties" class="tocxref"><span class="secno">3.1.2 </span>Specialization of PROV Ontology Properties</a><ul class="toc"><li class="tocline"><a href="#cf-hadfilepath" class="tocxref"><span class="secno">3.1.2.1 </span>cf:hadFilePath</a></li></ul></li></ul></li><li class="tocline"><a href="#modeling-an-example-scientific-workflow-scenario" class="tocxref"><span class="secno">3.2 </span>Modeling an Example Scientific Workflow Scenario</a><ul class="toc"><li class="tocline"><a href="#workflow-extensions-to-prov-classes" class="tocxref"><span class="secno">3.2.1 </span>Workflow extensions to PROV classes</a></li><li class="tocline"><a href="#workflow-extensions-to-prov-properties" class="tocxref"><span class="secno">3.2.2 </span>Workflow extensions to PROV properties</a></li><li class="tocline"><a href="#workflow-structure" class="tocxref"><span class="secno">3.2.3 </span>Workflow structure</a></li><li class="tocline"><a href="#example-workflow" class="tocxref"><span class="secno">3.2.4 </span>Example workflow</a></li><li class="tocline"><a href="#example-workflow-run" class="tocxref"><span class="secno">3.2.5 </span>Example workflow run</a></li></ul></li></ul></li><li class="tocline"><a href="#formal-semantics-of-the-prov-ontology" class="tocxref"><span class="secno">4. </span>Formal Semantics of the PROV Ontology</a><ul class="toc"><li class="tocline"><a href="#rdf-semantics-for-prov-ontology" class="tocxref"><span class="secno">4.1 </span>RDF Semantics for PROV Ontology</a></li><li class="tocline"><a href="#owl2-semantics-for-prov-ontology" class="tocxref"><span class="secno">4.2 </span>OWL2 Semantics for PROV Ontology</a></li><li class="tocline"><a href="#entailments-supported-by-the-provenance-model" class="tocxref"><span class="secno">4.3 </span>Provenance-specific Entailments Supported by PROV Ontology</a><ul class="toc"><li class="tocline"><a href="#provenance-constraint-on-processexecution" class="tocxref"><span class="secno">4.3.1 </span>Provenance constraint on ProcessExecution</a></li><li class="tocline"><a href="#provenance-constraint-on-wasgeneratedby-generation-affects-attributes" class="tocxref"><span class="secno">4.3.2 </span>Provenance constraint on wasGeneratedBy (generation-affects-attributes)</a></li><li class="tocline"><a href="#provenance-constraint-on-wasgeneratedby-generation-pe-ordering" class="tocxref"><span class="secno">4.3.3 </span>Provenance constraint on wasGeneratedBy (generation-pe-ordering)</a></li><li class="tocline"><a href="#provenance-constraint-on-wasgeneratedby-generation-unicity" class="tocxref"><span class="secno">4.3.4 </span>Provenance constraint on wasGeneratedBy (generation-unicity)</a></li><li class="tocline"><a href="#provenance-constraint-on-used-use-attributes" class="tocxref"><span class="secno">4.3.5 </span>Provenance constraint on Used (use-attributes)</a></li><li class="tocline"><a href="#provenance-constraint-on-used-pe-ordering" class="tocxref"><span class="secno">4.3.6 </span>Provenance constraint on Used (use-pe-ordering)</a></li></ul></li></ul></li><li class="tocline"><a href="#acknowledgements" class="tocxref"><span class="secno">A. </span>Acknowledgements</a></li><li class="tocline"><a href="#references" class="tocxref"><span class="secno">B. </span>References</a><ul class="toc"><li class="tocline"><a href="#normative-references" class="tocxref"><span class="secno">B.1 </span>Normative references</a></li><li class="tocline"><a href="#informative-references" class="tocxref"><span class="secno">B.2 </span>Informative references</a></li></ul></li></ul></div>
    
 
  
@@ -551,19 +551,16 @@
         supported by all OWL2 syntax [<cite><a class="bibref" rel="biblioentry" href="#bib-OWL2-PRIMER">OWL2-PRIMER</a></cite>] to represent the
         PROV ontology. The OWL2 document for the PROV ontology is
         available at [<cite><a class="bibref" rel="biblioentry" href="#bib-PROV-Ontology-Namespace">PROV-Ontology-Namespace</a></cite>], which is also the
-        namespace for the PROV ontology and is denoted by &quot;PROV&quot; and
-        the prefix &quot;prov&quot;.
+        namespace for the PROV ontology and is denoted by 
+        the prefix <code>prov</code>.
 		</p>
-        <div class="issue">The namespace URI for the ontology has not
-        yet been decided, and the examples in this document might
-        therefore not be using consistent namespaces. This is <a href="http://www.w3.org/2011/prov/track/issues/90">ISSUE-90</a></div>
 	  </div>
 	</div> 
 <!--  PROV Ontology  -->
 
 
 
-    <div id="prov-ontology--classes-and-properties" class="section">
+    <div id="prov-ontology--owl-encoding-of-prov-data-model" class="section">
       
 <!-- OddPage -->
 <h2><span class="secno">2. </span>PROV Ontology: Classes and Properties</h2>    	
@@ -592,7 +589,7 @@
 		  <div><b>Example</b></div>
 		  <p> Example of instances of class Entity from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are files with identifiers <i>e1</i> and <i>e2</i>. The RDF/XML syntax for asserting that e1 is an instance of Entity is given below.		
 		  </p><div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#e1&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#e1&quot;&gt;
     &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Entity&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		  </div>		
@@ -606,10 +603,10 @@
           </p>
           <div><b>Example</b></div>
 		  <div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#e2&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#e2&quot;&gt;
   &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Entity&quot;/&gt;
-  &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile&quot;/&gt;
-  &lt;cf:hasLocation rdf:resource=&quot;http://www.w3.org/PROV/CrimeFile#sharedDirectoryLocation1&quot;/&gt;
+  &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#CrimeFile&quot;/&gt;
+  &lt;cf:hasLocation rdf:resource=&quot;http://www.example.com/crimeFile#sharedDirectoryLocation1&quot;/&gt;
   &lt;cf:hasFileContent rdf:datatype=&quot;http://www.w3.org/2001/XMLSchema#string&quot;&gt;There was a lot of crime in London last month.&lt;/cf:hasFileContent&gt;                 
 &lt;/rdf:Description&gt;</pre>
 		  </div>		
@@ -628,7 +625,7 @@
 		  <div><b>Example</b></div>
 		  <p> Example of instances of class ProcessExecution from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are file creation (<i>pe0</i>) and file editing (<i>pe2</i>) . The RDF/XML syntax for asserting that pe2 is an instance of ProcessExecution is given below.		
 		  </p><div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#pe2&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#pe2&quot;&gt;
     &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/ProcessExecution&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		  </div>
@@ -647,7 +644,7 @@
 		  <div><b>Example</b></div>
 		  <p> Example of instances of class Agent from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are <i>Alice</i> and <i>Edith</i>. The RDF/XML syntax for asserting that Alice is an instance of Agent is given below.		
 		  </p><div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#Alice&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#Alice&quot;&gt;
     &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Agent&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		  </div>
@@ -678,7 +675,7 @@
 		  <div><b>Example</b></div>
 		  <p> Example of instances of class Time from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are <i>t</i> and <i>t+1</i>. The RDF/XML syntax for this asserting that t+1 is an instance of Time is given below.		
 		  </p><div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#t+1&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#t+1&quot;&gt;
     &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Time&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		  </div>
@@ -721,7 +718,7 @@
 		  <p> Example of instances of class Location from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is the location of the crime file in the shared directory <i>/share</i> with file path <i>/shared/crime.txt</i>. The RDF/XML syntax for asserting that the location of the crime file is the shared directory.		
 		  </p><div class="exampleOuter">
 			<pre class="example">&lt;cf:hasLocation&gt;
-    &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#sharedDirectoryLocation1&quot;&gt;
+    &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#sharedDirectoryLocation1&quot;&gt;
         &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Location&quot;/&gt;
         &lt;cf:hasFilePath rdf:datatype=&quot;http://www.w3.org/2001/XMLSchema#string&quot;&gt;/share/crime.txt&lt;/cf:hasFilePath&gt;
     &lt;/rdf:Description&gt;
@@ -741,10 +738,10 @@
 		  <div><b>Example</b></div>
 		  <p> Example of instances of class EntityInRole from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> are <i>author</i> role assumed by Bob and <i>file creator</i> role assumed by Alice. The RDF/XML syntax for asserting that Bob assumes the role of an author is given below.		
 		  </p><div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#AliceAsAuthor&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#AliceAsAuthor&quot;&gt;
     &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/EntityInRole&quot;/&gt;
-    &lt;prov:assumedBy rdf:resource=&quot;http://www.w3.org/PROV/CrimeFile#Alice&quot;/&gt;
-    &lt;prov:assumedRole rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#author&quot;/&gt;
+    &lt;prov:assumedBy rdf:resource=&quot;http://www.example.com/crimeFile#Alice&quot;/&gt;
+    &lt;prov:assumedRole rdf:resource=&quot;http://www.example.com/crime#author&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		  </div>
                   <div class="issue">prov:assumedBy and prov:assumedRole
@@ -775,13 +772,13 @@
 		  <div><b>Example</b></div>
 		  <p> Example of wasGeneratedBy property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>e1 wasGeneratedBy pe0</i>. The RDF/XML syntax for asserting this is given below.		
 		  </p><div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#e1&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#e1&quot;&gt;
     &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Entity&quot;/&gt;
-    &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile&quot;/&gt;
+    &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#CrimeFile&quot;/&gt;
     &lt;prov:wasGeneratedBy&gt;
-        &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#pe0&quot;&gt;
+        &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#pe0&quot;&gt;
             &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/ProcessExecution&quot;/&gt;
-            &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#FileCreation&quot;/&gt;
+            &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#FileCreation&quot;/&gt;
         &lt;/rdf:Description&gt;
     &lt;prov:wasGeneratedBy&gt;
 &lt;/rdf:Description&gt;    </pre>
@@ -797,8 +794,8 @@
 			<div><b>Example</b></div>
 			<p> Example of wasDerivedFrom property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>e3 wasDerivedFrom e2</i>. The RDF/XML syntax for asserting this is given below.		
 			</p><div class="exampleOuter">
-				<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#e3&quot;&gt;
-    &lt;prov:wasDerivedFrom rdf:resource=&quot;http://www.w3.org/PROV/CrimeFile#e2&quot;/&gt;
+				<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#e3&quot;&gt;
+    &lt;prov:wasDerivedFrom rdf:resource=&quot;http://www.example.com/crimeFile#e2&quot;/&gt;
 &lt;/rdf:Description&gt;	</pre>
 			</div>
 		  <div class="issue">Should derivation have a time? Which time? This is   <a href="http://www.w3.org/2011/prov/track/issues/43">ISSUE-43</a>.</div>
@@ -816,8 +813,8 @@
 		  <div><b>Example</b></div>
 		  <p> Example of Used property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>pe2 Used e2</i>. The RDF/XML syntax for asserting this is given below.</p>		
 		  <div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#pe2&quot;&gt;
-  	&lt;prov:used rdf:resource=&quot;http://www.w3.org/PROV/CrimeFile#e2&quot;/&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#pe2&quot;&gt;
+  	&lt;prov:used rdf:resource=&quot;http://www.example.com/crimeFile#e2&quot;/&gt;
   &lt;/rdf:Description&gt;	</pre>
 		  </div>
 	    </div>
@@ -848,10 +845,10 @@
 		  <div><b>Example</b></div>
 	 	  <p> Example of wasControlledBy property from the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario"> provenance scenario </a> is <i>FileAppending</i> (ProcessExecution) <i>wasControlledBy Bob</i>. The RDF/XML syntax for asserting this is given below.		
 		  </p><div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#pe1&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#pe1&quot;&gt;
   &lt;prov:wasControlledBy&gt;
-    &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#Bob&quot;&gt;
-      &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist&quot;/&gt;
+    &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#Bob&quot;&gt;
+      &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#Journalist&quot;/&gt;
     &lt;/rdf:Description&gt;
   &lt;/prov:wasControlledBy&gt;
 &lt;/rdf:Description&gt;	</pre>
@@ -886,7 +883,7 @@
 
 
 
-        <div id="wasscheduledafter" class="section">
+        <div id="wascheduledafter" class="section">
           <h4><span class="secno">2.2.9 </span>wasScheduledAfter</h4>
           <p>
           This object property links two instances of ProcessExecution to specify the order in which they took place. Specifically, it is used to specify that a given process execution starts after the end of another process execution.
@@ -1012,7 +1009,7 @@
 	  	<h3><span class="secno">2.5 </span>Overview of the ontology</h3>
 	      <p>The following diagram illustrates the complete PROV ontology schema along with the cardinality restrictions imposed on the properties. </p>
 		  <img alt="Object properties among all classes in the PROV OWL ontology" src="http://www.w3.org/2011/prov/wiki/images/9/9a/Object_Properties_overall_diagram.png" />
-		  <a href="http://dvcs.w3.org/hg/prov/raw-file/34a479f3f5d0/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology.owl.pdf"><img alt="Object properties among all classes in the PROV OWL ontology" src="http://dvcs.w3.org/hg/prov/raw-file/34a479f3f5d0/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology.owl.png" /></a>
+		  <a href="https://dvcs.w3.org/hg/prov/raw-file/34a479f3f5d0/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology.owl.pdf"><img alt="Object properties among all classes in the PROV OWL ontology" src="https://dvcs.w3.org/hg/prov/raw-file/34a479f3f5d0/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology.owl.png" /></a>
       </div>
     </div>
 
@@ -1031,7 +1028,7 @@
 
 
 
-	  <div id="modeling-the-crime-file-scenario" class="section">
+	  <div id="moeling-the-crime-file-scenario" class="section">
 		<h3><span class="secno">3.1 </span>Modeling the Crime File Scenario</h3>
 		<p>The example scenario can be encoded as a <a href="http://www.w3.org/TR/rdf-primer/"> Resource Description Framework (RDF) </a> graph in <a href="">Figure X</a>:</p>
 		<div class="issue">insert figure X</div>
@@ -1048,34 +1045,34 @@
     xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema#&quot;
     xmlns:prov=&quot;http://www.w3.org/ns/prov-o/&quot;
     xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; 
-    xmlns:cf=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#&quot;&gt; 
+    xmlns:cf=&quot;http://www.example.com/crime#&quot;&gt; 
 
-    &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#e2&quot;&gt;
+    &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#e2&quot;&gt;
       &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Entity&quot;/&gt;
-      &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile&quot;/&gt;
+      &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#CrimeFile&quot;/&gt;
       &lt;prov:wasGeneratedBy&gt;
-      &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#pe1&quot;&gt;
+      &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#pe1&quot;&gt;
           &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/ProcessExecution&quot;/&gt;
-          &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#FileAppending&quot;/&gt;
+          &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#FileAppending&quot;/&gt;
           &lt;prov:wasControlledBy&gt;
-            &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#Bob&quot;&gt;
-                &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist&quot;/&gt;
+            &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#Bob&quot;&gt;
+                &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#Journalist&quot;/&gt;
             &lt;/rdf:Description&gt;
           &lt;/prov:wasControlledBy&gt;                        
       &lt;/rdf:Description&gt;
       &lt;/prov:wasGeneratedBy&gt;
-      &lt;prov:wasDerivedFrom rdf:resource=&quot;http://www.w3.org/PROV/CrimeFile#e1&quot;/&gt;
+      &lt;prov:wasDerivedFrom rdf:resource=&quot;http://www.example.com/crimeFile#e1&quot;/&gt;
       &lt;cf:hasLocation&gt;
-          &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#sharedDirectoryLocation1&quot;&gt;
+          &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#sharedDirectoryLocation1&quot;&gt;
               &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Location&quot;/&gt;
               &lt;cf:hasFilePath rdf:datatype=&quot;http://www.w3.org/2001/XMLSchema#string&quot;&gt;/share/crime.txt&lt;/cf:hasFilePath&gt;
           &lt;/rdf:Description&gt;
       &lt;/cf:hasLocation&gt; 
       &lt;cf:hasFileContent rdf:datatype=&quot;http://www.w3.org/2001/XMLSchema#string&quot;&gt;There was a lot of crime in London last month.&lt;/cf:hasFileContent&gt;                 
      &lt;/rdf:Description&gt;
-     &lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#pe2&quot;&gt;
+     &lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#pe2&quot;&gt;
          &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/ProcessExecution&quot;/&gt;
-         &lt;prov:used rdf:resource=&quot;http://www.w3.org/PROV/CrimeFile#e2&quot;/&gt;
+         &lt;prov:used rdf:resource=&quot;http://www.example.com/crimeFile#e2&quot;/&gt;
      &lt;/rdf:Description&gt;
   &lt;/rdf:RDF&gt;</pre>
 			</div>		
@@ -1086,7 +1083,7 @@
 		<h5><span class="secno">3.1.1.1 </span>cf:Journalist</h5>
 		<p>The cf:Journalist is a specialization of the PROV ontology <a href="#agent">Agent</a> class and models all individuals that participate in creating, editing, and sharing the crime file.The following RDF/XML code illustrates how cf:Journalist is asserted to be a specialization of <a href="#agent">PROV:Agent.</a></p>
 		<div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crime#Journalist&quot;&gt;
   &lt;rdfs:subClassOf rdf:resource=&quot;http://www.w3.org/ns/prov-o/Agent&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		</div>
@@ -1096,12 +1093,12 @@
 		<p> The cf:CrimeFile is a specialization of the PROV ontology <a href="#entity">Entity</a> class and it models the the file describing the crime statistics in the <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#a-file-scenario">provenance scenario</a>, including the multiple versions of the file. The following RDF/XML code illustrates how cf:Journalist is asserted to be a specialization of <a href="#entity">PROV:Entity</a>.
 		</p>
 		<div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#CrimeFile&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crime#CrimeFile&quot;&gt;
   &lt;rdfs:subClassOf rdf:resource=&quot;http://www.w3.org/ns/prov-o/Entity&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		</div>
 		</div>			
-		<div id="cf-filecreation--cf-fileediting--cf-fileappending--cf-emailprocessexecution--cf-spellchecking" class="section">
+		<div id="cf-filecreation" class="section">
 		<h5><span class="secno">3.1.1.3 </span>cf:FileCreation, cf:FileEditing, cf:FileAppending, cf:EmailProcessExecution, cf:SpellChecking</h5>	 
 		<p>The classes cf:FileCreation, cf:FileEditing,
         cf:FileAppending, cf:EmailProcessExecution, cf:SpellChecking are
@@ -1110,13 +1107,13 @@
         scenario</a>. The following RDF/XML code illustrates the
         specialization of the <a href="#processexecution">PROV:ProcessExecution</a> to define class cf:FileCreation (other classes can be similarly defined by using the subClassOf property).</p>
 		<div class="exampleOuter">
-			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#FileCreation&quot;&gt;
+			<pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crime#FileCreation&quot;&gt;
   &lt;rdfs:subClassOf rdf:resource=&quot;http://www.w3.org/ns/prov-o/ProcessExecution&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		</div>
 		<p>The following diagram illustrates the above specialization: </p>
          <img alt="New classes (cf:SpellChecking, cf:FileEditing, cf:FileCreation, cf:FileAppending, cf:EmailProcessExecution, cf:Journalist) extend the classes in the PROV OWL Ontology (Entity, Agent, ProcessExecution)." src="http://www.w3.org/2011/prov/wiki/images/5/5d/AlternativeSchema.png" />
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.classes.pdf"><img alt="New classes (cf:SpellChecking, cf:FileEditing, cf:FileCreation, cf:FileAppending, cf:EmailProcessExecution, cf:Journalist) extend the classes in the PROV OWL Ontology (Entity, Agent, ProcessExecution)." src="http://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.classes.png" /></a>
+         <a href="https://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.classes.pdf"><img alt="New classes (cf:SpellChecking, cf:FileEditing, cf:FileCreation, cf:FileAppending, cf:EmailProcessExecution, cf:Journalist) extend the classes in the PROV OWL Ontology (Entity, Agent, ProcessExecution)." src="https://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.classes.png" /></a>
          <br />         
          <em>Example extension of PROV ontology in order to describe the crime file scenario</em>
 		</div>
@@ -1128,14 +1125,14 @@
 		<h5><span class="secno">3.1.2.1 </span>cf:hadFilePath</h5>
 		<p>The property cf:hadFilePath is a specialization of the PROV ontology hadLocation object property and links the class CrimeFile to the FileDirectory class. The following RDF/XML code illustrates the use of rdfs:subPropertyOf to create hadFilePath property.</p>
 		<div class="exampleOuter">
-		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#hadFilePath&quot;&gt;
+		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crime#hadFilePath&quot;&gt;
   &lt;rdfs:subPropertyOf rdf:resource=&quot;http://www.w3.org/ns/prov-o/hadLocation&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		</div>
 		</div>
 		<p>The following diagram illustrates the above specialization: </p>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.properties.pdf">
-            <img alt="ext:FileCreation, ext:FileAppending, ext:FileEditing, ext:EmailProcessExecution, extSpellChecking extend prov:ProcessExecution; ext:Journalist extends prov:Agent; ext:CrimeFile extends prov:Entity; ext:hadFilePath extends prov:hadLocation and has range prov:Location." src="http://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.properties.png" />
+         <a href="https://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.properties.pdf">
+            <img alt="ext:FileCreation, ext:FileAppending, ext:FileEditing, ext:EmailProcessExecution, extSpellChecking extend prov:ProcessExecution; ext:Journalist extends prov:Agent; ext:CrimeFile extends prov:Entity; ext:hadFilePath extends prov:hadLocation and has range prov:Location." src="https://dvcs.w3.org/hg/prov/raw-file/631b9ae346a0/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.properties.png" />
          </a>
          <br />         
          <em>Example extension of PROV ontology in order to describe the crime file scenario</em>
@@ -1655,13 +1652,13 @@
 		<p>Both the rdfs:subClassOf and rdfsubPropertyOf are transitive properties, hence provenance assertions, in form of RDF triples, using a specialized sub class or sub property can be inferred to be true for their parent class or parent property. For example, in the provenance scenario, though alice and bob are asserted to be individuals of the class Journalist, we can infer that they are also individuals of the PROV ontology class Agent and Entity. Given,						
 		</p>
 		<div class="exampleOuter">
-		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#alice&quot;&gt;
-                  &lt;rdf:type rdf:resource=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist&quot;/&gt;
+		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#alice&quot;&gt;
+                  &lt;rdf:type rdf:resource=&quot;http://www.example.com/crime#Journalist&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		</div>
 		<p>and</p> 
 		<div class="exampleOuter">
-		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFileOntology.owl#Journalist&quot;&gt;
+		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crime#Journalist&quot;&gt;
                   &lt;rdfs:subClassOf rdf:resource=&quot;http://www.w3.org/ns/prov-o/Agent&quot;/&gt;
 &lt;/rdf:Description&gt;
 &lt;rdf:Description rdf:about=&quot;http://www.w3.org/ns/prov-o/Agent&quot;&gt;
@@ -1670,13 +1667,13 @@
 		</div>
 		<p>we can infer that</p>
 		<div class="exampleOuter">
-		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#alice&quot;&gt;
+		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#alice&quot;&gt;
                   &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Agent&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		</div>
 		<p>and</p>
 		<div class="exampleOuter">
-		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.w3.org/PROV/CrimeFile#alice&quot;&gt;
+		  <pre class="example">&lt;rdf:Description rdf:about=&quot;http://www.example.com/crimeFile#alice&quot;&gt;
                   &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/prov-o/Entity&quot;/&gt;
 &lt;/rdf:Description&gt;</pre>
 		</div>		
@@ -1689,7 +1686,7 @@
 		<p>In addition to RDF Semantics, the OWL2 semantics as described in [<cite><a class="bibref" rel="biblioentry" href="#bib-OWL2-DIRECT-SEMANTICS">OWL2-DIRECT-SEMANTICS</a></cite>], [<cite><a class="bibref" rel="biblioentry" href="#bib-OWL2-RDF-BASED-SEMANTICS">OWL2-RDF-BASED-SEMANTICS</a></cite>] are also applicable to PROV ontology. We consider the OWL2 RDF-Based Semantics (since it is a semantics superset of OWL2 Direct Semantics) and specifically the extension of the D-interpretation, which satisfies the constraints for rdf-interpretation, rdfs-interpretation (as defined in previous section), graphs with blank nodes, and interpretation defined for RDF datatypes (see Section 5.1 in RDF Semantics [<cite><a class="bibref" rel="biblioentry" href="#bib-RDF-MT">RDF-MT</a></cite>]). The OWL2 RDF-based semantics introduces the notion of &quot;facets&quot; to constrain datatypes, both the rdf:XMLLiteral defined in the RDF Semantics [<cite><a class="bibref" rel="biblioentry" href="#bib-RDF-MT">RDF-MT</a></cite>] and datatypes defined in the OWL2 Structural Specifications [<cite><a class="bibref" rel="biblioentry" href="#bib-OWL2-SYNTAX">OWL2-SYNTAX</a></cite>]. The OWL2 RDF-based interpretation, also called <b>D-interpretation with facets</b> is a D-interpretation that also satisfies the OWL2 RDF-based semantics called &quot;semantic constraints&quot; (see Section 5 in OWL2 RDF-Based Semantics [<cite><a class="bibref" rel="biblioentry" href="#bib-OWL2-RDF-BASED-SEMANTICS">OWL2-RDF-BASED-SEMANTICS</a></cite>]).  
 		</p>
 	</div>
-	<div id="provenance-specific-entailments-supported-by-prov-ontology" class="section">
+	<div id="entailments-supported-by-the-provenance-model" class="section">
 	<h3><span class="secno">4.3 </span>Provenance-specific Entailments Supported by PROV Ontology</h3>
 	<p>The PROV-DM [<cite><a class="bibref" rel="biblioentry" href="#bib-PROV-DM">PROV-DM</a></cite>] introduces a set of specific constraints applicable to PROV ontology. The following is a list of constraints that will be supported by the PROV ontology and any provenance application that uses the PROV ontology.</p>
 	<div id="provenance-constraint-on-processexecution" class="section">
@@ -1697,28 +1694,28 @@
 	  <p>The PROV-DM describes a constraint on ordering of time (or event) associated with a <a href="#processexecution">ProcessExecution.</a> </p>
   	  <div class="issue">&quot;From a process execution expression, one can infer that the start event precedes the end event of the represented activity.&quot; This is <a href="http://www.w3.org/2011/prov/track/issues/121">ISSUE-121</a></div>
 	</div>
-   	<div id="provenance-constraint-on-wasgeneratedby--generation-affects-attributes" class="section">
+   	<div id="provenance-constraint-on-wasgeneratedby-generation-affects-attributes" class="section">
 	  <h4><span class="secno">4.3.2 </span>Provenance constraint on wasGeneratedBy (generation-affects-attributes)</h4>
 	  <p>The PROV-DM describes a constraint on wasGeneratedBy that associates the values of attributes of an Entity with the ProcessExecution that generated the Entity.</p>
       <div class="issue">&quot;Given a process execution pe, entity e, role r, and optional time t, if the assertion wasGeneratedBy(e,pe,r) or wasGeneratedBy(e,pe,r,t) holds, the values of some of e's attributes are determined by the activity denoted by pe and the entities used by pe. Only some (possibly none) of the attributes values may be determined since, in an open world, not all used entities may have been asserted.&quot; This is <a href="http://www.w3.org/2011/prov/track/issues/122">ISSUE-122 </a> and <a href="http://www.w3.org/2011/prov/track/issues/105">ISSUE-105</a></div>
 	</div>
-	<div id="provenance-constraint-on-wasgeneratedby--generation-pe-ordering" class="section">
+	<div id="provenance-constraint-on-wasgeneratedby-generation-pe-ordering" class="section">
 	  <h4><span class="secno">4.3.3 </span>Provenance constraint on wasGeneratedBy (generation-pe-ordering)</h4>
 	  <p>The second constraint on wasGeneratedBy associates an ordering of events associated with the generation of an Entity instance and the start, end time or event of the PE instance.</p>
 	  <div class="issue">&quot;Given an assertion wasGeneratedBy(x,pe,r) or wasGeneratedBy(x,pe,r,t), one can infer that the generation of the thing denoted by x precedes the end of pe and follows the beginning of pe.&quot; This is <a href="http://www.w3.org/2011/prov/track/issues/122">ISSUE-122</a> and <a href="http://www.w3.org/2011/prov/track/issues/105">ISSUE-105</a></div>
 	</div>
-	<div id="provenance-constraint-on-wasgeneratedby--generation-unicity" class="section">
+	<div id="provenance-constraint-on-wasgeneratedby-generation-unicity" class="section">
 	  <h4><span class="secno">4.3.4 </span>Provenance constraint on wasGeneratedBy (generation-unicity)</h4>
 	  <p>The PROV-DM describes a constraint on wasGeneratedBy that asserts that given an account, only one PE instance can be associated to an Entity instance by the property wasGeneratedBy.</p>
 	<div class="issue">&quot;Given an entity expression denoted by e, two process execution expressions denoted by pe1 and pe2, and two qualifiers q1 and q2, if the expressions wasGeneratedBy(e,pe1,q1) and wasGeneratedBy(e,pe2,q2) exist in the scope of a given account, then pe1=pe2 and q1=q2.&quot; This is <a href="http://www.w3.org/2011/prov/track/issues/105">ISSUE-105</a></div>
 	</div>
-	<div id="provenance-constraint-on-used--use-attributes" class="section">
+	<div id="provenance-constraint-on-used-use-attributes" class="section">
 	  <h4><span class="secno">4.3.5 </span>Provenance constraint on Used (use-attributes)</h4>
 	  <p>A constraint is defined for the Used relation in PROV-DM, that makes it necessary for an attribute-value to be true for an Entity instance linked to a ProcessExecution instance by relation Used.    
 	  </p>
 	  <div class="issue">&quot;Given a process execution expression identified by pe, an entity expression identified by e, a qualifier q, and optional time t, if assertion used(pe,e,q) or used(pe,e,q,t) holds, then the existence of an attribute-value pair in the entity expression identified by e is a pre-condition for the termination of the activity represented by the process execution expression identified by pe.&quot; This is <a href="http://www.w3.org/2011/prov/track/issues/124">ISSUE-124</a></div>
 	</div>	
-    <div id="provenance-constraint-on-used--use-pe-ordering" class="section">
+    <div id="provenance-constraint-on-used-pe-ordering" class="section">
 	  <h4><span class="secno">4.3.6 </span>Provenance constraint on Used (use-pe-ordering)</h4>
 	  <p>The PROV-DM describes a constraint for Used relation, which makes it necessary for an Entity instance e (linked to a ProcessExecution instance pe by Used relation) to be &quot;used&quot; before pe terminates and also the &quot;generation&quot; of e precedes &quot;use&quot; of e.
 	  </p>
--- a/ontology/components/assumedBy/appending-a-file-to-itself.ttl	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/components/assumedBy/appending-a-file-to-itself.ttl	Thu Oct 13 11:12:01 2011 +0100
@@ -3,7 +3,7 @@
 @prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
 @prefix prov: <http://www.w3.org/ns/prov-o/> .
-@prefix ext:  <http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#> .
+@prefix ext:  <http://www.example.com/crime#> .
 @prefix :     <#> .
 
 :Input  rdfs:subClassOf prov:Role .
--- a/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology.owl.rdf.graffle	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology.owl.rdf.graffle	Thu Oct 13 11:12:01 2011 +0100
@@ -19976,7 +19976,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -20043,7 +20043,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -20051,7 +20051,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -20366,7 +20366,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -20433,7 +20433,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -20441,7 +20441,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -25098,7 +25098,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -25165,7 +25165,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -25173,7 +25173,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -25488,7 +25488,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -25555,7 +25555,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -25563,7 +25563,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
--- a/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology_updated_by_Khalid.graffle	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/diagram-history/2011-10-03-tlebo/ProvenanceOntology_updated_by_Khalid.graffle	Thu Oct 13 11:12:01 2011 +0100
@@ -19986,7 +19986,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -20053,7 +20053,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -20061,7 +20061,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -20376,7 +20376,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -20443,7 +20443,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -20451,7 +20451,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -25108,7 +25108,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -25175,7 +25175,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -25183,7 +25183,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -25498,7 +25498,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -25565,7 +25565,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -25573,7 +25573,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -30000,7 +30000,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -30067,7 +30067,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -30075,7 +30075,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
--- a/ontology/examples/ontology-extensions/crime-file/crime.owl	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/examples/ontology-extensions/crime-file/crime.owl	Thu Oct 13 11:12:01 2011 +0100
@@ -8,16 +8,16 @@
     <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
     <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
     <!ENTITY prov "http://www.w3.org/ns/prov-o/" >
-    <!ENTITY crime "http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#" >
+    <!ENTITY crime "http://www.example.com/crime#" >
 ]>
 
 
-<rdf:RDF xmlns="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#"
-     xml:base="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#"
+<rdf:RDF xmlns="http://www.example.com/crime#"
+     xml:base="http://www.example.com/crime#"
      xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
      xmlns:prov="http://www.w3.org/ns/prov-o/"
      xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
-     xmlns:crime="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#"
+     xmlns:crime="http://www.example.com/crime#"
      xmlns:owl="http://www.w3.org/2002/07/owl#"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
      xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
@@ -44,7 +44,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hadFilePath -->
+    <!-- http://www.example.com/crime#hadFilePath -->
 
     <owl:ObjectProperty rdf:about="&crime;hadFilePath">
         <rdfs:range rdf:resource="&prov;Location"/>
@@ -65,7 +65,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hadFileContent -->
+    <!-- http://www.example.com/crime#hadFileContent -->
 
     <owl:DatatypeProperty rdf:about="&crime;hadFileContent">
         <rdfs:domain rdf:resource="&crime;CrimeFile"/>
@@ -108,7 +108,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile -->
+    <!-- http://www.example.com/crime#CrimeFile -->
 
     <owl:Class rdf:about="&crime;CrimeFile">
         <rdfs:subClassOf rdf:resource="&prov;Entity"/>
@@ -116,7 +116,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#EmailProcessExecution -->
+    <!-- http://www.example.com/crime#EmailProcessExecution -->
 
     <owl:Class rdf:about="&crime;EmailProcessExecution">
         <rdfs:subClassOf rdf:resource="&prov;ProcessExecution"/>
@@ -124,7 +124,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileAppending -->
+    <!-- http://www.example.com/crime#FileAppending -->
 
     <owl:Class rdf:about="&crime;FileAppending">
         <rdfs:subClassOf rdf:resource="&prov;ProcessExecution"/>
@@ -132,7 +132,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileCreation -->
+    <!-- http://www.example.com/crime#FileCreation -->
 
     <owl:Class rdf:about="&crime;FileCreation">
         <rdfs:subClassOf rdf:resource="&prov;ProcessExecution"/>
@@ -140,7 +140,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileEditing -->
+    <!-- http://www.example.com/crime#FileEditing -->
 
     <owl:Class rdf:about="&crime;FileEditing">
         <rdfs:subClassOf rdf:resource="&prov;ProcessExecution"/>
@@ -148,7 +148,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#Journalist -->
+    <!-- http://www.example.com/crime#Journalist -->
 
     <owl:Class rdf:about="&crime;Journalist">
         <rdfs:subClassOf rdf:resource="&prov;Agent"/>
@@ -156,7 +156,7 @@
     
 
 
-    <!-- http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#SpellChecking -->
+    <!-- http://www.example.com/crime#SpellChecking -->
 
     <owl:Class rdf:about="&crime;SpellChecking">
         <rdfs:subClassOf rdf:resource="&prov;ProcessExecution"/>
--- a/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.rdf.graffle	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/examples/ontology-extensions/crime-file/diagrams/2011-10-04-tlebo/crime.owl.rdf.graffle	Thu Oct 13 11:12:01 2011 +0100
@@ -452,7 +452,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -519,7 +519,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -527,7 +527,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -1532,7 +1532,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFilePath</string>
+						<string>http://www.example.com/crime#hasFilePath</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -1596,7 +1596,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:ObjectProperty, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFilePath</string>
+						<string>http://www.example.com/crime#hasFilePath</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -1604,7 +1604,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1008</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFilePath</string>
+						<string>http://www.example.com/crime#hasFilePath</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1008</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -1641,7 +1641,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFileContent</string>
+						<string>http://www.example.com/crime#hasFileContent</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -1703,7 +1703,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:DatatypeProperty, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFileContent</string>
+						<string>http://www.example.com/crime#hasFileContent</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -1711,7 +1711,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1009</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFileContent</string>
+						<string>http://www.example.com/crime#hasFileContent</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1009</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -1856,7 +1856,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -1923,7 +1923,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -1931,7 +1931,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -1966,7 +1966,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#EmailProcessExecution</string>
+						<string>http://www.example.com/crime#EmailProcessExecution</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -2039,7 +2039,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#EmailProcessExecution</string>
+						<string>http://www.example.com/crime#EmailProcessExecution</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -2047,7 +2047,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1012</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#EmailProcessExecution</string>
+						<string>http://www.example.com/crime#EmailProcessExecution</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1012</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -2082,7 +2082,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileAppending</string>
+						<string>http://www.example.com/crime#FileAppending</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -2154,7 +2154,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileAppending</string>
+						<string>http://www.example.com/crime#FileAppending</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -2162,7 +2162,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1013</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileAppending</string>
+						<string>http://www.example.com/crime#FileAppending</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1013</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -2197,7 +2197,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileCreation</string>
+						<string>http://www.example.com/crime#FileCreation</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -2269,7 +2269,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileCreation</string>
+						<string>http://www.example.com/crime#FileCreation</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -2277,7 +2277,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1014</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileCreation</string>
+						<string>http://www.example.com/crime#FileCreation</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1014</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -2312,7 +2312,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileEditing</string>
+						<string>http://www.example.com/crime#FileEditing</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -2384,7 +2384,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileEditing</string>
+						<string>http://www.example.com/crime#FileEditing</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -2392,7 +2392,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1015</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileEditing</string>
+						<string>http://www.example.com/crime#FileEditing</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1015</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -2427,7 +2427,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#Journalist</string>
+						<string>http://www.example.com/crime#Journalist</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -2494,7 +2494,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#Journalist</string>
+						<string>http://www.example.com/crime#Journalist</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -2502,7 +2502,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1016</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#Journalist</string>
+						<string>http://www.example.com/crime#Journalist</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1016</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -2537,7 +2537,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#SpellChecking</string>
+						<string>http://www.example.com/crime#SpellChecking</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -2609,7 +2609,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#SpellChecking</string>
+						<string>http://www.example.com/crime#SpellChecking</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -2617,7 +2617,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1017</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#SpellChecking</string>
+						<string>http://www.example.com/crime#SpellChecking</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1017</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -3474,7 +3474,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -3509,7 +3509,7 @@
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
 
 \f0\fs22 \cf0 \expnd0\expndtw0\kerning0
-http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl}</string>
+http://www.example.com/crime}</string>
 						<key>VerticalPad</key>
 						<integer>10</integer>
 					</dict>
@@ -3520,7 +3520,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Ontology, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -3528,7 +3528,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1021</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1021</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -3582,7 +3582,7 @@
 
 \f0\fs22 \cf0 owl:   http://www.w3.org/2002/07/owl#\
 prov:   http://www.w3.org/ns/prov-o/\
-:          http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#}</string>
+:          http://www.example.com/crime#}</string>
 						<key>VerticalPad</key>
 						<integer>2</integer>
 					</dict>
@@ -4079,7 +4079,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -4146,7 +4146,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -4154,7 +4154,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -4624,7 +4624,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -4691,7 +4691,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -4699,7 +4699,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -4734,7 +4734,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#EmailProcessExecution</string>
+						<string>http://www.example.com/crime#EmailProcessExecution</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -4806,7 +4806,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#EmailProcessExecution</string>
+						<string>http://www.example.com/crime#EmailProcessExecution</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -4814,7 +4814,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1012</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#EmailProcessExecution</string>
+						<string>http://www.example.com/crime#EmailProcessExecution</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1012</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -4849,7 +4849,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileAppending</string>
+						<string>http://www.example.com/crime#FileAppending</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -4921,7 +4921,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileAppending</string>
+						<string>http://www.example.com/crime#FileAppending</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -4929,7 +4929,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1013</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileAppending</string>
+						<string>http://www.example.com/crime#FileAppending</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1013</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -4964,7 +4964,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileCreation</string>
+						<string>http://www.example.com/crime#FileCreation</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -5036,7 +5036,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileCreation</string>
+						<string>http://www.example.com/crime#FileCreation</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -5044,7 +5044,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1014</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileCreation</string>
+						<string>http://www.example.com/crime#FileCreation</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1014</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -5079,7 +5079,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileEditing</string>
+						<string>http://www.example.com/crime#FileEditing</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -5151,7 +5151,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileEditing</string>
+						<string>http://www.example.com/crime#FileEditing</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -5159,7 +5159,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1015</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#FileEditing</string>
+						<string>http://www.example.com/crime#FileEditing</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1015</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -5194,7 +5194,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#Journalist</string>
+						<string>http://www.example.com/crime#Journalist</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -5261,7 +5261,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#Journalist</string>
+						<string>http://www.example.com/crime#Journalist</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -5269,7 +5269,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1016</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#Journalist</string>
+						<string>http://www.example.com/crime#Journalist</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1016</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -5304,7 +5304,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#SpellChecking</string>
+						<string>http://www.example.com/crime#SpellChecking</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -5376,7 +5376,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#SpellChecking</string>
+						<string>http://www.example.com/crime#SpellChecking</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -5384,7 +5384,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1017</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#SpellChecking</string>
+						<string>http://www.example.com/crime#SpellChecking</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1017</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -6064,7 +6064,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -6099,7 +6099,7 @@
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
 
 \f0\fs22 \cf0 \expnd0\expndtw0\kerning0
-http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl}</string>
+http://www.example.com/crime}</string>
 						<key>VerticalPad</key>
 						<integer>10</integer>
 					</dict>
@@ -6110,7 +6110,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Ontology, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -6118,7 +6118,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1021</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1021</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -6390,7 +6390,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -6457,7 +6457,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -6465,7 +6465,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -6556,7 +6556,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -6623,7 +6623,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -6631,7 +6631,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -7079,7 +7079,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFilePath</string>
+						<string>http://www.example.com/crime#hasFilePath</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -7143,7 +7143,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:ObjectProperty, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFilePath</string>
+						<string>http://www.example.com/crime#hasFilePath</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -7151,7 +7151,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1008</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFilePath</string>
+						<string>http://www.example.com/crime#hasFilePath</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1008</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -7188,7 +7188,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFileContent</string>
+						<string>http://www.example.com/crime#hasFileContent</string>
 					</dict>
 					<key>Shape</key>
 					<string>FB32DBF3-3D21-4DEA-BC90-FDA705CBC635-13364-000086F7122A8669</string>
@@ -7245,7 +7245,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:DatatypeProperty, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFileContent</string>
+						<string>http://www.example.com/crime#hasFileContent</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -7253,7 +7253,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1009</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#hasFileContent</string>
+						<string>http://www.example.com/crime#hasFileContent</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1009</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -7398,7 +7398,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 					</dict>
 					<key>Shape</key>
 					<string>Circle</string>
@@ -7465,7 +7465,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Class, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -7473,7 +7473,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1011</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#CrimeFile</string>
+						<string>http://www.example.com/crime#CrimeFile</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1011</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
@@ -7751,7 +7751,7 @@
 					<key>Link</key>
 					<dict>
 						<key>url</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 					</dict>
 					<key>Magnets</key>
 					<array>
@@ -7786,7 +7786,7 @@
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
 
 \f0\fs22 \cf0 \expnd0\expndtw0\kerning0
-http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl}</string>
+http://www.example.com/crime}</string>
 						<key>VerticalPad</key>
 						<integer>10</integer>
 					</dict>
@@ -7797,7 +7797,7 @@
 						<key>http://open.vocab.org/terms/curieTypeList</key>
 						<string>owl:Ontology, </string>
 						<key>http://open.vocab.org/terms/depicts</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 						<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
 						<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2011-Oct-04_19-41_1317771673335_ms</string>
 						<key>http://open.vocab.org/terms/originatingVisualForm</key>
@@ -7805,7 +7805,7 @@
 						<key>http://open.vocab.org/terms/vid</key>
 						<string>1021</string>
 						<key>http://open.vocab.org/terms/vid_given</key>
-						<string>http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl</string>
+						<string>http://www.example.com/crime</string>
 						<key>http://open.vocab.org/terms/vid_local_name</key>
 						<string>#visual_form_1021</string>
 						<key>http://open.vocab.org/terms/visualContext</key>
--- a/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl	Thu Oct 13 11:12:01 2011 +0100
@@ -1,66 +1,66 @@
 <?xml version="1.0" encoding="utf-8"?>
 <rdf:RDF
-   xmlns:ext="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#"
+   xmlns:ext="http://www.example.com/crime#"
    xmlns:prov="http://www.w3.org/ns/prov-o/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
-   xmlns="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#">
-  <ext:Journalist rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#alice"/>
-  <ext:Journalist rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#bob"/>
-  <ext:Journalist rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#charles"/>
-  <ext:Journalist rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#david"/>
-  <ext:CrimeFile rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e1">
-    <prov:wasGeneratedBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe0"/>
+   xmlns="http://www.example.com/crimeFile#">
+  <ext:Journalist rdf:about="http://www.example.com/crimeFile#alice"/>
+  <ext:Journalist rdf:about="http://www.example.com/crimeFile#bob"/>
+  <ext:Journalist rdf:about="http://www.example.com/crimeFile#charles"/>
+  <ext:Journalist rdf:about="http://www.example.com/crimeFile#david"/>
+  <ext:CrimeFile rdf:about="http://www.example.com/crimeFile#e1">
+    <prov:wasGeneratedBy rdf:resource="http://www.example.com/crimeFile#pe0"/>
     <ext:hasFileContent rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ext:hasFileContent>
     <ext:hasFilePath rdf:resource="file:///share/crime.txt"/>
   </ext:CrimeFile>
-  <ext:CrimeFile rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e2">
-    <prov:wasDerivedFrom rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e1"/>
-    <prov:wasGeneratedBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe1"/>
+  <ext:CrimeFile rdf:about="http://www.example.com/crimeFile#e2">
+    <prov:wasDerivedFrom rdf:resource="http://www.example.com/crimeFile#e1"/>
+    <prov:wasGeneratedBy rdf:resource="http://www.example.com/crimeFile#pe1"/>
     <ext:hasFileContent rdf:datatype="http://www.w3.org/2001/XMLSchema#string">There was a lot of crime in London last month.</ext:hasFileContent>
     <ext:hasFilePath rdf:resource="file:///share/crime.txt"/>
   </ext:CrimeFile>
-  <ext:CrimeFile rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e3">
-    <prov:wasDerivedFrom rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e2"/>
-    <prov:wasGeneratedBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe3"/>
+  <ext:CrimeFile rdf:about="http://www.example.com/crimeFile#e3">
+    <prov:wasDerivedFrom rdf:resource="http://www.example.com/crimeFile#e2"/>
+    <prov:wasGeneratedBy rdf:resource="http://www.example.com/crimeFile#pe3"/>
     <ext:hasFileContent rdf:datatype="http://www.w3.org/2001/XMLSchema#string">There was a lot of crime in London and New-York last month.</ext:hasFileContent>
     <ext:hasFilePath rdf:resource="file:///share/crime.txt"/>
   </ext:CrimeFile>
-  <ext:CrimeFile rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e4">
-    <prov:wasDerivedFrom rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e2"/>
-    <prov:wasGeneratedBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe2"/>
+  <ext:CrimeFile rdf:about="http://www.example.com/crimeFile#e4">
+    <prov:wasDerivedFrom rdf:resource="http://www.example.com/crimeFile#e2"/>
+    <prov:wasGeneratedBy rdf:resource="http://www.example.com/crimeFile#pe2"/>
     <ext:hasFileContent rdf:datatype="http://www.w3.org/2001/XMLSchema#string">There was a lot of crime in London last month.</ext:hasFileContent>
   </ext:CrimeFile>
-  <ext:CrimeFile rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e5">
-    <prov:wasDerivedFrom rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e3"/>
-    <prov:wasGeneratedBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe4"/>
+  <ext:CrimeFile rdf:about="http://www.example.com/crimeFile#e5">
+    <prov:wasDerivedFrom rdf:resource="http://www.example.com/crimeFile#e3"/>
+    <prov:wasGeneratedBy rdf:resource="http://www.example.com/crimeFile#pe4"/>
     <ext:hasFileContent rdf:datatype="http://www.w3.org/2001/XMLSchema#string">There was a lot of crime in London and New-York last month.</ext:hasFileContent>
   </ext:CrimeFile>
-  <ext:CrimeFile rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e6">
-    <prov:wasDerivedFrom rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e3"/>
-    <prov:wasGeneratedBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe5"/>
+  <ext:CrimeFile rdf:about="http://www.example.com/crimeFile#e6">
+    <prov:wasDerivedFrom rdf:resource="http://www.example.com/crimeFile#e3"/>
+    <prov:wasGeneratedBy rdf:resource="http://www.example.com/crimeFile#pe5"/>
   </ext:CrimeFile>
-  <ext:Journalist rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#edith"/>
-  <ext:FileCreation rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe0">
-    <prov:isControlledBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#alice"/>
+  <ext:Journalist rdf:about="http://www.example.com/crimeFile#edith"/>
+  <ext:FileCreation rdf:about="http://www.example.com/crimeFile#pe0">
+    <prov:isControlledBy rdf:resource="http://www.example.com/crimeFile#alice"/>
   </ext:FileCreation>
-  <ext:FileAppending rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe1">
-    <prov:Used rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e1"/>
-    <prov:isControlledBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#bob"/>
+  <ext:FileAppending rdf:about="http://www.example.com/crimeFile#pe1">
+    <prov:Used rdf:resource="http://www.example.com/crimeFile#e1"/>
+    <prov:isControlledBy rdf:resource="http://www.example.com/crimeFile#bob"/>
   </ext:FileAppending>
-  <ext:EmailProcessExecution rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe2">
-    <prov:Used rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e2"/>
-    <prov:isControlledBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#charles"/>
+  <ext:EmailProcessExecution rdf:about="http://www.example.com/crimeFile#pe2">
+    <prov:Used rdf:resource="http://www.example.com/crimeFile#e2"/>
+    <prov:isControlledBy rdf:resource="http://www.example.com/crimeFile#charles"/>
   </ext:EmailProcessExecution>
-  <ext:FileEditing rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe3">
-    <prov:Used rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e2"/>
-    <prov:isControlledBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#david"/>
+  <ext:FileEditing rdf:about="http://www.example.com/crimeFile#pe3">
+    <prov:Used rdf:resource="http://www.example.com/crimeFile#e2"/>
+    <prov:isControlledBy rdf:resource="http://www.example.com/crimeFile#david"/>
   </ext:FileEditing>
-  <ext:EmailProcessExecution rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe4">
-    <prov:Used rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e3"/>
-    <prov:isControlledBy rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#edith"/>
+  <ext:EmailProcessExecution rdf:about="http://www.example.com/crimeFile#pe4">
+    <prov:Used rdf:resource="http://www.example.com/crimeFile#e3"/>
+    <prov:isControlledBy rdf:resource="http://www.example.com/crimeFile#edith"/>
   </ext:EmailProcessExecution>
-  <ext:SpellChecking rdf:about="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#pe5">
-    <prov:Used rdf:resource="http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#e3"/>
+  <ext:SpellChecking rdf:about="http://www.example.com/crimeFile#pe5">
+    <prov:Used rdf:resource="http://www.example.com/crimeFile#e3"/>
   </ext:SpellChecking>
 </rdf:RDF>
--- a/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.ttl	Thu Oct 13 10:51:42 2011 +0100
+++ b/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.ttl	Thu Oct 13 11:12:01 2011 +0100
@@ -1,8 +1,8 @@
 @prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
 @prefix prov: <http://www.w3.org/ns/prov-o/> .
-@prefix ext:  <http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/crime.owl#> .
-@prefix    :  <http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/examples/ontology-extensions/crime-file/instances/example-1/crime.owl#> .
+@prefix ext:  <http://www.example.com/crime#> .
+@prefix    :  <http://www.example.com/crimeFile#> .
 
 :bob
     a ext:Journalist .