contextualization
authorLuc Moreau <l.moreau@ecs.soton.ac.uk>
Mon, 11 Jun 2012 18:06:34 +0100
changeset 3271 addd455368f2
parent 3270 b604dbdb1e4e (current diff)
parent 3269 01feb4c238c3 (diff)
child 3272 445f205fb03e
contextualization
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-37-delegation-direction/rdf/eg-37-delegation-direction.ttl	Mon Jun 11 18:06:34 2012 +0100
@@ -0,0 +1,50 @@
+@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-37-delegation-direction/rdf/eg-37-delegation-direction#> .
+
+<> 
+   a prov:Bundle;
+   prov:wasDerivedFrom  <http://www.w3.org/2011/prov/wiki/File:DelegationSecretary.jpg>;
+   prov:wasAttributedTo <http://soiland-reyes.com/stian/#me>, 
+                        <http://www.mygrid.org.uk/about-us/people/core-mygrid-team/alan-williams/>;
+   rdfs:seeAlso         <http://www.w3.org/2011/prov/wiki/Eg-37-delegation-direction>;
+.
+
+
+:Bob a prov:Person;
+    prov:qualifiedDelegation :emailAccess;
+.
+
+:Alice a prov:Person;
+.
+
+:emailChecking a prov:Activity;
+.
+
+:secretary a prov:Role;
+.
+
+:emailAccess a prov:Delegation;
+    prov:agent :Alice;
+    prov:hadActivity :emailChecking;
+    prov:hadRole :secretary;
+.
+
+
+
+# But what is the unqualified property implied by this delegation?
+
+:questions = {
+    :Alice ?a :Bob.
+    :Bob ?b :Alice.
+} .
+
+
--- a/model/all-divs.js	Mon Jun 11 18:06:13 2012 +0100
+++ b/model/all-divs.js	Mon Jun 11 18:06:34 2012 +0100
@@ -2084,7 +2084,9 @@
 '          <span class="attribute" id="membership-d.id">id</span>: an OPTIONAL \n' + 
 '          identifier identifying the relation; \n' + 
 '        </li> \n' + 
-'        <li> \n' + 
+    '        <li> \n';
+
+divs_string=divs_string +
 '          <span class="attribute" id="membership-d.collection">collection</span>: \n' + 
 '          an identifier (<span class="name">c</span>) for the dictionary whose \n' + 
 '          members are asserted; \n' +