* Merged Tim's changes
authorJames Cheney <jcheney@inf.ed.ac.uk>
Mon, 16 Apr 2012 01:00:56 +0100
changeset 2309 31816209cab0
parent 2308 c3624fe74771 (current diff)
parent 2305 031f743cfc32 (diff)
child 2310 c64963ee1cc2
* Merged Tim's changes
ontology/ProvenanceOntology.owl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/document/homepage	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,2 @@
+http://www.w3.org/2011/prov/wiki/Eg-24-prov-o-html-examples
+http://dvcs.w3.org/hg/prov/file/tip/examples/eg-24-prov-o-html-examples
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/eg-24-prov-o-html-examples.py	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,51 @@
+#!/usr/bin/env python
+# Timothy Lebo
+
+# To install dependencies, see https://github.com/timrdf/DataFAQs/wiki/Errors
+
+import sys
+from surf import *
+
+if len(sys.argv) != 2:
+   print "usage: eg-24-prov-o-html-examples http://some.owl"
+   print
+   print "  http://some.owl      - web URL of the OWL e.g. http://dvcs.w3.org/hg/prov/raw-file/default/ontology/ProvenanceOntology.owl"
+   sys.exit(1)
+
+ont_url   = sys.argv[1] # http://dvcs.w3.org/hg/prov/raw-file/default/ontology/ProvenanceOntology.owl
+
+# as SuRF
+store = Store(reader='rdflib', writer='rdflib', rdflib_store = 'IOMemory')
+session = Session(store)
+store.load_triples(source=ont_url) # From URL
+DatatypeProperties = session.get_class(ns.OWL["DatatypeProperty"])
+ObjectProperties   = session.get_class(ns.OWL["ObjectProperty"])
+Classes            = session.get_class(ns.OWL["Class"])
+
+defaultExample = '''@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
+'''
+
+def handle(term,pre):
+   qname = term.split('#')
+   if qname[0] == 'http://www.w3.org/ns/prov':
+      fileName = 'rdf/'+pre+qname[1]+'.ttl'
+      if os.path.exists(fileName):
+         print fileName + ': exists. Not modifying.'
+      else:
+         print fileName
+         example = open(fileName, 'w')
+         example.write(defaultExample)
+         example.close()
+   
+for owlClass in Classes.all():
+   handle(owlClass.subject,'class_')
+for owlProperty in DatatypeProperties.all():
+   handle(owlProperty.subject,'property_')
+for owlProperty in ObjectProperties.all():
+   handle(owlProperty.subject,'property_')
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Account.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Activity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,15 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+:graduation
+   a prov:Activity, :Graduation;
+   prov:startedAtTime "2012-04-15T13:00:00-04:00"^^xsd:dateTime;
+   prov:used          :ms_smith;
+   prov:generated     :doctor_smith;
+   prov:endedAtTime   "2012-04-15T14:30:00-04:00"^^xsd:dateTime;
+.
+:ms_smith     a prov:Entity .
+:doctor_smith a prov:Entity .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ActivityInvolvement.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Agent.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_AgentInvolvement.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Association.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Attribution.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Collection.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_CollectionInvolvement.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Communication.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Derivation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EmptyCollection.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_End.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Entity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_EntityInvolvement.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Generation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Insertion.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_InstantaneousEvent.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Involvement.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_KeyValuePair.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Location.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Membership.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Note.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Organization.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Person.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Plan.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Quotation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Removal.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Responsibility.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Revision.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Role.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_SoftwareAgent.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Source.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Start.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_StartByActivity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Trace.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Usage.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_actedOnBehalfOf.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_activity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_agent.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_alternateOf.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_atLocation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_atTime.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_collection.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_derivedByInsertionFrom.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_derivedByRemovalFrom.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_endedAtTime.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_entity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_generated.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadActivity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadGeneration.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadOriginalSource.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadPlan.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadQuoted.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadQuoter.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadRole.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadUsage.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hasAnnotation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_inserted.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involved.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involvee.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_key.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_member.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_membership.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedAssociation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedAttribution.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedCommunication.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedDerivation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedEnd.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedGeneration.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInsertion.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedQuotation.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedRemoval.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedResponsibility.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedRevision.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedSource.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedStart.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedStartByActivity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedTrace.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedUsage.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_removedKey.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_specializationOf.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_startedAtTime.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_tracedTo.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_used.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_value.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasAssociatedWith.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasAttributedTo.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasDerivedFrom.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasEndedBy.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasGeneratedBy.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasInformedBy.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasQuotedFrom.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasRevisionOf.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasStartedBy.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasStartedByActivity.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,7 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:  <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix :     <http://example.com/> .
+
+# TODO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/eg-24-prov-o-html-examples.ttl	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,11 @@
+@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 :        <http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-24-prov-o-html-examples/rdf/eg-24-prov-o-html-examples.ttl#> .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/eg-24-prov-o-html-examples.ttl.sd_name	Mon Apr 16 01:00:56 2012 +0100
@@ -0,0 +1,1 @@
+http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-24-prov-o-html-examples/rdf/eg-24-prov-o-html-examples.ttl
--- a/model/examples/w3c-publication1.dot	Mon Apr 16 00:54:20 2012 +0100
+++ b/model/examples/w3c-publication1.dot	Mon Apr 16 01:00:56 2012 +0100
@@ -1,93 +1,93 @@
 digraph OPMGraph { rankdir="BT"; 
-act1 [label="act1",shape="polygon",sides="4"]
-ann0 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
-	<TR>
-	    <TD align="left">type:</TD>
-	    <TD align="left">publish</TD>
-	</TR>
-    </TABLE>>
-,shape="note"]
-ann0 -> act1 [style="dashed",color="gray",arrowhead="none"]
-act2 [label="act2",shape="polygon",sides="4"]
-ann1 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nact1 [label="act1",shape="polygon",sides="4"]
+nann0 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">publish</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann1 -> act2 [style="dashed",color="gray",arrowhead="none"]
-WD_prov_dm_20111018 [label="WD-prov-dm-20111018"]
-ann2 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nann0 -> nact1 [style="dashed",color="gray",arrowhead="none"]
+nact2 [label="act2",shape="polygon",sides="4"]
+nann1 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+	<TR>
+	    <TD align="left">type:</TD>
+	    <TD align="left">publish</TD>
+	</TR>
+    </TABLE>>
+,shape="note"]
+nann1 -> nact2 [style="dashed",color="gray",arrowhead="none"]
+nWD_prov_dm_20111018 [label="WD-prov-dm-20111018"]
+nann2 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">RecsWD</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann2 -> WD_prov_dm_20111018 [style="dashed",color="gray",arrowhead="none"]
-WD_prov_dm_20111215 [label="WD-prov-dm-20111215"]
-ann3 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nann2 -> nWD_prov_dm_20111018 [style="dashed",color="gray",arrowhead="none"]
+nWD_prov_dm_20111215 [label="WD-prov-dm-20111215"]
+nann3 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">RecsWD</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann3 -> WD_prov_dm_20111215 [style="dashed",color="gray",arrowhead="none"]
-rec_advance [label="rec-advance"]
-ann4 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nann3 -> nWD_prov_dm_20111215 [style="dashed",color="gray",arrowhead="none"]
+nrec_advance [label="rec-advance"]
+nann4 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">Plan</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann4 -> rec_advance [style="dashed",color="gray",arrowhead="none"]
-0004 [label="0004"]
-ann5 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nann4 -> nrec_advance [style="dashed",color="gray",arrowhead="none"]
+n2011OctDec_0004 [label="2011OctDec/0004"]
+nann5 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">transreq</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann5 -> 0004 [style="dashed",color="gray",arrowhead="none"]
-0141 [label="0141"]
-ann6 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nann5 -> n2011OctDec_0004 [style="dashed",color="gray",arrowhead="none"]
+n2011Oct_0141 [label="2011Oct/0141"]
+nann6 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">pubreq</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann6 -> 0141 [style="dashed",color="gray",arrowhead="none"]
-0111 [label="0111"]
-ann7 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nann6 -> n2011Oct_0141 [style="dashed",color="gray",arrowhead="none"]
+n2011Dec_0111 [label="2011Dec/0111"]
+nann7 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">pubreq</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann7 -> 0111 [style="dashed",color="gray",arrowhead="none"]
-Consortium [label="Consortium",shape="polygon",sides="8"]
-ann8 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
+nann7 -> n2011Dec_0111 [style="dashed",color="gray",arrowhead="none"]
+nConsortium [label="Consortium",shape="polygon",sides="8"]
+nann8 [color="gray",fontcolor="black",label=<<TABLE cellpadding="0" border="0">
 	<TR>
 	    <TD align="left">type:</TD>
 	    <TD align="left">Organization</TD>
 	</TR>
     </TABLE>>
 ,shape="note"]
