qual provo
authorTim L <lebot@rpi.edu>
Mon, 26 Nov 2012 11:49:33 -0500
changeset 5114 f486a63fb5ac
parent 5113 e64c72864d25
child 5115 cd3f47f5bb11
qual provo
ontology/khalid-jun-dropbox/eg16-journalism-qualified-derivation.ttl
ontology/khalid-jun-dropbox/eg16-journalism-qualified-generation.ttl
ontology/prov-o-html-sections/description-qualified-terms.inc.html
--- a/ontology/khalid-jun-dropbox/eg16-journalism-qualified-derivation.ttl	Mon Nov 26 11:34:38 2012 -0500
+++ b/ontology/khalid-jun-dropbox/eg16-journalism-qualified-derivation.ttl	Mon Nov 26 11:49:33 2012 -0500
@@ -1,20 +1,22 @@
 @prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
 @prefix prov: <http://www.w3.org/ns/prov#> .
-@prefix ex:   <http://example.org#> .
+@prefix :     <http://example.org#> .
 
-ex:chart1
-   a prov:Entity;                               ## (Using Starting Point terms)
-   prov:wasDerivedFrom ex:aggregatedByRegions;  ## The chart was derived from the aggregate.
+:bar_chart
+   a prov:Entity;                             ## Using Starting Point terms,
+   prov:wasDerivedFrom :aggregatedByRegions;  ## the chart was derived from the aggregate.
 .
 
-ex:aggregatedByRegions a prov:Entity .
+:aggregatedByRegions a prov:Entity .
 
-ex:chart1
-   prov:qualifiedDerivation   [           
+:bar_chart
+   prov:qualifiedDerivation [ ## Qualify the aggregatedByRegion's influence upon the bar_chart.
       a prov:Derivation;
-      prov:entity        ex:aggregatedByRegions;  ## Qualification: additional information about the derivation:
-      prov:hadUsage      ex:usage;                ## Which activity derived the aggregate?
-      prov:hadActivity   ex:activity;             ## What did the activity use to derive the aggregate?
-      prov:hadGeneration ex:generation;           ## How did the activity generate the derived aggregate?
+      prov:entity        :aggregatedByRegions;  
+      prov:hadUsage      :use_of_aggregation;      ## Qualification: The activity derived the aggregate?
+      prov:hadActivity   :aggregating_activity;    ## What did the activity use to derive the aggregate?
+      prov:hadGeneration :generation_of_bar_chart; ## How did the activity generate the derived aggregate?
    ];
 .
+
+
--- a/ontology/khalid-jun-dropbox/eg16-journalism-qualified-generation.ttl	Mon Nov 26 11:34:38 2012 -0500
+++ b/ontology/khalid-jun-dropbox/eg16-journalism-qualified-generation.ttl	Mon Nov 26 11:49:33 2012 -0500
@@ -1,18 +1,19 @@
 @prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
 @prefix prov: <http://www.w3.org/ns/prov#> .
-@prefix ex:   <http://example.org#> .
+@prefix :     <http://example.org#> .
 
-ex:chart1 
-   a prov:Entity;                                ## (Using Starting Point terms)
-   prov:wasGeneratedBy ex:illustrationActivity;  ## The chart was generated in an illustration activity.
+:bar_chart 
+   a prov:Entity;                              ## Using Starting Point terms
+   prov:wasGeneratedBy :illustrationActivity;  ## The chart was generated in an illustration activity.
 .
 
-ex:illustrationActivity a prov:Activity .
+:illustrationActivity a prov:Activity .
 
-ex:chart1
-   prov:qualifiedGeneration [
+:bar_chart
+   prov:qualifiedGeneration [ ## Qualify the illustrationActivity's generation of bar_chart.
       a prov:Generation;
-      prov:activity ex:illustrationActivity;             ## Qualification: The chart was 
-      prov:atTime "2011-07-14T15:52:14Z"^^xsd:dateTime;  ## generated at a particular time.
+      prov:activity :illustrationActivity;               
+      prov:atTime "2011-07-14T15:52:14Z"^^xsd:dateTime; ## Qualification: The Activity generated 
+                                                        ## the bar_chart at a particular time.
    ];
 .
--- a/ontology/prov-o-html-sections/description-qualified-terms.inc.html	Mon Nov 26 11:34:38 2012 -0500
+++ b/ontology/prov-o-html-sections/description-qualified-terms.inc.html	Mon Nov 26 11:49:33 2012 -0500
@@ -214,7 +214,7 @@
          </p>
         <div class="exampleOuter">
            <div><b>Qualified Generation</b></div>
-            <p>The <span class="repeated">prov:qualifiedGeneration</span> property parallels the <span class="repeated">prov:wasGeneratedBy</span> property to provide an additional description to <code>:chart1</code>. The instance of <span class="repeated">prov:Generation</span> cites the time (2011-07-14T15:52:14Z) that the activity (<code>:illustrationActivity</code>) generated the chart (<code>:chart1</code>).
+            <p>The <span class="repeated">prov:qualifiedGeneration</span> property parallels the <span class="repeated">prov:wasGeneratedBy</span> property to provide an additional description to <code>:bar_chart</code>. The instance of <span class="repeated">prov:Generation</span> cites the time (2011-07-14T15:52:14Z) that the activity (<code>:illustrationActivity</code>) generated the chart (<code>:bar_chart</code>).
             </p>
               <pre class="example">{% include "includes/eg16-journalism-qualified-generation.ttl" %}</pre>
         </div>
@@ -226,9 +226,11 @@
          </p>
         <div class="exampleOuter">
            <div><b>Qualified Derivation</b></div>
-            <p>The <span class="repeated">prov:qualifiedDerivation</span> property parallels the <span class="repeated">prov:wasDerivedFrom</span> property to provide an additional description to <code>:chart1</code>. The instance of <span class="repeated">prov:Derivation</span> cites the activity (<code>:illustrationActivity</code>) and the Usages and Generations that the activity conduced to create the chart (<code>:chart1</code>).
-            </p>
-              <pre class="example">{% include "includes/eg16-journalism-qualified-derivation.ttl" %}</pre>
+           <p>The <span class="repeated">prov:qualifiedDerivation</span> property parallels the <span class="repeated">prov:wasDerivedFrom</span> 
+              property to provide an additional description to <code>:bar_chart</code>. The instance of <span class="repeated">prov:Derivation</span> 
+              cites the activity (<code>:illustrationActivity</code>) and the Usages and Generations that the activity conduced to create the <code>:bar_chart</code>.
+           </p>
+           <pre class="example">{% include "includes/eg16-journalism-qualified-derivation.ttl" %}</pre>
         </div>
       </div>