eg 42 book translation
authorTim L <lebot@rpi.edu>
Tue, 25 Sep 2012 19:46:15 -0400
changeset 4482 accf9336c464
parent 4481 e89828e2a81c
child 4484 4d5f38a5edb0
eg 42 book translation
examples/eg-42-frbr-book-translation/document/homepage
examples/eg-42-frbr-book-translation/rdf/eg-42-frbr-book-translation.ttl
ontology/last-call/2012-07-24-for-webmaster/Overview.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-42-frbr-book-translation/document/homepage	Tue Sep 25 19:46:15 2012 -0400
@@ -0,0 +1,2 @@
+http://www.w3.org/2011/prov/wiki/Eg-42-frbr-book-translation
+http://dvcs.w3.org/hg/prov/file/tip/examples/eg-42-frbr-book-translation
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-42-frbr-book-translation/rdf/eg-42-frbr-book-translation.ttl	Tue Sep 25 19:46:15 2012 -0400
@@ -0,0 +1,59 @@
+@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:     <http://www.w3.org/2002/07/owl#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix sd:      <http://www.w3.org/ns/sparql-service-description#> .
+@prefix dcat:    <http://www.w3.org/ns/dcat#> .
+@prefix void:    <http://rdfs.org/ns/void#> .
+@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
+@prefix prov:    <http://www.w3.org/ns/prov#> .
+@prefix ex:      <http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-42-frbr-book-translation/rdf/eg-42-frbr-book-translation.ttl/vocab/#> .
+@prefix :        <http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-42-frbr-book-translation/rdf/eg-42-frbr-book-translation.ttl#> .
+@prefix frbr:    <http://purl.org/vocab/frbr/core#> .
+
+<http://dbpedia.org/resource/The_Glass_Palace> 
+    a frbr:Work;
+    frbr:creator <http://dbpedia.org/resource/Amitav_Ghosh>;   # and subproperty to prov:wasAttributedTo
+    prov:wasAttributedTo [
+        a prov:Attribution;
+        prov:agent <http://dbpedia.org/resource/Amitav_Ghosh>; # prop chain would hit prov:wasAttributedTo Amitav , too.
+        prov:hadRole <http://purl.org/spar/pro/author>;
+    ];
+.
+
+<writing-the-engl-book>
+    a prov:Activity;
+    prov:wasAssociatedWith <http://dbpedia.org/resource/Amitav_Ghosh>;
+    prov:startedAtTime "1999-01-01T08:00:00-04:00"^^xsd:dateTime;
+    prov:endedAtTime "1999-06-30T17:00:00-04:00"^^xsd:dateTime;
+.
+
+<http://isbn-for-engl-book> 
+    a frbr:Expression ;
+    frbr:realizationOf <http://dbpedia.org/resource/The_Glass_Palace> ;
+     frbr:realizer <http://dbpedia.org/resource/Amitav_Ghosh>;   # and subproperty to prov:wasAttributedTo
+    # Assumes that Amitav wrote the words down, which must have happened once for _some_ Expression in order for it to have entered the material world.
+.
+
+<http://isbn-for-french-book>  
+    a frbr:Expression ; 
+    frbr:realizationOf <http://dbpedia.org/resource/The_Glass_Palace> ;
+    prov:wasDerivedFrom <http://isbn-for-engl-book>;
+    frbr:realizer <Luc>;   # and subproperty to prov:wasAttributedTo
+    prov:wasDerivedFrom [
+        a prov:Derivation, ex:Translation; ##### <---- Your new class
+        prov:agent <Luc>;
+        prov:hadActivity <writing-the-french-book>;  #### I corrected your Activity reference to the frenchification activity.
+    ];
+.
+
+<writing-the-french-book>
+    a prov:Activity, ex:TranslationActivity; #### <---- Another new class, if you'd like. 
+    owl:differentFrom <writing-the-engl-book>;
+    prov:wasAssociatedWith <Luc>;
+    prov:startedAtTime "2010-01-01T08:00:00-04:00"^^xsd:dateTime;
+    prov:used <http://isbn-for-engl-book> ;
+    prov:generated <http://isbn-for-french-book>  ;
+    prov:endedAtTime "2010-06-30T17:00:00-04:00"^^xsd:dateTime;
+.
--- a/ontology/last-call/2012-07-24-for-webmaster/Overview.html	Tue Sep 25 12:55:15 2012 +0100
+++ b/ontology/last-call/2012-07-24-for-webmaster/Overview.html	Tue Sep 25 19:46:15 2012 -0400
@@ -1266,7 +1266,7 @@
       <p>This is the third public release of the PROV-DM document.
       This is a Last Call Working Draft. The design is not expected to change significantly, going forward, and now is the key time for external review.</p>
 