-ann8 -> Consortium [style="dashed",color="gray",arrowhead="none"]
-WD_prov_dm_20111215 -> WD_prov_dm_20111018 []
-WD_prov_dm_20111018 -> act1 []
-WD_prov_dm_20111215 -> act2 []
-act1 -> 0004 []
-act1 -> 0141 []
-act2 -> 0111 []
-act1 -> Consortium []
-act1 -> rec_advance []
-act2 -> Consortium []
-act2 -> rec_advance []
+nann8 -> nConsortium [style="dashed",color="gray",arrowhead="none"]
+nWD_prov_dm_20111215 -> nWD_prov_dm_20111018 []
+nWD_prov_dm_20111018 -> nact1 []
+nWD_prov_dm_20111215 -> nact2 []
+nact1 -> n2011OctDec_0004 []
+nact1 -> n2011Oct_0141 []
+nact2 -> n2011Dec_0111 []
+nact1 -> nConsortium []
+nact1 -> nrec_advance []
+nact2 -> nConsortium []
+nact2 -> nrec_advance []
 }
Binary file model/examples/w3c-publication1.pdf has changed
--- a/model/examples/w3c-publication1.pn	Mon Apr 16 00:54:20 2012 +0100
+++ b/model/examples/w3c-publication1.pn	Mon Apr 16 01:00:56 2012 +0100
@@ -2,47 +2,44 @@
 
 container
 
-prefix ex </http://example.org/>
+prefix ex  <http://example.org/>
 
-prefix w3  <http://www.w3.org/>
-prefix tr  <http://www.w3.org/TR/2011/>
-prefix pr  <http://www.w3.org/2005/10/Process-20051014/tr.html#>
-
-prefix ar1 <https://lists.w3.org/Archives/Member/chairs/2011OctDec/>
-prefix ar2 <https://lists.w3.org/Archives/Member/w3c-archive/2011Oct/>
-prefix ar3 <https://lists.w3.org/Archives/Member/w3c-archive/2011Dec/>
+prefix w3      <http://www.w3.org/>
+prefix tr      <http://www.w3.org/TR/2011/>
+prefix process <http://www.w3.org/2005/10/Process-20051014/tr.html#>
+prefix email   <https://lists.w3.org/Archives/Member/w3c-archive/>
+prefix chairs  <https://lists.w3.org/Archives/Member/chairs/>
+prefix trans   <http://www.w3.org/2005/08/01-transitions.html#>
 
 
-entity(tr:WD-prov-dm-20111018, [ prov:type="pr:RecsWD" %% xsd:QName ])
-entity(tr:WD-prov-dm-20111215, [ prov:type="pr:RecsWD" %% xsd:QName ])
-entity(pr:rec-advance,         [ prov:type="prov:Plan" %% xsd:QName ])
+
+entity(tr:WD-prov-dm-20111018, [ prov:type="process:RecsWD" %% xsd:QName ])
+entity(tr:WD-prov-dm-20111215, [ prov:type="process:RecsWD" %% xsd:QName ])
+entity(process:rec-advance,    [ prov:type="prov:Plan"      %% xsd:QName ])
 
 
-entity(ar1:0004, [ prov:type="http://www.w3.org/2005/08/01-transitions.html#transreq" %% xsd:anyURI ])
-entity(ar2:0141, [ prov:type="http://www.w3.org/2005/08/01-transitions.html#pubreq" %% xsd:anyURI ])
-entity(ar3:0111, [ prov:type="http://www.w3.org/2005/08/01-transitions.html#pubreq" %% xsd:anyURI ])
+entity(chairs:2011OctDec/0004, [ prov:type="trans:transreq" %% xsd:QName ])
+entity(email:2011Oct/0141,     [ prov:type="trans:pubreq"   %% xsd:QName ])
+entity(email:2011Dec/0111,     [ prov:type="trans:pubreq"   %% xsd:QName ])
 
 
 wasDerivedFrom(tr:WD-prov-dm-20111215,tr:WD-prov-dm-20111018)
 
 
-activity(ex:act1,[prov:type="publish"])
-activity(ex:act2,[prov:type="publish"])
-
+activity(ex:act1,-,-,[prov:type="publish"])
+activity(ex:act2,-,-,[prov:type="publish"])
 
 wasGeneratedBy(tr:WD-prov-dm-20111018, ex:act1, -)
 wasGeneratedBy(tr:WD-prov-dm-20111215, ex:act2, -)
 
-used(ex:act1,ar1:0004,-)
-used(ex:act1,ar2:0141,-)
-used(ex:act2,ar3:0111,-)
+used(ex:act1,chairs:2011OctDec/0004,-)
+used(ex:act1,email:2011Oct/0141,-)
+used(ex:act2,email:2011Dec/0111,-)
 
 agent(w3:Consortium, [ prov:type="Organization" ])
 
-wasAssociatedWith(ex:act1, w3:Consortium, pr:rec-advance)
-wasAssociatedWith(ex:act2, w3:Consortium, pr:rec-advance)
-
-
+wasAssociatedWith(ex:act1, w3:Consortium, process:rec-advance)
+wasAssociatedWith(ex:act2, w3:Consortium, process:rec-advance)
 
 endContainer
 
Binary file model/examples/w3c-publication1.png has changed
--- a/model/examples/w3c-publication1.prov-xml	Mon Apr 16 00:54:20 2012 +0100
+++ b/model/examples/w3c-publication1.prov-xml	Mon Apr 16 01:00:56 2012 +0100
@@ -1,67 +1,67 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<prov:container xmlns:prov="http://openprovenance.org/prov-xml#" xmlns:pr="http://www.w3.org/2005/10/Process-20051014/tr.html#" xmlns:ar3="https://lists.w3.org/Archives/Member/w3c-archive/2011Dec/" xmlns:ar2="https://lists.w3.org/Archives/Member/w3c-archive/2011Oct/" xmlns:ar1="https://lists.w3.org/Archives/Member/chairs/2011OctDec/" xmlns:w3="http://www.w3.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ex="/http://example.org/" xmlns:tr="http://www.w3.org/TR/2011/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<prov:container xmlns:prov="http://openprovenance.org/prov-xml#" xmlns:process="http://www.w3.org/2005/10/Process-20051014/tr.html#" xmlns:chairs="https://lists.w3.org/Archives/Member/chairs/" xmlns:w3="http://www.w3.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ex="http://example.org/" xmlns:email="https://lists.w3.org/Archives/Member/w3c-archive/" xmlns:tr="http://www.w3.org/TR/2011/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:trans="http://www.w3.org/2005/08/01-transitions.html#">
     <prov:records>
-        <prov:activity prov:id="ex:pub1">
+        <prov:activity prov:id="ex:act1">
             <prov:type xsi:type="xsd:string">publish</prov:type>
         </prov:activity>
