added Start, End, and updated wasEndedBy with correct spelling of 'Activity'.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_End.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_End.ttl Wed Apr 25 16:03:41 2012 -0600
@@ -4,4 +4,14 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:experiment
+ a prov:Activity;
+ prov:wasEndedBy :inconsistentResult;
+ prov:qualifiedEnd [
+ a prov:End;
+ prov:entity :inconsistentResult;
+ prov:atTime "2011-07-16T01:52:02Z"^^xsd:dateTime;
+ prov:atLocation :scienceLab003
+ ].
+
+:inconsistentResult a prov:Entity.
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Start.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Start.ttl Wed Apr 25 16:03:41 2012 -0600
@@ -4,4 +4,14 @@
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix : <http://example.com/> .
-# TODO
+:experiment
+ a prov:Activity ;
+ prov:wasStartedBy :researcher ;
+ prov:qualifiedStart [
+ a prov:Start;
+ prov:entity :researcher;
+ prov:atTIme "2011-07-06T01:48:36Z"^^xsd:dateTime;
+ prov:atLocation :scienceLab003
+ ].
+
+:researcher a prov:Entity.
\ No newline at end of file
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasEndedBy.ttl Wed Apr 25 15:54:39 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasEndedBy.ttl Wed Apr 25 16:03:41 2012 -0600
@@ -5,7 +5,7 @@
@prefix : <http://example.com/> .
:experiment
- a prov:Acticity;
+ a prov:Activity;
prov:wasEndedBy :inconsistentResult;
prov:qualifiedEnd [
a prov:End;