|
1 | 1 | @prefix lapp: <https://w3id.org/atomgraph/linkeddatahub/apps#> . |
2 | 2 | @prefix ldh: <https://w3id.org/atomgraph/linkeddatahub#> . |
3 | | -@prefix a: <https://w3id.org/atomgraph/core#> . |
4 | | -@prefix ac: <https://w3id.org/atomgraph/client#> . |
| 3 | +@prefix ac: <https://w3id.org/atomgraph/client#> . |
5 | 4 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
6 | 5 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
7 | 6 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
8 | 7 | @prefix ldt: <https://www.w3.org/ns/ldt#> . |
9 | | -@prefix sd: <http://www.w3.org/ns/sparql-service-description#> . |
10 | 8 | @prefix dct: <http://purl.org/dc/terms/> . |
11 | 9 | @prefix foaf: <http://xmlns.com/foaf/0.1/> . |
12 | 10 |
|
13 | 11 | ### do not use blank nodes to identify resources! ### |
14 | | -### urn: URI scheme is used because applications/services are not accessible in their own dataspace (under $BASE_URI) ### |
| 12 | +### urn: URI scheme is used because applications are not accessible in their own dataspace (under $BASE_URI) ### |
15 | 13 |
|
16 | 14 | # root admin |
17 | 15 |
|
18 | 16 | <urn:linkeddatahub:apps/admin> |
19 | 17 | { |
20 | 18 | <urn:linkeddatahub:apps/admin> a lapp:Application, lapp:AdminApplication ; |
21 | 19 | dct:title "LinkedDataHub admin" ; |
22 | | - # ldt:base <https://admin.localhost:4443/> ; |
23 | 20 | lapp:origin <https://admin.localhost:4443> ; |
24 | 21 | ldt:ontology <https://w3id.org/atomgraph/linkeddatahub/admin#> ; |
25 | | - ldt:service <urn:linkeddatahub:services/admin> ; |
26 | 22 | ac:stylesheet <static/xsl/admin/layout.xsl> . |
27 | 23 |
|
28 | 24 | } |
29 | 25 |
|
30 | | -<urn:linkeddatahub:services/admin> |
31 | | -{ |
32 | | - |
33 | | - <urn:linkeddatahub:services/admin> a sd:Service ; |
34 | | - dct:title "LinkedDataHub admin service" ; |
35 | | - sd:supportedLanguage sd:SPARQL11Query, sd:SPARQL11Update ; |
36 | | - sd:endpoint <http://fuseki-admin:3030/ds/> ; |
37 | | - a:graphStore <http://fuseki-admin:3030/ds/> ; |
38 | | - a:quadStore <http://fuseki-admin:3030/ds/> . |
39 | | - |
40 | | -} |
41 | | - |
42 | 26 | # root end-user |
43 | 27 |
|
44 | 28 | <urn:linkeddatahub:apps/end-user> |
45 | 29 | { |
46 | 30 | <urn:linkeddatahub:apps/end-user> a lapp:Application, lapp:EndUserApplication ; |
47 | 31 | dct:title "LinkedDataHub" ; |
48 | | - # ldt:base <https://localhost:4443/> ; |
49 | 32 | lapp:origin <https://localhost:4443> ; |
50 | 33 | ldt:ontology <https://localhost:4443/ns#> ; |
51 | | - ldt:service <urn:linkeddatahub:services/end-user> ; |
52 | 34 | ac:stylesheet <static/xsl/layout.xsl> ; |
53 | 35 | lapp:public true . |
54 | 36 |
|
55 | 37 | } |
56 | 38 |
|
57 | | -<urn:linkeddatahub:services/end-user> |
58 | | -{ |
59 | | - |
60 | | - <urn:linkeddatahub:services/end-user> a sd:Service ; |
61 | | - dct:title "LinkedDataHub service" ; |
62 | | - sd:supportedLanguage sd:SPARQL11Query, sd:SPARQL11Update ; |
63 | | - sd:endpoint <http://fuseki-end-user:3030/ds/> ; |
64 | | - a:graphStore <http://fuseki-end-user:3030/ds/> ; |
65 | | - a:quadStore <http://fuseki-end-user:3030/ds/> . |
66 | | - |
67 | | -} |
68 | | - |
69 | 39 | # northwind-traders admin |
70 | 40 |
|
71 | 41 | <urn:linkeddatahub:apps/northwind-traders/admin> |
|
74 | 44 | dct:title "Northwind Traders admin" ; |
75 | 45 | lapp:origin <https://admin.northwind-traders.demo.localhost:4443> ; |
76 | 46 | ldt:ontology <https://w3id.org/atomgraph/linkeddatahub/admin#> ; |
77 | | - ldt:service <urn:linkeddatahub:services/admin> ; |
78 | 47 | ac:stylesheet <static/xsl/admin/layout.xsl> . |
79 | 48 |
|
80 | 49 | } |
|
87 | 56 | dct:title "Northwind Traders" ; |
88 | 57 | lapp:origin <https://northwind-traders.demo.localhost:4443> ; |
89 | 58 | ldt:ontology <https://northwind-traders.demo.localhost:4443/ns#> ; |
90 | | - ldt:service <urn:linkeddatahub:services/end-user> ; |
91 | 59 | ac:stylesheet <static/xsl/layout.xsl> ; |
92 | 60 | lapp:public true . |
93 | 61 |
|
|
0 commit comments