-        <prov:activity prov:id="ex:pub2">
+        <prov:activity prov:id="ex:act2">
             <prov:type xsi:type="xsd:string">publish</prov:type>
         </prov:activity>
         <prov:entity prov:id="tr:WD-prov-dm-20111018">
-            <prov:type xsi:type="xsd:QName">pr:RecsWD</prov:type>
+            <prov:type xsi:type="xsd:QName">process:RecsWD</prov:type>
         </prov:entity>
         <prov:entity prov:id="tr:WD-prov-dm-20111215">
-            <prov:type xsi:type="xsd:QName">pr:RecsWD</prov:type>
+            <prov:type xsi:type="xsd:QName">process:RecsWD</prov:type>
         </prov:entity>
-        <prov:entity prov:id="pr:rec-advance">
+        <prov:entity prov:id="process:rec-advance">
             <prov:type xsi:type="xsd:QName">prov:Plan</prov:type>
         </prov:entity>
-        <prov:entity prov:id="ar1:0004">
-            <prov:type xsi:type="xsd:anyURI">http://www.w3.org/2005/08/01-transitions.html#transreq</prov:type>
+        <prov:entity prov:id="chairs:2011OctDec/0004">
+            <prov:type xsi:type="xsd:QName">trans:transreq</prov:type>
         </prov:entity>
-        <prov:entity prov:id="ar2:0141">
-            <prov:type xsi:type="xsd:anyURI">http://www.w3.org/2005/08/01-transitions.html#pubreq</prov:type>
+        <prov:entity prov:id="email:2011Oct/0141">
+            <prov:type xsi:type="xsd:QName">trans:pubreq</prov:type>
         </prov:entity>
-        <prov:entity prov:id="ar3:0111">
-            <prov:type xsi:type="xsd:anyURI">http://www.w3.org/2005/08/01-transitions.html#pubreq</prov:type>
+        <prov:entity prov:id="email:2011Dec/0111">
+            <prov:type xsi:type="xsd:QName">trans:pubreq</prov:type>
         </prov:entity>
         <prov:agent prov:id="w3:Consortium">
             <prov:type xsi:type="xsd:string">Organization</prov:type>
         </prov:agent>
         <prov:dependencies>
             <prov:wasDerivedFrom>
-                <prov:effect prov:ref="tr:WD-prov-dm-20111215"/>
-                <prov:cause prov:ref="tr:WD-prov-dm-20111018"/>
+                <prov:generatedEntity prov:ref="tr:WD-prov-dm-20111215"/>
+                <prov:usedEntity prov:ref="tr:WD-prov-dm-20111018"/>
             </prov:wasDerivedFrom>
             <prov:wasGeneratedBy>
                 <prov:entity prov:ref="tr:WD-prov-dm-20111018"/>
-                <prov:activity prov:ref="ex:pub1"/>
+                <prov:activity prov:ref="ex:act1"/>
             </prov:wasGeneratedBy>
             <prov:wasGeneratedBy>
                 <prov:entity prov:ref="tr:WD-prov-dm-20111215"/>
-                <prov:activity prov:ref="ex:pub2"/>
+                <prov:activity prov:ref="ex:act2"/>
             </prov:wasGeneratedBy>
             <prov:used>
-                <prov:activity prov:ref="ex:pub1"/>
-                <prov:entity prov:ref="ar1:0004"/>
-            </prov:used>
-            <prov:used>
-                <prov:activity prov:ref="ex:pub1"/>
-                <prov:entity prov:ref="ar2:0141"/>
+                <prov:activity prov:ref="ex:act1"/>
+                <prov:entity prov:ref="chairs:2011OctDec/0004"/>
             </prov:used>
             <prov:used>
-                <prov:activity prov:ref="ex:pub2"/>
-                <prov:entity prov:ref="ar3:0111"/>
+                <prov:activity prov:ref="ex:act1"/>
+                <prov:entity prov:ref="email:2011Oct/0141"/>
+            </prov:used>
+            <prov:used>
+                <prov:activity prov:ref="ex:act2"/>
+                <prov:entity prov:ref="email:2011Dec/0111"/>
             </prov:used>
             <prov:wasAssociatedWith>
-                <prov:activity prov:ref="ex:pub1"/>
+                <prov:activity prov:ref="ex:act1"/>
                 <prov:agent prov:ref="w3:Consortium"/>
-                <prov:plan prov:ref="pr:rec-advance"/>
+                <prov:plan prov:ref="process:rec-advance"/>
             </prov:wasAssociatedWith>
             <prov:wasAssociatedWith>
-                <prov:activity prov:ref="ex:pub2"/>
+                <prov:activity prov:ref="ex:act2"/>
                 <prov:agent prov:ref="w3:Consortium"/>
-                <prov:plan prov:ref="pr:rec-advance"/>
+                <prov:plan prov:ref="process:rec-advance"/>
             </prov:wasAssociatedWith>
         </prov:dependencies>
     </prov:records>
Binary file model/images/w3-publication1.png has changed
--- a/model/images/w3-publication1.svg	Mon Apr 16 00:54:20 2012 +0100
+++ b/model/images/w3-publication1.svg	Mon Apr 16 01:00:56 2012 +0100
@@ -435,15 +435,47 @@
      showgrid="false"
      inkscape:zoom="0.87538929"
      inkscape:cx="472.26252"
-     inkscape:cy="947.92591"
-     inkscape:window-x="1280"
-     inkscape:window-y="0"
+     inkscape:cy="945.64121"
+     inkscape:window-x="37"
+     inkscape:window-y="14"
      inkscape:window-maximized="0"
      inkscape:current-layer="g12" /><g
      id="g12"
      inkscape:groupmode="layer"
      inkscape:label="example-graphical"
      transform="matrix(1.25,0,0,-1.25,0,1340)"><g
+   transform="matrix(1,0,0,-1,0.5,1071.5)"
+   id="g636"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path638"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
+     d="m 169.493,381.4978 -60.993,-4e-4" /></g><g
+   transform="matrix(1,0,0,-1,0.5,1071.5)"
+   id="g568"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path570"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
+     d="m 102.5,451.6631 77.037,-10e-5" /></g><g
+   transform="matrix(1,0,0,-1,0.5,1071.5)"
+   id="g572"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path574"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
+     d="M 108.5,240.6891 193.588,240" /></g><g
+   transform="matrix(1,0,0,-1,0.5,1071.5)"
+   id="g982"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path984"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
+     d="M 118.676,171.0001 193.588,171" /></g><g
    id="g14"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
@@ -484,6 +516,7 @@
 
 
 
+
 </g><g
      id="g180"
      transform="matrix(1,0,0,-1,581,832)"><text
@@ -498,6 +531,7 @@
 
 
 
+
 </g><g
      id="g186"
      transform="matrix(1,0,0,-1,581,832)"><text
@@ -511,6 +545,7 @@
 
 
 
+
 </g><g
      id="g192"
      transform="matrix(1,0,0,-1,581,832)"><text
@@ -525,6 +560,7 @@
 
 
 
+
 </g></g><g
    id="g198"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
@@ -562,6 +598,7 @@
 
 
 
+
 </g><g
      id="g226"
      transform="matrix(1,0,0,-1,687.12,723)"><text
@@ -576,6 +613,7 @@
 
 
 
+
 </g><g
      id="g232"
      transform="matrix(1,0,0,-1,687.12,723)"><text
@@ -589,6 +627,7 @@
 
 
 
+
 </g><g
      id="g238"
      transform="matrix(1,0,0,-1,687.12,723)"><text
@@ -603,6 +642,7 @@
 
 
 
+
 </g></g><g
    id="g244"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
@@ -640,6 +680,7 @@
 
 
 
+
 </g></g><g
    id="g272"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
