This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
107 lines (107 loc) · 2.84 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"baseConfig": "trifid:config-sparql.json",
"datasetBaseUrl": "http://classifications.data.admin.ch/",
"sparqlEndpointUrl": "https://stardog.cluster.ldbar.ch/lindas/query",
"sparqlEndpointAuthentication": {
"user": "public",
"password": "public"
},
"sparqlProxy": {
"default": {
"options": {
"queryOperation": "postQueryUrlencoded"
}
}
},
"staticViews": {
"/": "cwd:views/home.html",
"/linked-data/": "cwd:views/linked-data.html",
"/lindas/": "cwd:views/lindas.html",
"/datasets/": "cwd:views/datasets.html",
"/search/municipalities/": "cwd:views/search/municipalities.html",
"/search/offices/": "cwd:views/search/offices.html",
"/visualizations/map/": "cwd:views/visualizations/map.html",
"/visualizations/municipality-events-static/": "cwd:views/visualizations/municipality-events-static.html",
"/visualizations/municipality-events-dynamic/": "cwd:views/visualizations/municipality-events-dynamic.html"
},
"staticFiles": {
"dataadminFiles": {
"path": "/",
"folder": "cwd:public"
},
"styleFiles": {
"path": "/",
"folder": "cwd:node_modules/swiss-styleguide/build"
},
"zackFiles": {
"path": "/zack-search/",
"folder": "cwd:node_modules/zack-search/dist"
}
},
"handler": {
"root": {
"options": {
"resourceExistsQuery": "ASK { GRAPH ?g { <${iri}> ?p ?o }}",
"resourceGraphQuery": "#pragma describe.strategy cbd\nDESCRIBE <${iri}>",
"containerExistsQuery": "ASK { GRAPH ?g { <${iri}> ?p ?o }}",
"containerGraphQuery": "#pragma describe.strategy cbd\nDESCRIBE <${iri}>"
}
}
},
"renderer": {
"root": {
"template": "cwd:views/index.html",
"templateError": "cwd:views/error.html"
}
},
"yasgui": {
"default": {
"template": "cwd:views/yasgui.html"
}
},
"content": {
"navigation": [
{
"title": "Intro",
"link": "/"
},
{
"title": "Linked Data?",
"link": "/linked-data/"
},
{
"title": "Applications",
"navigation": [
{
"title": "STATPOP 2011",
"link": "/visualizations/map/"
},
{
"title": "Municipality Events",
"link": "/visualizations/municipality-events-static/"
},
{
"title": "Municipal M&As",
"link": "/visualizations/municipality-events-dynamic/"
},
{
"title": "Municipalities Search",
"link": "/search/municipalities/"
}
]
},
{
"title": "LINDAS Platform",
"link": "/lindas/"
},
{
"title": "Available Datasets",
"link": "/datasets/"
},
{
"title": "SPARQL Endpoint",
"link": "/sparql/"
}
]
}
}