Skip to content
This repository was archived by the owner on Apr 22, 2022. It is now read-only.

Commit 8c6215c

Browse files
committed
fixed some config
1 parent 5afeedd commit 8c6215c

File tree

1 file changed

+46
-37
lines changed

1 file changed

+46
-37
lines changed

src/main/resources/framework-configuration-template.ttl

Lines changed: 46 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
@prefix void: <http://rdfs.org/ns/void#> .
1212
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
1313
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
14-
@prefix gkg: <http://generator.geoknow.eu/ontology/> .
14+
@prefix gkg: <http://ldiw.ontos.com/ontology/> .
1515

1616

1717
########### ABOUT THIS FILE #############################################################
@@ -24,12 +24,12 @@
2424
:GeoKnowGenerator
2525
a lds:StackComponent ;
2626
rdfs:comment "This resource contains all the configuration required by the application"^^xsd:string ;
27-
rdfs:label "GeoKnowGeneator"^^xsd:string ;
27+
rdfs:label "LDWorkbench"^^xsd:string ; # DO NOT CHANGE THIS LABEL
2828
dcterms:hasVersion "2.0"^^xsd:string ;
29+
lds:integrates :Virtuoso, :Facete, :Limes, :Sparqlify, :TripleGeo, :GeoLift, :OntoWiki, :Mappify, :FagiGis ;
2930
gkg:publicEndpoint :VirtuosoEndpoint ;
3031
gkg:authEndpoint :VirtuosoAuthSPARQLEndpoint ;
31-
lds:integrates :Virtuoso ;
32-
foaf:homepage <http://localhost:8080/generator> . # require IP for external access
32+
foaf:homepage <http://localhost:8080/generator/> .
3333

3434
:Virtuoso
3535
a lds:StackComponent ;
@@ -40,24 +40,24 @@
4040

4141
:VirtuosoConductor
4242
a lds:StorageService ;
43-
lds:password "***REMOVED***"^^xsd:string ;
44-
lds:serviceUrl <http://***REMOVED***:8890/conductor> ;
45-
lds:connectionString "jdbc:virtuoso://***REMOVED***:1111/"^^xsd:string;
46-
lds:user "***REMOVED***"^^xsd:string .
43+
lds:password "dba"^^xsd:string ;
44+
lds:serviceUrl <http://localhost:8890/conductor> ;
45+
lds:connectionString "jdbc:virtuoso://localhost:1111/"^^xsd:string;
46+
lds:user "dba"^^xsd:string .
4747

4848
:VirtuosoAuthSPARQLEndpoint
4949
a lds:SecuredSPARQLEndPointService, void:Dataset , gkg:SPARQLEndpoint , gkg:DataSource ;
5050
rdfs:label "Workbench Authenticated Endpoint" ;
51-
lds:password "***REMOVED***"^^xsd:string ;
52-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql-auth> ;
53-
lds:serviceUrl <http://***REMOVED***:8890/sparql-auth> ;
54-
lds:user "***REMOVED***"^^xsd:string .
51+
lds:password "generator"^^xsd:string ;
52+
lds:serviceUrl <http://localhost:8890/sparql-auth> ;
53+
void:sparqlEndpoint <http://localhost:8890/sparql-auth> ;
54+
lds:user "generator"^^xsd:string .
5555

5656
:VirtuosoEndpoint
5757
a lds:SPARQLEndPointService, void:Dataset , gkg:SPARQLEndpoint , gkg:DataSource ;
5858
rdfs:label "Workbench public Endpoint" ;
59-
lds:serviceUrl <http://***REMOVED***:8890/sparql> ;
60-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql> .
59+
lds:serviceUrl <http://localhost:8890/sparql> ;
60+
void:sparqlEndpoint <http://localhost:8890/sparql> .
6161

6262

6363
# #######################################################################################
@@ -75,11 +75,11 @@
7575
rdfs:label "Default dataset";
7676
dcterms:description "This is the endpoint default dataset"^^xsd:string;
7777
sd:defaultGraph :defaultNamedGraph;
78-
sd:namedGraph :settingsNamedGraph, :initialSettingsNamedGraph, :accountsNamedGraph, :groupsNamedGraph, :jobsNamedGraph, :sessionsNamedGraph
78+
sd:namedGraph :settingsNamedGraph, :initialSettingsNamedGraph, :accountsNamedGraph, :groupsNamedGraph, :jobsGraph, :sessionsGraph
7979
.
8080