@@ -677,6 +718,7 @@
 
 
 
+
 </g></g><g
    id="g300"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
@@ -700,35 +742,19 @@
      id="path320"
      style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
      d="m 175,333.3316 0,-30.9031 36.456,-15.4285 36.456,15.4285 0,30.9031 -72.912,0 z" /></g><g
-   transform="matrix(1,0,0,-1,211.456,761.8342)"
+   transform="matrix(1,0,0,-1,190.656,757.0342)"
    id="g322"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
    inkscape:export-ydpi="79.550438"><text
    id="text324"
    transform="translate(-12.33691,4.691071)"><tspan
-     id="tspan326"
      sodipodi:role="line"
+     x="0"
+     style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
      y="0"
-     x="0 8.6664 15.3408 21.340799"
-     style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">w3c:</tspan></text>
-
-
-
+     id="tspan3162">Consortium</tspan></text>
 
-</g><g
-   transform="matrix(1,0,0,-1,211.456,761.8342)"
-   id="g328"
-   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
-   inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><text
-   id="text330"
-   transform="translate(-29.34375,18.69107)"><tspan
-     id="tspan332"
-     sodipodi:role="line"
-     y="0"
-     x="0 6 12.6744 19.348801 25.348801 32.023201 36.019199 39.352798 42.019199 48.6936"
-     style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">consortium</tspan></text>
 
 
 
@@ -750,6 +776,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,0.5,1071.5)"
    id="g340"
@@ -789,6 +816,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,0.5,1071.5)"
    id="g356"
@@ -849,11 +877,13 @@
 
 
 
+
 </g><g
    id="g382"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><g
+   inkscape:export-ydpi="79.550438"
+   transform="matrix(1.6055207,0,0,1,-149.51009,0)"><g
      id="g384"
      clip-path="url(#clipPath386)"><g
        id="g390"
@@ -864,7 +894,7 @@
          xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAAAsCAYAAADFP/AjAAAABHNCSVQICAgIfAhkiAAAAJhJREFUaIHt2UsKgDAQA1BHBu9/VxG1fuoFuo1DQt7SVcJMC8V4e+8TsRh8y/v3GHh5VScAcCkWomeK+u4b01w/lyLhUiw0S7XqBACak3IpEj5TLDwpFtkUnx6S6+dSJDQvirM6AYDm+klOSrKU149EHtUJADRL7dUJADQntVUnAMi1OgFALA/33/mRmARLzdUBEFyKhWSpDzeQMLO3hyenAAAAAElFTkSuQmCC"
          mask="url(#mask392)"
          id="image396" /></g></g></g><g
-   transform="matrix(1,0,0,-1,0.5,1071.5)"
+   transform="matrix(1.6112498,0,0,-1,-150.42466,1071.5)"
    id="g400"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
@@ -875,7 +905,8 @@
    id="g424"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><g
+   inkscape:export-ydpi="79.550438"
+   transform="matrix(1.4498154,0,0,1,-104.74428,0)"><g
      id="g426"
      clip-path="url(#clipPath428)"><g
        id="g432"
@@ -886,7 +917,7 @@
          xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAAAsCAYAAADFP/AjAAAABHNCSVQICAgIfAhkiAAAAJhJREFUaIHt2UsKgDAQA1BHBu9/VxG1fuoFuo1DQt7SVcJMC8V4e+8TsRh8y/v3GHh5VScAcCkWomeK+u4b01w/lyLhUiw0S7XqBACak3IpEj5TLDwpFtkUnx6S6+dSJDQvirM6AYDm+klOSrKU149EHtUJADRL7dUJADQntVUnAMi1OgFALA/33/mRmARLzdUBEFyKhWSpDzeQMLO3hyenAAAAAElFTkSuQmCC"
          mask="url(#mask434)"
          id="image438" /></g></g></g><g
-   transform="matrix(1,0,0,-1,0.5,1071.5)"
+   transform="matrix(1.4584373,0,0,-1,-106.25199,1071.5)"
    id="g442"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
@@ -932,6 +963,7 @@
 
 
 
+
 </g><g
    transform="matrix(0.92853512,0.37124457,0.37124457,-0.92853512,314.18707,664.00058)"
    id="g492"
@@ -949,6 +981,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,0.5,1071.5)"
    id="g498"
@@ -998,7 +1031,8 @@
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
    inkscape:export-ydpi="79.550438"
-   style="stroke:#000000;stroke-opacity:1;opacity:1"><g
+   style="stroke:#000000;stroke-opacity:1"
+   transform="matrix(1.1514951,0,0,0.9984068,-36.759277,1.0993102)"><g
      id="g520"
      clip-path="url(#clipPath522)"
      style="stroke:#000000;stroke-opacity:1"><g
@@ -1012,7 +1046,7 @@
          mask="url(#mask528)"
          id="image532"
          style="stroke:#000000;stroke-opacity:1" /></g></g></g><g
-   transform="matrix(1,0,0,-1,205.949,690.5022)"
+   transform="matrix(1,0,0,-1,175.549,684.1022)"
    id="g544"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
@@ -1023,24 +1057,8 @@
      sodipodi:role="line"
      y="0"
      x="0 3.6630001 9.7812004"
-     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">rec</tspan></text>
-
-
-
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">rec-advance</tspan></text>
 
-</g><g
-   transform="matrix(1,0,0,-1,205.949,690.5022)"
-   id="g550"
-   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
-   inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><text
-   id="text552"
-   transform="translate(-20.7942,10)"><tspan
-     id="tspan554"
-     sodipodi:role="line"
-     y="0"
-     x="0 6.1181998 12.2364 17.736401 23.854601 29.972799 35.472801"
-     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">advance</tspan></text>
 
 
 
@@ -1076,23 +1094,8 @@
 
 
 
-</g><g
-   transform="matrix(1,0,0,-1,0.5,1071.5)"
-   id="g568"
-   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
-   inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><path
-     id="path570"
-     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
-     d="m 102.5,451.6631 77.037,-10e-5" /></g><g
-   transform="matrix(1,0,0,-1,0.5,1071.5)"
-   id="g572"
-   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
-   inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><path
-     id="path574"
-     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
-     d="M 108.5,240.6891 193.588,240" /></g><path
+
+</g><path
    id="path576"
    style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
    d="m 108.5,768.5709 c 0,3.359 -1.0287,3.7746 -8.54307,7.0988 l -0.07938,0.0343 c -7.55406,3.359 -7.63263,3.359 -15.38514,3.359 -10.32264,0 -56.99241,0 -56.99241,0 l 0,-35.4582 81,0 0,24.9661 z"
@@ -1124,6 +1127,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,0.5,1071.5)"
    id="g588"
@@ -1163,6 +1167,7 @@
 
 
 
+
 </g><path
    id="path604"
    style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
@@ -1194,6 +1199,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,0.5,1071.5)"
    id="g616"
@@ -1241,15 +1247,8 @@
 
 
 
-</g><g
-   transform="matrix(1,0,0,-1,0.5,1071.5)"
-   id="g636"
-   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
-   inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><path
-     id="path638"
-     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
-     d="m 169.493,381.4978 -60.993,-4e-4" /></g><path
+
+</g><path
    id="path640"
    style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
    d="m 423.791,904.7579 c 0,3.359 -1.1811,3.7746 -9.8087,7.0988 l -0.0912,0.0344 c -8.6731,3.3589 -8.7634,3.3589 -17.6644,3.3589 -11.8519,0 -65.4357,0 -65.4357,0 l 0,-35.4582 93,0 0,24.9661 z"
@@ -1280,6 +1279,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,0.5,1071.5)"
    id="g652"
@@ -1313,6 +1313,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,0.5,1071.5)"
    id="g908"
@@ -1339,7 +1340,8 @@
    id="g918"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><g
