Skip to content

Commit da9ad0d

Browse files
committed
chore: some remaining demo setup
Signed-off-by: Wouter Termont <wouter.termont@ugent.be>
1 parent add12cd commit da9ad0d

3 files changed

Lines changed: 29 additions & 5 deletions

File tree

demo/data/demo/public/authz-companion-app/index.html

Whitespace-only changes.

demo/data/ruben/profile/card$.ttl

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
22
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
33
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
4+
@prefix filters: <http://localhost:3000/catalog/public/filters/> .
5+
@prefix views: <http://localhost:3000/ruben/private/derived/> .
6+
@prefix ruben: <http://localhost:3000/ruben/profile/card#me> .
47

58
<> a foaf:PersonalProfileDocument;
6-
foaf:maker <http://localhost:3000/ruben/profile/card#me>;
7-
foaf:primaryTopic <http://localhost:3000/ruben/profile/card#me>.
9+
foaf:maker ruben:;
10+
foaf:primaryTopic ruben:.
811

9-
<http://localhost:3000/ruben/profile/card#me> a foaf:Person ;
12+
ruben: a foaf:Person ;
1013
foaf:name "Ruben Verborgh"@en, "Ruben Verborgh"@nl;
1114
rdfs:label "Ruben Verborgh"@en, "Ruben Verborgh"@nl;
12-
solid:umaServer "http://localhost:4000/uma" ;
13-
solid:oidcIssuer <http://localhost:3000/> .
15+
solid:umaServer "http://localhost:4000/uma/" ;
16+
solid:oidcIssuer <http://localhost:3000/> ;
17+
solid:viewIndex <#index> .
18+
19+
<#index> a solid:ViewIndex ;
20+
solid:entry [
21+
solid:filter filters:bday ;
22+
solid:location views:bday
23+
] ;
24+
solid:entry [
25+
solid:filter filters:age ;
26+
solid:location views:age
27+
] .
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@prefix ex: <http://example.org/1707120963224#> .
2+
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
3+
4+
ex:usagePolicy a odrl:Agreement .
5+
ex:usagePolicy odrl:permission ex:permission .
6+
ex:permission a odrl:Permission .
7+
ex:permission odrl:action odrl:read , odrl:modify .
8+
ex:permission odrl:target <http://localhost:3000/ruben/private/derived/age> , <http://localhost:3000/ruben/private/derived/bday> .
9+
ex:permission odrl:assignee <http://localhost:3000/demo/public/bday-app> .
10+
ex:permission odrl:assigner <http://localhost:3000/ruben/profile/card#me> .

0 commit comments

Comments
 (0)