8181
:defaultNamedGraph
82-
sd:name <http://***REMOVED***:8890/DAV>;
82+
sd:name <http://localhost:8890/DAV>;
8383
sd:graph [
8484
a sd:Graph, void:Dataset;
8585
rdfs:label "default"^^xsd:string;
@@ -96,7 +96,7 @@
9696
dcterms:description "GeoKnow Generator settings and configurations"^^xsd:string;
9797
dcterms:modified "2013-09-12"^^xsd:date;
9898
dcterms:created "2013-09-12"^^xsd:date;
99-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql> ]
99+
void:sparqlEndpoint <http://localhost:8890/sparql> ]
100100
.
101101

102102
:initialSettingsNamedGraph
@@ -108,7 +108,7 @@
108108
dcterms:description "Initial configuration of components in the framework"^^xsd:string;
109109
dcterms:modified "2013-09-12"^^xsd:date;
110110
dcterms:created "2013-09-12"^^xsd:date;
111-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql> ]
111+
void:sparqlEndpoint <http://localhost:8890/sparql> ]
112112
.
113113

114114
:accountsNamedGraph
@@ -120,22 +120,10 @@
120120
dcterms:description "A graph to store the users accounts"^^xsd:string;
121121
dcterms:modified "2014-04-12"^^xsd:date;
122122
dcterms:created "2014-04-12"^^xsd:date;
123-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql> ]
123+
void:sparqlEndpoint <http://localhost:8890/sparql> ]
124124
.
125125

126-
:groupsNamedGraph
127-
a sd:NamedGraph ;
128-
sd:name :groupsGraph;
129-
sd:graph [
130-
a sd:Graph, void:Dataset;
131-
rdfs:label "groups"^^xsd:string;
132-
dcterms:description "A graph for groups of graphs"^^xsd:string;
133-
dcterms:modified "2014-04-12"^^xsd:date;
134-
dcterms:created "2014-04-12"^^xsd:date;
135-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql> ]
136-
.
137-
138-
:jobsNamedGraph
126+
:jobsGraph
139127
a sd:NamedGraph ;
140128
sd:name :jobsGraph;
141129
sd:graph [
@@ -144,10 +132,10 @@
144132
dcterms:description "Graph to store batch jobs owners"^^xsd:string;
145133
dcterms:modified "2014-10-12"^^xsd:date;
146134
dcterms:created "2014-10-12"^^xsd:date;
147-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql> ]
135+
void:sparqlEndpoint <http://localhost:8890/sparql> ]
148136
.
149137

150-
:sessionsNamedGraph
138+
:sessionsGraph
151139
a sd:NamedGraph ;
152140
sd:name :sessionsGraph;
153141
sd:graph [
@@ -156,14 +144,35 @@
156144
dcterms:description "Graph to store authorised sessions"^^xsd:string;
157145
dcterms:modified "2014-11-12"^^xsd:date;
158146
dcterms:created "2014-11-12"^^xsd:date;
159-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql> ]
147+
void:sparqlEndpoint <http://localhost:8890/sparql> ]
148+
.
149+
150+
:groupsNamedGraph
151+
a sd:NamedGraph ;
152+
sd:name :groupsGraph;
153+
sd:graph [
154+
a sd:Graph, void:Dataset;
155+
rdfs:label "groups"^^xsd:string;
156+
dcterms:description "A graph for groups of graphs"^^xsd:string;
157+
dcterms:modified "2014-04-12"^^xsd:date;
158+
dcterms:created "2014-04-12"^^xsd:date;
159+
void:sparqlEndpoint <http://localhost:8890/sparql> ]
160+
.
161+
162+
:test
163+
a gkg:Account;
164+
foaf:accountName "test"^^xsd:string;
165+
lds:password "test"^^xsd:string;
166+
foaf:mbox <mailto:[email protected]>;
167+
gkg:Role gkg:Administrator
160168
.
161169

162170
:admin
163171
a gkg:Account;
164172
foaf:accountName "admin"^^xsd:string;
165173
lds:password "admin"^^xsd:string;
166-
foaf:mbox <mailto:***REMOVED***>;
167-
gkg:Role gkg:Administrator.
174+
foaf:mbox <mailto:[email protected]>;
175+
gkg:Role gkg:Administrator
176+
.
168177

169178

0 commit comments

Comments
 (0)