-      <p>This specification identifies two  <a href="http://www.w3.org/2005/10/Process-20051014/tr#cfi">features at risk</a>: <a href="#mentionOf">prov:mentionOf</a> and  <a href="#asInBundle">prov:asInBundle</a> might be removed from PROV-O if implementation experience reveals problems with supporting this construct. These two OWL properties are based on the PROV <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-mention">Mentions</a> feature.</p>
+      <p>This specification identifies two  <a href="http://www.w3.org/2005/10/Process-20051014/tr#cfi">features at risk</a>: <a href="#mentionOf">prov:mentionOf</a> and  <a href="#asInBundle">prov:asInBundle</a> might be removed from PROV-O if implementation experience reveals problems with supporting this construct. These two OWL properties are based on the PROV <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention">Mentions</a> feature.</p>
 
 
       <h4 id="prov-family-of-specifications">PROV Family of Specifications</h4>
@@ -1847,7 +1847,7 @@
       <div class="note">
       <p>The <span class="repeated">prov:mentionOf</span> and <span class="repeated">prov:asInBundle</span> properties are &quot;<a href="http://www.w3.org/2005/10/Process-20051014/tr#cfi">at risk</a>&quot; and may be removed from this specification based on feedback. Please send feedback to public-prov-comments@w3.org.</p>
 
-      <p>These two properties are used to encode the PROV-DM's <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-mention">Mention construct</a>, which might be removed from PROV if implementation experience reveals problems with supporting this construct. 
+      <p>These two properties are used to encode the PROV-DM's <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention">Mention construct</a>, which might be removed from PROV if implementation experience reveals problems with supporting this construct. 
       </p></div>
 
       <p>
@@ -2566,7 +2566,7 @@
       </p>
 
       <p>Each PROV-O term in this cross reference links to the corresponding PROV-DM concept. The PROV-DM's table 
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#prov-dm-to-prov-o-and-prov-n">Cross-References to PROV-O and PROV-N</a> 
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#prov-dm-to-prov-o-and-prov-n">Cross-References to PROV-O and PROV-N</a> 
          provides an overview of the correspondences between PROV-O and PROV-DM.
 
       </p>
@@ -2700,7 +2700,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Activity" title="prov-dm">Activity</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Activity" title="prov-dm">Activity</a>      </dd>
     </dl>
   </div>
 
@@ -2769,7 +2769,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-agent" title="prov-dm">agent</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent" title="prov-dm">agent</a>      </dd>
     </dl>
   </div>
 
@@ -2863,7 +2863,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-entity" title="prov-dm">entity</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-entity" title="prov-dm">entity</a>      </dd>
     </dl>
   </div>
 </div>
@@ -2951,7 +2951,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-delegation" title="prov-dm">delegation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-delegation" title="prov-dm">delegation</a>      </dd>
 
       </dl>
     </div>
@@ -3027,7 +3027,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-End" title="prov-dm">End</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-End" title="prov-dm">End</a>      </dd>
 
       </dl>
     </div>
@@ -3103,7 +3103,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Start" title="prov-dm">Start</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Start" title="prov-dm">Start</a>      </dd>
 
       </dl>
     </div>