+   inkscape:export-ydpi="79.550438"
+   transform="matrix(1.5882201,0,0,1,-145.23837,0)"><g
      id="g920"
      clip-path="url(#clipPath922)"><g
        id="g926"
@@ -1350,7 +1352,7 @@
          xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAAAsCAYAAADFP/AjAAAABHNCSVQICAgIfAhkiAAAAJhJREFUaIHt2UsKgDAQA1BHBu9/VxG1fuoFuo1DQt7SVcJMC8V4e+8TsRh8y/v3GHh5VScAcCkWomeK+u4b01w/lyLhUiw0S7XqBACak3IpEj5TLDwpFtkUnx6S6+dSJDQvirM6AYDm+klOSrKU149EHtUJADRL7dUJADQntVUnAMi1OgFALA/33/mRmARLzdUBEFyKhWSpDzeQMLO3hyenAAAAAElFTkSuQmCC"
          mask="url(#mask928)"
          id="image932" /></g></g></g><g
-   transform="matrix(1,0,0,-1,0.5,1071.5)"
+   transform="matrix(1.5948969,0,0,-1,-146.37008,1071.5)"
    id="g936"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
@@ -1410,15 +1412,8 @@
 
 
 
-</g><g
-   transform="matrix(1,0,0,-1,0.5,1071.5)"
-   id="g982"
-   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
-   inkscape:export-xdpi="79.550438"
-   inkscape:export-ydpi="79.550438"><path
-     id="path984"
-     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0"
-     d="M 118.676,171.0001 193.588,171" /></g><path
+
+</g><path
    id="path986"
    style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
    d="m 545.912,659.0079 c 0,3.359 -1.1811,3.7746 -9.8087,7.0988 l -0.0912,0.0344 c -8.6732,3.3589 -8.7633,3.3589 -17.6644,3.3589 -11.8519,0 -65.4357,0 -65.4357,0 l 0,-35.4582 93,0 0,24.9661 z"
@@ -1449,6 +1444,7 @@
 
 
 
+
 </g><g
    transform="matrix(1,0,0,-1,281.07766,839.66125)"
    id="g998"
@@ -1466,6 +1462,7 @@
 
 
 
+
 </g><path
    id="path1004"
    style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
@@ -1497,6 +1494,7 @@
 
 
 
+
 </g><g
    transform="matrix(0.98458015,-0.17493406,-0.17493406,-0.98458015,396.18065,740.52876)"
    id="g1026"
@@ -1514,6 +1512,7 @@
 
 
 
+
 </g><path
    id="path1036"
    style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
@@ -1583,8 +1582,9 @@
 
 
 
+
 <g
-   transform="matrix(1.3818339,0,0,-1.0353026,-78.772287,1157.6871)"
+   transform="matrix(1.586094,0,0,-1.0353026,-126.32268,1157.6871)"
    id="g442-7"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
@@ -1592,57 +1592,62 @@
      id="path444-6"
      style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
      d="m 224.6248,436.1067 c 10.3144,8.5915 10.3144,22.5211 0,31.1127 -10.3145,8.5915 -27.0375,8.5915 -37.3519,0 -10.3145,-8.5916 -10.3145,-22.5212 0,-31.1127 10.3144,-8.5916 27.0374,-8.5916 37.3519,0" /></g><g
-   transform="matrix(1,0,0,-1,215.2429,902.71014)"
+   transform="matrix(1,0,0,-1,175.2429,901.11014)"
    id="g544-9"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
    inkscape:export-ydpi="79.550438"><text
-     id="text546-3"
-     transform="translate(-7.640396,-2)"><tspan
-       id="tspan548-6"
-       sodipodi:role="line"
-       y="0"
-       x="0"
-       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">ar1:</tspan><tspan
-       sodipodi:role="line"
-       y="13.75"
-       x="0"
-       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
-       id="tspan3196">0004</tspan></text>
+   id="text546-3"
+   transform="translate(-7.640396,-2)"><tspan
+     id="tspan548-6"
+     sodipodi:role="line"
+     y="0"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">2011OctDec/</tspan><tspan
+     sodipodi:role="line"
+     y="13.75"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196">0004</tspan></text>
+
 </g><g
    transform="matrix(1,0,0,-1,212.71986,832.80966)"
    id="g544-9-7"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
    inkscape:export-ydpi="79.550438"><text
-     id="text546-3-9"
-     transform="translate(-7.640396,-2)"><tspan
-       id="tspan548-6-0"
-       sodipodi:role="line"
-       y="0"
-       x="0"
-       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">ar2:</tspan><tspan
-       sodipodi:role="line"
-       y="13.75"
-       x="0"
-       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
-       id="tspan3196-3">0141</tspan></text>
+   id="text546-3-9"
+   x="-31.640398"
+   y="-2"><tspan
+     id="tspan548-6-0"
+     sodipodi:role="line"
+     y="-2"
+     x="-31.640398"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">2011Oct/</tspan><tspan
+     sodipodi:role="line"
+     y="11.75"
+     x="-31.640398"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196-3">0141</tspan></text>
+
 </g><g
    transform="matrix(1,0,0,-1,199.2262,622.53357)"
    id="g544-9-7-7"
    inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
    inkscape:export-xdpi="79.550438"
    inkscape:export-ydpi="79.550438"><text
-     id="text546-3-9-9"
-     transform="translate(-7.640396,-2)"><tspan
-       id="tspan548-6-0-3"
-       sodipodi:role="line"
-       y="0"
-       x="0"
-       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">ar3:</tspan><tspan
-       sodipodi:role="line"
-       y="13.75"
-       x="0"
-       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
-       id="tspan3196-3-9">0111</tspan></text>
+   id="text546-3-9-9"
+   x="-30.0404"
+   y="-0.40000001"><tspan
+     id="tspan548-6-0-3"
+     sodipodi:role="line"
+     y="-0.40000001"
+     x="-30.0404"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">2011Dec/</tspan><tspan
+     sodipodi:role="line"
+     y="13.35"
+     x="-30.0404"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196-3-9">0111</tspan></text>
+
 </g></g></svg>
\ No newline at end of file
--- a/model/prov-dm.html	Mon Apr 16 00:54:20 2012 +0100
+++ b/model/prov-dm.html	Mon Apr 16 01:00:56 2012 +0100
@@ -732,8 +732,81 @@
 
 <p>The World Wide Web Consortium publishes many technical reports. In this example, we consider a technical report, and describe its provenance. 
 Specifically, we consider the second version of the PROV-DM document 
