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

Commit 2ec9353

Browse files
committed
update templates and version
1 parent 11deb0e commit 2ec9353

File tree

5 files changed

+79
-28
lines changed

5 files changed

+79
-28
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Since the workbench integrates several Linked Data tools, it is upto the user to
2424

2525
## Install
2626

27-
* __From Debian package__: The GeoKnow Generator UI is available as a debuian package, to install follow [these](http://stack.linkeddata.org/documentation/installation-of-a-local-generator-demonstrator/) instructions.
27+
* __From Debian package__: The GeoKnow Generator UI is available as a debuian package, to install follow [these](http://stack.linkeddata.org/getting-started/geoknow-generator/) instructions.
2828
* __Form source__: Follow the configuration instructions below, and use `maven pacakge` to package the souces in a war file and deploy it on a servlet container.
2929

3030
The Generator Workbencg will not install any integrated component from the stack and you require to install each one. You can choose to use again Debian packages following [these](http://stack.linkeddata.org/documentation/installation-of-a-local-generator-demonstrator/) instructions, or following instructions from each developer's component installation guides.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>eu.geoknow</groupId>
55
<artifactId>generator</artifactId>
66
<packaging>war</packaging>
7-
<version>2.0.0</version>
7+
<version>1.2.0</version>
88
<name>GeoKnow Generator</name>
99

1010
<properties>

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

Lines changed: 53 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
a lds:StorageService ;
3131
rdfs:label "Virtuoso Conductor" ;
3232
lds:password "dba"^^xsd:string ;
33-
lds:serviceUrl <http://***REMOVED***:8890/conductor> ;
34-
lds:connectionString "jdbc:virtuoso://***REMOVED***:1111/"^^xsd:string;
33+
lds:serviceUrl <http://localhost:8890/conductor> ;
34+
lds:connectionString "jdbc:virtuoso://localhost:1111/"^^xsd:string;
3535
lds:user "dba"^^xsd:string .
3636

3737
# #######################################################################################
@@ -40,28 +40,43 @@
4040

4141
:VirtuosoAuthSPARQLEndpoint
4242
a lds:SecuredSPARQLEndPointService;
43-
rdfs:label "Virtuoso Authentication SPARQLEndpoint" ;
43+
rdfs:label "Virtuoso Auth-SPARQLEndpoint" ;
4444
lds:password "generator"^^xsd:string ;
45-
lds:serviceUrl <http://***REMOVED***:8890/sparql-auth> ;
46-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql-auth> ;
45+
lds:serviceUrl <http://localhost:8890/sparql-auth> ;
46+
void:sparqlEndpoint <http://localhost:8890/sparql-auth> ;
4747
lds:user "generator"^^xsd:string .
4848

4949
:VirtuosoEndpoint
5050
a lds:SPARQLEndPointService;
5151
rdfs:label "Virtuoso Public Endpoint" ;
52-
void:sparqlEndpoint <http://***REMOVED***:8890/sparql-auth> ;
53-
lds:serviceUrl <http://***REMOVED***:8890/sparql> .
52+
void:sparqlEndpoint <http://localhost:8890/sparql-auth> ;
53+
lds:serviceUrl <http://localhost:8890/sparql> .
54+
5455
:SpringBatch
55-
a lds:StackComponent ;
56-
rdfs:label "Spring Batch Admin"^^xsd:string ;
57-
lds:providesService :SpringBatchService ;
58-
lds:version "1.0"^^xsd:string .
56+
a lds:StackComponent ;
57+
rdfs:label "Spring Batch Admin"^^xsd:string ;
58+
lds:providesService :SpringBatchService ;
59+
foaf:homepage <http://localhost:8080/spring-batch-admin-geoknow/> ;
60+
dcterms:hasVersion "1.0"^^xsd:string .
5961

6062
:SpringBatchService
6163
a lds:WorkflowService ;
62-
dcterms:description "Provides functionality to create scheduled jobs and workflows."^^xsd:string ;
64+
rdfs:label "SpringBatch" ;
65+
dcterms:description "Provides functionality to create scheduled jobs and workflows."^^xsd:string ;
6366
lds:serviceUrl <http://localhost:8080/spring-batch-admin-geoknow/> ;
64-
ontos:springBatchAdminJobsDir "/Users/alejandragarciarojas/Services/tomcat/webapps/spring-batch-admin-geoknow/WEB-INF/classes/META-INF/batch-jobs/"^^xsd:string .
67+
ontos:springBatchAdminJobsDir "/var/generator/jobs/"^^xsd:string .
68+
69+
:RdfImport
70+
a lds:StackComponent ;
71+
rdfs:label "Rdf Import"^^xsd:string ;
72+
lds:providesService :RdfImportService ;
73+
foaf:homepage <http://localhost:8080/generator/rest/import-rdf> ;
74+
dcterms:hasVersion "1.0"^^xsd:string .
75+
76+
:RdfImportService
77+
a lds:ExtractionService ;
78+
rdfs:label "RDF Import" ;
79+
lds:serviceUrl <http://localhost:8080/generator/rest/import-rdf/> .
6580

6681
:Sparqlify
6782
a lds:StackComponent ;
@@ -71,7 +86,8 @@
7186
foaf:homepage <http://aksw.org/Projects/Sparqlify.html> .
7287

7388
:SparqlifyService
74-
a lds:ExplorationService ;
89+
a lds:ExtractionService ;
90+
rdfs:label "Sparqlify" ;
7591
lds:serviceUrl <http://localhost:8080/sparqlify/> .
7692

7793
:Facete
@@ -82,16 +98,18 @@
8298
foaf:homepage <http://aksw.org/Projects/Facete.html> .
8399
:FaceteService
84100
a lds:ExplorationService ;
101+
rdfs:label "Facete" ;
85102
lds:serviceUrl <http://cstadler.aksw.org/facete2/> .
86103

87104
:Limes
88105
a lds:StackComponent ;
89-
rdfs:label "Limes Linking Service"^^xsd:string ;
106+
rdfs:label "Limes Linking"^^xsd:string ;
90107
lds:providesService :LimesService;
91108
dcterms:hasVersion "0.6.4"^^xsd:string ;
92109
foaf:homepage <http://aksw.org/Projects/LIMES.html> .
93110
:LimesService
94111
a lds:InterlinkingService ;
112+
rdfs:label "Limes" ;
95113
lds:serviceUrl <http://localhost:8080/limes-service> .
96114

97115
:TripleGeo
@@ -102,6 +120,7 @@
102120
foaf:homepage <https://web.imis.athena-innovation.gr/redmine/projects/geoknow_public/wiki/TripleGeo> .
103121
:TripleGeoService
104122
a lds:ExtractionService ;
123+
rdfs:label "Triple-Geo" ;
105124
lds:serviceUrl <http://localhost:8080/TripleGeo-Service> .
106125

107126
:DEER
@@ -112,6 +131,7 @@
112131
foaf:homepage <https://github.com/AKSW/DEER> .
113132
:DEERService
114133
a lds:EnrichmentService ;
134+
rdfs:label "Deer" ;
115135
lds:serviceUrl <http://localhost:8080/deer-Service> .
116136

117137
:OntoWiki
@@ -122,6 +142,7 @@
122142
foaf:homepage <http://aksw.org/Projects/OntoWiki.html> .
123143
:OntoWikiService
124144
a lds:AuthoringService ;
145+
rdfs:label "OntoWiki" ;
125146
lds:serviceUrl <http://localhost/ontowiki> .
126147

127148
:Mappify
@@ -132,16 +153,30 @@
132153
foaf:homepage <https://github.com/GeoKnow/Mappify> .
133154
:MappifyService
134155
a lds:ExplorationService ;
156+
rdfs:label "Mappify" ;
135157
lds:serviceUrl <http://cstadler.aksw.org/mappify2/> .
136-
158+
159+
:FagiGis
160+
a lds:StackComponent ;
161+
rdfs:label "FAGI-gis"^^xsd:string ;
162+
lds:providesService :FagiGisService ;
163+
dcterms:hasVersion "1.1+rev0"^^xsd:string ;
164+
foaf:homepage <https://github.com/GeoKnow/FAGI-gis> .
165+
166+
:FagiGisService
167+
a lds:InterlinkingService ;
168+
rdfs:label "Fagi-gis" ;
169+
lds:serviceUrl <http://localhost:8080/FAGI-WebInterface/> .
170+
137171
:Coevolution
138172
a lds:StackComponent ;
139173
rdfs:label "Public-Private Data Coevolution"^^xsd:string ;
140174
lds:providesService :CoevolutionService ;
141175
dcterms:hasVersion "1.0.0"^^xsd:string ;
142-
foaf:homepage <http://geoknow-generator.aws.semweb.unister.de:8080/coevolution-service/> .
176+
foaf:homepage <http://localhost:8080/coevolution-service/> .
143177

144178
:CoevolutionService
145179
a lds:PublicationService ;
146-
lds:serviceUrl <http://geoknow-generator.aws.semweb.unister.de:8080/coevolution-service/> .
180+
rdfs:label "Public-Private Data Coevolution"^^xsd:string ;
181+
lds:serviceUrl <http://localhost:8080/coevolution-service/> .
147182

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

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,32 @@
5353
dcterms:description "Provides functionality to upload data to a target graph from several graphs and to do versioning."^^xsd:string ;
5454
lds:serviceUrl <http://localhost:8080/generator/rest/publish> .
5555

56+
##################################################################
57+
# Required default-dataset
58+
##################################################################
59+
60+
:default-dataset
61+
a sd:Dataset;
62+
rdfs:label "Default dataset";
63+
dcterms:description "This is the endpoint default dataset"^^xsd:string;
64+
sd:defaultGraph :defaultNamedGraph;
65+
.
5666

67+
:defaultNamedGraph
68+
sd:name <http://localhost:8890/DAV>;
69+
sd:graph :default .
70+
:default
71+
a sd:Graph, void:Dataset;
72+
rdfs:label "default"^^xsd:string;
73+
dcterms:title "default"^^xsd:string;
74+
dcterms:description "Default graph"^^xsd:string
75+
.
76+
5777
########### ROUTES RESTRICTIONS DESCRIPTION #######################################################
5878
# Following triples describe required services for routes. It is used in conditional routing.
5979
# #######################################################################################
80+
81+
6082

6183
:RolesRouteRestriction
6284
a ontos:RouteRestriction;
@@ -78,11 +100,6 @@
78100
ontos:route "/workbench/extraction-and-loading/triplegeo"^^xsd:string;
79101
ontos:requiresService :TripleGeoService .
80102

81-
:D2RQGeoRouteRestriction
82-
a ontos:RouteRestriction;
83-
ontos:route "/workbench/extraction-and-loading/d2rq"^^xsd:string;
84-
ontos:requiresService :D2RQService .
85-
86103
:FaceteRouteRestriction
87104
a ontos:RouteRestriction;
88105
ontos:route "/workbench/search-querying-and-exploration/facete"^^xsd:string;
@@ -117,6 +134,5 @@
117134

118135
:CoevRouteRestriction
119136
a ontos:RouteRestriction;
120-
ontos:route "//workbench/evolution-and-repair/coevolution-apply"^^xsd:string;
137+
ontos:route "/workbench/evolution-and-repair/coevolution-apply"^^xsd:string;
121138
ontos:requiresService :CoevolutionService .
122-

src/main/resources/framework-users.ttl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
a ontos:Account;
1919
foaf:accountName "admin"^^xsd:string;
2020
lds:password "admin"^^xsd:string;
21-
foaf:mbox <mailto:admin@geoknow.eu>;
21+
foaf:mbox <mailto:pr@geoknow.eu>;
2222
ontos:role :Administrator.
2323

2424
# do not modify this user, is for integration testing, and can be deleted if the Workbench installation succeed

0 commit comments

Comments
 (0)