@@ -3189,7 +3189,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Usage" title="prov-dm">Usage</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Usage" title="prov-dm">Usage</a>      </dd>
 
       </dl>
     </div>
@@ -3270,7 +3270,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Association" title="prov-dm">Association</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association" title="prov-dm">Association</a>      </dd>
 
       </dl>
     </div>
@@ -3360,7 +3360,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribution" title="prov-dm">attribution</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribution" title="prov-dm">attribution</a>      </dd>
 
       </dl>
     </div>
@@ -3457,7 +3457,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Derivation" title="prov-dm">Derivation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Derivation" title="prov-dm">Derivation</a>      </dd>
 
       </dl>
     </div>
@@ -3536,7 +3536,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Generation" title="prov-dm">Generation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation" title="prov-dm">Generation</a>      </dd>
 
       </dl>
     </div>
@@ -3617,7 +3617,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Communication" title="prov-dm">Communication</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Communication" title="prov-dm">Communication</a>      </dd>
 
       </dl>
     </div>
@@ -3817,7 +3817,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-bundle-entity" title="prov-dm">bundle-entity</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-bundle-entity" title="prov-dm">bundle-entity</a>      </dd>
     </dl>
   </div>
 
@@ -3910,7 +3910,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-collection" title="prov-dm">collection</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-collection" title="prov-dm">collection</a>      </dd>
     </dl>
   </div>
 
@@ -4002,7 +4002,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribute-location" title="prov-dm">attribute-location</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-location" title="prov-dm">attribute-location</a>      </dd>
     </dl>
   </div>
 
@@ -4048,7 +4048,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-agent" title="prov-dm">agent</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent" title="prov-dm">agent</a>      </dd>
     </dl>
   </div>
 
@@ -4094,7 +4094,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-agent" title="prov-dm">agent</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent" title="prov-dm">agent</a>      </dd>
     </dl>
   </div>
 
@@ -4142,7 +4142,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-agent" title="prov-dm">agent</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent" title="prov-dm">agent</a>      </dd>
     </dl>
   </div>
 </div>
@@ -4232,7 +4232,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-alternate" title="prov-dm">alternate</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-alternate" title="prov-dm">alternate</a>      </dd>
 
       </dl>
     </div>