-<a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">http://www.w3.org/TR/2011/WD-prov-dm-20111215</a>. Its provenance can be expressed from several perspectives: first,  provenance is concerned with the W3C process;  second, it takes the authors' viewpoint. Then, attribution of these two provenance descriptions is provided.</p>
-
+<a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">http://www.w3.org/TR/2011/WD-prov-dm-20111215</a>. Its provenance can be expressed from several perspectives: first,  provenance takes the authors' viewpoint; second, it is concerned with the W3C process. Then, attribution of these two provenance descriptions is provided.</p>
+
+
+<section id="section-example-b"> 
+<h3>The Authors View</h3>
+
+
+<p style="font-style:italic; " ><b>Description:</b> A technical report
+is edited by some editor, using contributions from various
+contributors.
+</p>
+
+
+
+<p>In this perspective, provenance of the technical report
+<a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">http://www.w3.org/TR/2011/WD-prov-dm-20111215</a> is concerned with the document editing activity, as perceived by authors.  This kind of information could be used by authors in their CV or in a narrative about this document. </p>
+
+
+
+
+<ul>
+<li> A technical report was involved: <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span>;</li>
+<li> An editing activity for <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> was <span class="name">ex:edit1</span>;</li>
+<li> The report <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> was generated by activity <span class="name">ex:edit1</span>;</li>
+<li> Several persons were associated with activity <span class="name">ex:edit1</span>, some in an editorial role, some in a contributor's role.</li>
+</ul>
+
+<p>We paraphrase some PROV-DM descriptions, and illustrate them with the PROV-N notation.
+Full details of the provenance record can be found <a href="examples/w3c-publication3.pn">here</a>.</p>
+
+<ul>
+<li>There was a technical report, which from the author's perspective was a document in its second version. 
+<pre>
+entity(tr:WD-prov-dm-20111215, [ prov:type="document", ex:version="2" ])
+</pre>
+<p>This description is about the report <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span>. From the author's perspective, the description states: it was a document and it had a version number. </p></li>
+
+<li>There was an editing activity.
+<pre>
+activity(ex:edit1,[prov:type="edit"])
+</pre>
+</li>
+
+<li>The technical report was generated by the editing activity: this was a <a title="concept-generation">Generation</a>.
+<pre>
+wasGeneratedBy(tr:WD-prov-dm-20111215, ex:edit1, -)
+</pre>
+</li>
+
+
+<li>There were some agents.
+<pre>
+agent(ex:Paolo, [ prov:type="Person" ])
+agent(ex:Simon, [ prov:type="Person" ])
+</pre>
+</li>
+
+<li>Agents were assigned various responsibilities in the editing activity: contributor and editor.
+<pre>
+wasAssociatedWith(ex:edit1, ex:Paolo, -, [ prov:role="editor" ])
+wasAssociatedWith(ex:edit1, ex:Simon, -, [ prov:role="contributor" ])
+</pre>
+</li>
+</ul>
+
+
+
+<div style="text-align: center; ">
+  <figure>
+  <img src="images/w3-publication3.png" alt="Provenance of a Tech Report (b)" style="max-width: 98%; "/>
+<figcaption id="prov-tech-report">Figure 3: Provenance of a Tech Report (b)</figcaption>
+  </figure>
+</div>
+
+</section>
 
 <section id="section-example-a"> 
 <h3>The Process View</h3>
@@ -750,33 +823,32 @@
 </p>
 
 <p>
-
-Concretely, in this section, we describe the kind of provenance record that the <a href="http://www.w3.org/Consortium">WWW Consortium</a> could keep for auditors to check that due processes are followed. All entities involved in this example are Web resources, with well defined URIs (some of which refer archived email messages, available to W3C Members).</p>
+We describe the kind of provenance record that the <a href="http://www.w3.org/Consortium">WWW Consortium</a> could keep for auditors to check that due processes are followed. All entities involved in this example are Web resources, with well defined URIs (some of which refer archived email messages, available to W3C Members).</p>
 
 <ul>
-<li> Two versions of the technical report are involved: <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> (second working draft) and <span class="name"><span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018">tr:WD-prov-dm-20111018</a></span></span> (first working draft);</li>
+<li> Two versions of the technical report were involved: <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> (second working draft) and <span class="name"><span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018">tr:WD-prov-dm-20111018</a></span></span> (first working draft);</li>
 <li> Both <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> and <span class="name"><span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018">tr:WD-prov-dm-20111018</a></span></span> were published by the WWW Consortium (<span class="name"><a href="http://www.w3.org/Consortium">w3:Consortium</a></span>); </li>
-<li> The publication activity for <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> is <span class="name">ex:act2</span>;</li>
-<li> The publication activity for <span class="name"><span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018">tr:WD-prov-dm-20111018</a></span></span> is <span class="name">ex:act1</span>;
+<li> The publication activity for <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> was <span class="name">ex:act2</span>;</li>
+<li> The publication activity for <span class="name"><span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018">tr:WD-prov-dm-20111018</a></span></span> was <span class="name">ex:act1</span>;
 </li>
 
-<li> The report <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> is derived from <span class="name"><span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018">tr:WD-prov-dm-20111018</a></span></span>;</li>
-
-<li> The publication activity <span class="name">ex:act1</span> used a <a href="http://www.w3.org/2005/08/01-transitions.html#pubreq">publication request</a> (<span class="name"><a href="https://lists.w3.org/Archives/Member/w3c-archive/2011Oct/0141">ar2:0141</a></span>) and a <a href="http://www.w3.org/2005/08/01-transitions.html#transreq">transition request</a> (<span class="name"><a href="https://lists.w3.org/Archives/Member/chairs/2011OctDec/0004">ar1:0004</a></span>);</li>
-<li> The publication activity <span class="name">ex:act2</span> used a <a href="http://www.w3.org/2005/08/01-transitions.html#pubreq">publication request</a> (<span class="name"><a href="https://lists.w3.org/Archives/Member/w3c-archive/2011Dec/0111">ar3:0111</a></span>);</li>
-<li> Technical reports were published according to the process rules (<span class="name"><a href="http://www.w3.org/2005/10/Process-20051014/tr.html#rec-advance">pr:rec-advance</a></span>), a plan in PROV-DM terminology.</li>
+<li> The report <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> was derived from <span class="name"><span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018">tr:WD-prov-dm-20111018</a></span></span>;</li>
+
+<li> The publication activity <span class="name">ex:act1</span> used a <a href="http://www.w3.org/2005/08/01-transitions.html#pubreq">publication request</a> (<span class="name"><a href="https://lists.w3.org/Archives/Member/w3c-archive/2011Oct/0141">email:2011Oct/0141</a></span>) and a <a href="http://www.w3.org/2005/08/01-transitions.html#transreq">transition request</a> (<span class="name"><a href="https://lists.w3.org/Archives/Member/chairs/2011OctDec/0004">chairs:2011OctDec/0004</a></span>);</li>
+<li> The publication activity <span class="name">ex:act2</span> used a <a href="http://www.w3.org/2005/08/01-transitions.html#pubreq">publication request</a> (<span class="name"><a href="https://lists.w3.org/Archives/Member/w3c-archive/2011Dec/0111">email:2011Dec/0111</a></span>);</li>
+<li> Technical reports were published according to the process rules (<span class="name"><a href="http://www.w3.org/2005/10/Process-20051014/tr.html#rec-advance">process:rec-advance</a></span>), a plan in PROV-DM terminology.</li>
 </ul>
 
 <p>
 We now paraphrase some PROV-DM descriptions, and illustrate them with the PROV-N notation.  We then follow them with a graphical illustration. Full details of the provenance record can be found <a href="examples/w3c-publication1.pn">here</a>.
 
 <ul>
-<li>There is a technical report, a working draft on the recommendation track (<a href="http://www.w3.org/2005/10/Process-20051014/tr.html#RecsWD">pr:RecsWD</a>), which is regarded as an entity so that we can describe its provenance. Similar descriptions exist for all entities.
+<li>There was a technical report, a working draft on the recommendation track (<a href="http://www.w3.org/2005/10/Process-20051014/tr.html#RecsWD">process:RecsWD</a>), which is an entity so that we can describe its provenance. Similar descriptions exist for all entities.
 <pre>
-entity(tr:WD-prov-dm-20111215, [ prov:type="pr:RecsWD" %% xsd:QName ])
+entity(tr:WD-prov-dm-20111215, [ prov:type="process:RecsWD" %% xsd:QName ])
 </pre>
 </li>
-<li>There is a publication activity.
+<li>There was a publication activity.
 <pre>
 activity(ex:act2,[prov:type="publish"])
 </pre>
@@ -797,13 +869,13 @@
 
 <li>The activity required a publication request: this is a <a title="concept-Usage">Usage</a>.
 <pre>
-used(ex:act2, ar3:0111, -)
+used(ex:act2, email:2011Dec/0111, -)
 </pre>
 </li>
 
 <li>The activity was associated with the Consortium agent, and proceeded according to its publication policy: this is an <a title="concept-activityAssociation">Activity Association</a>.
 <pre>
-wasAssociatedWith(ex:act2, w3:Consortium, pr:rec-advance)
+wasAssociatedWith(ex:act2, w3:Consortium, process:rec-advance)
 </pre>
 </li>
 </ul>
@@ -835,78 +907,7 @@
 
 
 </section>
-<section id="section-example-b"> 
-<h3>The Authors View</h3>
-
-
-<p style="font-style:italic; " ><b>Description:</b> A technical report
-is edited by some editor, using contributions from various
-contributors.
-</p>
-
-
-
-<p>Here, we consider another perspective on technical report
-<a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">http://www.w3.org/TR/2011/WD-prov-dm-20111215</a>. Provenance is concerned with the document editing activity, as perceived by authors.  This kind of information could be used by authors in their CV or in a narrative about this document. </p>
-
-
-
-
-<ul>
-<li> The same technical report is involved: <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span>;</li>
-<li> An editing activity for <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> is <span class="name">ex:edit1</span>;</li>
-<li> The report <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span> is generated by activity <span class="name">ex:edit1</span>;</li>
-<li> Several persons are associated with activity <span class="name">ex:edit1</span>, some in an editorial role, some in a contributor's role.</li>
-</ul>
-
-<p>Again, we paraphrase some PROV-DM descriptions, and illustrate them with the PROV-N notation.
-Full details of the provenance record can be found <a href="examples/w3c-publication3.pn">here</a>.</p>
-
-<ul>
-<li>There is a technical report, which from the author's perspective is a document in its second version. 
-<pre>
-entity(tr:WD-prov-dm-20111215, [ prov:type="document", ex:version="2" ])
-</pre>
-<p>This description is about the same report <span class="name"><a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215">tr:WD-prov-dm-20111215</a></span>. From the author's perspective, the description states: it is a document and it has a version number. </p></li>
-
-<li>There is an editing activity.
-<pre>
-activity(ex:edit1,[prov:type="edit"])
-</pre>
-</li>
-
-<li>The technical report was generated by the editing activity: this is a <a title="concept-generation">Generation</a>.
-<pre>
-wasGeneratedBy(tr:WD-prov-dm-20111215, ex:edit1, -)
-</pre>
-</li>
-
-
-<li>There are some agents.
-<pre>
-agent(ex:Paolo, [ prov:type="Person" ])
-agent(ex:Simon, [ prov:type="Person" ])
-</pre>
-</li>
-
-<li>Agents were assigned various responsibilities in the editing activity: contributor and editor.
-<pre>
-wasAssociatedWith(ex:edit1, ex:Paolo, -, [ prov:role="editor" ])
-wasAssociatedWith(ex:edit1, ex:Simon, -, [ prov:role="contributor" ])
-</pre>
-</li>
-</ul>
-
-
-
-<div style="text-align: center; ">
-  <figure>
-  <img src="images/w3-publication3.png" alt="Provenance of a Tech Report (b)" style="max-width: 98%; "/>
-<figcaption id="prov-tech-report">Figure 3: Provenance of a Tech Report (b)</figcaption>
-  </figure>
-</div>
-
-</section>
+
 
 <section id="section-example-c"> 
 <h3>Attribution of Provenance</h3>
@@ -1432,7 +1433,7 @@
 <pre class="codeexample">
 agent(ex:Paolo, [ prov:type="Person" ])
 agent(ex:Simon, [ prov:type="Person" ])
-entity(tr:WD-prov-dm-20111215, [ prov:type="pr:RecsWD" %% xsd:QName ])
+entity(tr:WD-prov-dm-20111215, [ prov:type="process:RecsWD" %% xsd:QName ])
 wasAttributedTo(tr:WD-prov-dm-20111215, ex:Paolo, [prov:role="editor"])
 wasAttributedTo(tr:WD-prov-dm-20111215, ex:Simon, [prov:role="contributor"])
 </pre>
@@ -1651,8 +1652,8 @@
  the report <span class="name">tr:WD-prov-dm-20111018</span>, approved by
 agent  <span class="name">w3:Consortium</span>.
 <pre class="codeexample">
-entity(tr:WD-prov-dm-20111215, [ prov:type="pr:RecsWD" %% xsd:QName ])
-entity(tr:WD-prov-dm-20111018, [ prov:type="pr:RecsWD" %% xsd:QName ])
+entity(tr:WD-prov-dm-20111215, [ prov:type="process:RecsWD" %% xsd:QName ])
+entity(tr:WD-prov-dm-20111018, [ prov:type="process:RecsWD" %% xsd:QName ])
 wasRevisionOf(tr:WD-prov-dm-20111215, tr:WD-prov-dm-20111018, w3:Consortium)
 </pre>
 </div>
@@ -1769,10 +1770,10 @@
 <p>We refer to the example of <a href="#section-example-a">Section 3.1</a>, and specifically to <a href="#prov-tech-report">Figure 3</a>. We can see that there is a path from 
 <span class="name">tr:WD-prov-dm-20111215</span> to 
 <span class="name">w3:Consortium</span> and to
-<span class="name">pr:rec-advance</span>. This is expressed as follows.
+<span class="name">process:rec-advance</span>. This is expressed as follows.
 <pre class="codeexample">
  tracedTo(tr:WD-prov-dm-20111215,w3:Consortium)
- tracedTo(tr:WD-prov-dm-20111215,pr:rec-advance)
+ tracedTo(tr:WD-prov-dm-20111215,process:rec-advance)
 </pre>
 </div>
 
--- a/ontology/ProvenanceOntology.owl	Mon Apr 16 00:54:20 2012 +0100
+++ b/ontology/ProvenanceOntology.owl	Mon Apr 16 01:00:56 2012 +0100
@@ -1300,7 +1300,7 @@
         <rdfs:comment xml:lang="en">Described members of a collection, in the form of key-value pairs. The Membership resource can also be annotated with attributes.</rdfs:comment>
         <prov:category>collections</prov:category>
         <prov:component>collections</prov:component>
-        <prov:unqualifiedForm rdf:resource="&prov;knownMembership"/>
+        <prov:unqualifiedForm rdf:resource="&prov;membership"/>
     </owl:Class>
     
 
--- a/ontology/prov-o-html-sections/description-collections.inc.html	Mon Apr 16 00:54:20 2012 +0100
+++ b/ontology/prov-o-html-sections/description-collections.inc.html	Mon Apr 16 01:00:56 2012 +0100
@@ -56,44 +56,64 @@
            <pre class="example">
 @prefix prov:    &lt;http://www.w3.org/ns/prov#&gt; .
 @prefix xsd:     &lt;http://www.w3.org/2001/XMLSchema#&gt; .
+@prefix :        &lt;http://example.org/&gt; .
 
 :e1 a prov:Entity .
 :e2 a prov:Entity .
-:c a prov:EmptyCollection .
-:c1 a prov:Collection .
-    prov:derivedByInsertionFrom :c ;
-    prov:qualifiedInsertion [ a prov:Insertion ;  
-        prov:collection :c ;
-        prov:inserted [ a prov:KeyValuePair ;
-            prov:key "k1"^^xsd:string ;
-            prov:value :e1 ;
-          ], [ a prov:KeyValuePair ;
-            prov:key "k2"^^xsd:string ;
-            prov:value :e2 ;
-          ]
-      ] .
+:c  a prov:EmptyCollection .
+
+:c1 a prov:Collection;
+   prov:derivedByInsertionFrom :c;
+   prov:qualifiedInsertion [ 
+      a prov:Insertion;
+      prov:collection :c;
+      prov:inserted [ 
+         a prov:KeyValuePair;
+         prov:key   "k1"^^xsd:string;
+         prov:value :e1;
+      ], [ 
+         a prov:KeyValuePair;
+         prov:key   "k2"^^xsd:string;
+         prov:value :e2;
+      ];
+   ];
+.
            </pre>
        </div>