@@ -4291,7 +4291,7 @@
       </div>
       <div class="comment  feature-at-risk"><p>The prov:mentionOf and prov:asInBundle properties are &quot;at risk&quot; (http://www.w3.org/2005/10/Process-20051014/tr#cfi) and may be removed from this specification based on feedback. Please send feedback to public-prov-comments@w3.org.
 
-These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </p>
+These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </p>
       </div>
       <dl>
 
@@ -4315,7 +4315,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-mention" title="prov-dm">mention</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention" title="prov-dm">mention</a>      </dd>
 
       </dl>
     </div>
@@ -4390,7 +4390,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribute-location" title="prov-dm">attribute-location</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-location" title="prov-dm">attribute-location</a>      </dd>
 
       </dl>
     </div>
@@ -4466,7 +4466,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Generation" title="prov-dm">Generation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation" title="prov-dm">Generation</a>      </dd>
 
       </dl>
     </div>
@@ -4541,7 +4541,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Generation" title="prov-dm">Generation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation" title="prov-dm">Generation</a>      </dd>
 
       </dl>
     </div>
@@ -4645,7 +4645,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-collection" title="prov-dm">collection</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-collection" title="prov-dm">collection</a>      </dd>
 
       </dl>
     </div>
@@ -4753,7 +4753,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-primary-source" title="prov-dm">primary-source</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-primary-source" title="prov-dm">primary-source</a>      </dd>
 
       </dl>
     </div>
@@ -4818,7 +4818,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-influence" title="prov-dm">influence</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence" title="prov-dm">influence</a>      </dd>
 
       </dl>
     </div>
@@ -4908,7 +4908,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
 
       </dl>
     </div>
@@ -4980,7 +4980,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
 
       </dl>
     </div>
@@ -5041,7 +5041,7 @@
       </div>
       <div class="comment  feature-at-risk"><p>The prov:mentionOf and prov:asInBundle properties are &quot;at risk&quot; (http://www.w3.org/2005/10/Process-20051014/tr#cfi) and may be removed from this specification based on feedback. Please send feedback to public-prov-comments@w3.org.
 
-These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </p>
+These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </p>
       </div>
       <dl>
 
@@ -5074,7 +5074,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-mention" title="prov-dm">mention</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention" title="prov-dm">mention</a>      </dd>
 
       </dl>
     </div>
@@ -5174,7 +5174,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-specialization" title="prov-dm">specialization</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-specialization" title="prov-dm">specialization</a>      </dd>
 
       </dl>
     </div>
@@ -5227,7 +5227,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribute-value" title="prov-dm">attribute-value</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-value" title="prov-dm">attribute-value</a>      </dd>
 
       </dl>
     </div>
@@ -5315,7 +5315,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-End" title="prov-dm">End</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-End" title="prov-dm">End</a>      </dd>
 
       </dl>
     </div>
@@ -5405,7 +5405,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
 
       </dl>
     </div>
@@ -5498,7 +5498,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-quotation" title="prov-dm">quotation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-quotation" title="prov-dm">quotation</a>      </dd>
 
       </dl>
     </div>
@@ -5579,7 +5579,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-revision" title="prov-dm">revision</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-revision" title="prov-dm">revision</a>      </dd>
 
       </dl>
     </div>
@@ -5662,7 +5662,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Start" title="prov-dm">Start</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Start" title="prov-dm">Start</a>      </dd>
 
       </dl>
     </div>
@@ -6039,7 +6039,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Association" title="prov-dm">Association</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association" title="prov-dm">Association</a>      </dd>
     </dl>
   </div>
 
@@ -6120,7 +6120,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribution" title="prov-dm">attribution</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribution" title="prov-dm">attribution</a>      </dd>
     </dl>
   </div>
 
@@ -6187,7 +6187,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Communication" title="prov-dm">Communication</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Communication" title="prov-dm">Communication</a>      </dd>
     </dl>
   </div>
 
@@ -6260,7 +6260,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-delegation" title="prov-dm">delegation</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-delegation" title="prov-dm">delegation</a>      </dd>
     </dl>
   </div>
 
@@ -6364,7 +6364,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Derivation" title="prov-dm">Derivation</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Derivation" title="prov-dm">Derivation</a>      </dd>
     </dl>
   </div>
 
@@ -6435,7 +6435,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-End" title="prov-dm">End</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-End" title="prov-dm">End</a>      </dd>
     </dl>
   </div>
 
@@ -6584,7 +6584,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Generation" title="prov-dm">Generation</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation" title="prov-dm">Generation</a>      </dd>
     </dl>
   </div>
 
@@ -6672,7 +6672,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-influence" title="prov-dm">influence</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence" title="prov-dm">influence</a>      </dd>
     </dl>
   </div>
 
@@ -6825,7 +6825,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
     </dl>
   </div>
 
@@ -6884,7 +6884,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Association" title="prov-dm">Association</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association" title="prov-dm">Association</a>      </dd>
     </dl>
   </div>
 
@@ -6958,7 +6958,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-quotation" title="prov-dm">quotation</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-quotation" title="prov-dm">quotation</a>      </dd>
     </dl>
   </div>
 
@@ -7034,7 +7034,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-revision" title="prov-dm">revision</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-revision" title="prov-dm">revision</a>      </dd>
     </dl>
   </div>
 
@@ -7105,7 +7105,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribute-role" title="prov-dm">attribute-role</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-role" title="prov-dm">attribute-role</a>      </dd>
     </dl>
   </div>
 
@@ -7175,7 +7175,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-primary-source" title="prov-dm">primary-source</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-primary-source" title="prov-dm">primary-source</a>      </dd>
     </dl>
   </div>
 
@@ -7246,7 +7246,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Start" title="prov-dm">Start</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Start" title="prov-dm">Start</a>      </dd>
     </dl>
   </div>
 
@@ -7328,7 +7328,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Usage" title="prov-dm">Usage</a>      </dd>
+        <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Usage" title="prov-dm">Usage</a>      </dd>
     </dl>
   </div>
 </div>
@@ -7694,7 +7694,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Activity" title="prov-dm">Activity</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Activity" title="prov-dm">Activity</a>      </dd>
 
       </dl>
     </div>
@@ -7774,7 +7774,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Generation" title="prov-dm">Generation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation" title="prov-dm">Generation</a>      </dd>
 
       </dl>
     </div>
@@ -7847,7 +7847,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Association" title="prov-dm">Association</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association" title="prov-dm">Association</a>      </dd>
 
       </dl>
     </div>
@@ -7932,7 +7932,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribute-role" title="prov-dm">attribute-role</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-role" title="prov-dm">attribute-role</a>      </dd>
 
       </dl>
     </div>
@@ -7999,7 +7999,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Usage" title="prov-dm">Usage</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Usage" title="prov-dm">Usage</a>      </dd>
 
       </dl>
     </div>
@@ -8087,7 +8087,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-influence" title="prov-dm">influence</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence" title="prov-dm">influence</a>      </dd>
 
       </dl>
     </div>
@@ -8186,7 +8186,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Association" title="prov-dm">Association</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association" title="prov-dm">Association</a>      </dd>
 
       </dl>
     </div>
@@ -8276,7 +8276,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-attribution" title="prov-dm">attribution</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribution" title="prov-dm">attribution</a>      </dd>
 
       </dl>
     </div>
@@ -8367,7 +8367,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Communication" title="prov-dm">Communication</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Communication" title="prov-dm">Communication</a>      </dd>
 
       </dl>
     </div>
@@ -8481,7 +8481,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-delegation" title="prov-dm">delegation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-delegation" title="prov-dm">delegation</a>      </dd>
 
       </dl>
     </div>
@@ -8559,7 +8559,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Derivation" title="prov-dm">Derivation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Derivation" title="prov-dm">Derivation</a>      </dd>
 
       </dl>
     </div>
@@ -8641,7 +8641,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-End" title="prov-dm">End</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-End" title="prov-dm">End</a>      </dd>
 
       </dl>
     </div>
@@ -8720,7 +8720,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Generation" title="prov-dm">Generation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation" title="prov-dm">Generation</a>      </dd>
 
       </dl>
     </div>
@@ -8847,7 +8847,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-influence" title="prov-dm">influence</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence" title="prov-dm">influence</a>      </dd>
 
       </dl>
     </div>
@@ -8928,7 +8928,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Invalidation" title="prov-dm">Invalidation</a>      </dd>
 
       </dl>
     </div>
@@ -9025,7 +9025,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-quotation" title="prov-dm">quotation</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-quotation" title="prov-dm">quotation</a>      </dd>
 
       </dl>
     </div>
@@ -9105,7 +9105,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-revision" title="prov-dm">revision</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-revision" title="prov-dm">revision</a>      </dd>
 
       </dl>
     </div>
@@ -9193,7 +9193,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-primary-source" title="prov-dm">primary-source</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-primary-source" title="prov-dm">primary-source</a>      </dd>
 
       </dl>
     </div>
@@ -9275,7 +9275,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Start" title="prov-dm">Start</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Start" title="prov-dm">Start</a>      </dd>
 
       </dl>
     </div>
@@ -9357,7 +9357,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-Usage" title="prov-dm">Usage</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Usage" title="prov-dm">Usage</a>      </dd>
 
       </dl>
     </div>
@@ -9471,7 +9471,7 @@
 
       <dt>PROV-DM term</dt>
       <dd>
-         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/releases/WD-prov-dm-20120724/Overview.html#term-influence" title="prov-dm">influence</a>      </dd>
+         <a href="http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence" title="prov-dm">influence</a>      </dd>
 
       </dl>
     </div>