+
+
+
+
        <div class="exampleOuter">
           <p>
           The following example shows how <code>:c3</code> has been derived from
-          <code>:c2</code>, which content is not asserted. The keys
+          <code>:c2</code>, whose content is not asserted. The keys
           <code>"k1"</code> and <code>"k3"</code> and their corresponding
           values have been removed in <code>:c3</code>. 
           </p>
            <pre class="example">
 @prefix prov:    &lt;http://www.w3.org/ns/prov#&gt; .
 @prefix xsd:     &lt;http://www.w3.org/2001/XMLSchema#&gt; .
+@prefix :        &lt;http://example.org/&gt; .
            
 :c2 a prov:Collection .
-:c3 a prov:Collection .
-    prov:derivedByRemovalFrom :c2 ;
-    prov:qualifiedRemoval [ a prov:Removal ;
-         prov:collection :c2 ;
-         prov:removed "k1"^^xsd:string, "k3"^^xsd:string 
-      ] .  
+
+:c3 a prov:Collection;
+   prov:derivedByRemovalFrom :c2;
+   prov:qualifiedRemoval [
+      a prov:Removal;
+      prov:collection :c2;
+      prov:removed    "k1"^^xsd:string,
+                      "k3"^^xsd:string;
+   ];
+.
            </pre>
        </div>
+
+
+
+
+
     <div class="exampleOuter">
        <p>
        The next example shows how the members of
@@ -104,15 +124,22 @@
             <pre class="example">
 @prefix prov:    &lt;http://www.w3.org/ns/prov#&gt; .
 @prefix xsd:     &lt;http://www.w3.org/2001/XMLSchema#&gt; .
+@prefix :        &lt;http://example.org/&gt; .
 
-:c1 prov:knownMembership [ a prov:Membership ;
-    prov:member [ a prov:KeyValuePair;
-        prov:key "k1"^^xsd:string ;
-        prov:value :e1
-      ] , [ a prov:KeyValuePair;
-        prov:key "k2"^^xsd:string ;
-        prov:value :e2
-      ] .
+:c1 
+   prov:knownMembership [ 
+      a prov:Membership;  
+      prov:member [ 
+         a prov:KeyValuePair;
+         prov:key   "k1"^^xsd:string;                                                                                                                
+         prov:value :e1                                                                                                                              
+      ], [ 
+         a prov:KeyValuePair;
+         prov:key   "k2"^^xsd:string;                                                                                                                
+         prov:value :e2                                                                                                   
+      ] 
+   ];
+. 
             </pre>
     </div>
     
--- a/ontology/prov-o-html-sections/description-expanded-terms.inc.html	Mon Apr 16 00:54:20 2012 +0100
+++ b/ontology/prov-o-html-sections/description-expanded-terms.inc.html	Mon Apr 16 01:00:56 2012 +0100
@@ -12,7 +12,7 @@
 *****End comments*********
        -->
 
-        <p>This section defines additional terms to describe provenance at a greater level of specificity (for example, <a href="#Person" class="qname">prov:Person</a> or <a href="#SoftwareAgent" class="qname">prov:SoftwareAgent</a> in place of <a href="#Agent" class="qname">prov:Agent</a>) and with more details (for example, <a href="#Location" class="qname">prov:Location</a> to describe address of a <a href="#Organization" class="qname">prov:Organization</a>). In addition, the new terms in this section facilitate modeling of common provenance assertions related to web resources. For example, different version of a web page can be represented using the <a href="#wasRevisionOf" class="qname">prov:wasRevisionOf</a> property and the <a href="#hadOriginalSource" class="qname">prov:hadOriginalSource</a> property can be used to reference the original source of information used in a web resource. Many of the properties introduced in this section are also "shortcut" notations for combining the PROV-O terms introduced in Section 3.1 "Starting Point Terms", which make it easier for provenance annotation of a resource. 
+        <p>This section defines additional terms to describe provenance at a greater level of specificity (for example, <a href="#Person" class="qname">prov:Person</a> or <a href="#SoftwareAgent" class="qname">prov:SoftwareAgent</a> in place of <a href="#Agent" class="qname">prov:Agent</a>) and with more details (for example, <a href="#Location" class="qname">prov:Location</a> to describe the address of a <a href="#Organization" class="qname">prov:Organization</a>). In addition, the new terms in this section facilitate modeling of common provenance assertions related to web resources. For example, different version of a web page can be represented using the <a href="#wasRevisionOf" class="qname">prov:wasRevisionOf</a> property and the <a href="#hadOriginalSource" class="qname">prov:hadOriginalSource</a> property can be used to reference the original source of information used in a web resource. Many of the properties introduced in this section are also "shortcut" notations for combining the PROV-O terms introduced in Section 3.1 "Starting Point Terms", which make it easier for provenance annotation of a resource. 
         </p>
 
         <div class="exampleOuter">
--- a/ontology/prov-o-html-sections/description-qualified-terms.inc.html	Mon Apr 16 00:54:20 2012 +0100
+++ b/ontology/prov-o-html-sections/description-qualified-terms.inc.html	Mon Apr 16 01:00:56 2012 +0100
@@ -34,16 +34,20 @@
               <pre class="example">{% include "includes/eg16-journalism-qualified-association.ttl" %}</pre>
        </div>
 
-      <p>Usage and Association (described above) are accompanied by six other qualifications of Starting Point relations. The following table lists the simple relations that can be qualified, along with the qualification property, qualification class, and the property used to indicate the object of the qualified relation.
-      </p>
-      <div style="text-align: center;">
-         {% include "includes/qualifed-forms-starting-point.html" %}
+      <div id="qualifed-forms-starting-point" style="padding: 20px">
+         <p>Usage and Association (described above) are accompanied by six other qualifications of Starting Point relations. The <a href="#qualifed-forms-starting-point">following table</a> lists the simple relations that can be qualified, along with the qualification property, qualification class, and the property used to indicate the object of the qualified relation.
+         </p>
+         <div style="text-align: center">
+            {% include "includes/qualifed-forms-starting-point.html" %}
+         </div>
       </div>
 
-      <p>Six relations from the Expanded category can also be qualified. The following table lists the simple relations that can be qualified, along with the qualification property, qualification class, and the property used to indicate the object of the qualified relation.
-      </p>
-      <div style="text-align: center;">
-         {% include "includes/qualifed-forms-expanded.html" %}
+      <div id="qualifed-forms-expanded" style="padding: 20px">
+         <p>Six relations from the Expanded category can also be qualified. The <a href="#qualifed-forms-expanded">following table</a> lists the simple relations that can be qualified, along with the qualification property, qualification class, and the property used to indicate the object of the qualified relation.
+         </p>
+         <div style="text-align: center">
+            {% include "includes/qualifed-forms-expanded.html" %}
+         </div>
       </div>
 
        <p>This section finishes with two more examples of qualification as applied to the chart making example from <a href=#description-starting-point-terms>Section 3.1</a>.
--- a/ontology/prov-o-html-sections/description-starting-points.inc.html	Mon Apr 16 00:54:20 2012 +0100
+++ b/ontology/prov-o-html-sections/description-starting-points.inc.html	Mon Apr 16 01:00:56 2012 +0100
@@ -35,7 +35,7 @@
          <p>
          Activities may depend on each other. PROV-O distinguishes between two 
          kinds of dependencies which are specified using the properties 
-         wasInformedBy and wasStartedBy. 
+         <a href="#wasInformedBy" class="qname">prov:wasInformedBy</a> and <a href="#wasStartedByActivity" class="qname">prov:wasStartedByActivity</a>. 
          The first is used to specify that an activity used an entity that was 
          generated by another activity, and the second is used to specify that an
           activity was started or triggered by another activity.