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

Commit 71124c3

Browse files
committed
Merge branch 'master' of github.com:GeoKnow/GeoKnowGeneratorUI into ontos-geoknow
2 parents fc0726c + 22cb9b7 commit 71124c3

File tree

4 files changed

+31
-17
lines changed

4 files changed

+31
-17
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ These option will not install any integrated component from the stack and you re
1616

1717
1. Make a copy of the `src/main/resources/framework-configuration-template.ttl` to `src/main/resources/framework-configuration.ttl` and provide the ***REMOVED*** data.
1818

19-
1. Make a copy of the `src/main/webapp/WEB-INF/web-template.xml` to `src/main/webapp/WEB-INF/web.xml` and provide the ***REMOVED*** data.
19+
2. Have a clean triple store and make sure to have a user create in the lds:StorageService, the lds:SecuredSPARQLEndPointService user will be automatically created
20+
21+
3. Make a copy of the `src/main/webapp/WEB-INF/web-template.xml` to `src/main/webapp/WEB-INF/web.xml` and provide the ***REMOVED*** data.
2022

2123

2224
Note that the endpoint has to support [UPDATE](http://www.w3.org/TR/2013/REC-sparql11-update-20130321/) service and [Graph Store HTTP Protocol](http://www.w3.org/TR/2013/REC-sparql11-http-rdf-update-20130321/)

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@
2626
rdfs:comment "This resource contains all the configuration required by the application"^^xsd:string ;
2727
rdfs:label "GeoKnowGeneator"^^xsd:string ;
2828
dcterms:hasVersion "2.0"^^xsd:string ;
29-
lds:password "***REMOVED***""^^xsd:string ; # an admin user for the webapp
29+
lds:password "***REMOVED***""^^xsd:string ; # an admin user for the webapp NOT IMPLEMENTED YET
3030
lds:user "***REMOVED***""^^xsd:string ;
3131
gkg:publicEndpoint :VirtuosoEndpoint ;
32-
gkg:authEndpoint :VirtuosoAutSPARQLEndpoint ;
32+
gkg:authEndpoint :VirtuosoAuthSPARQLEndpoint ;
3333
lds:integrates :Virtuoso ;
3434
foaf:homepage <http://localhost:8080/generator> .
3535

3636
:Virtuoso
3737
a lds:StackComponent ;
3838
rdfs:label "Service URL"^^xsd:string ;
3939
dcterms:hasVersion "7.0"^^xsd:string ;
40-
lds:providesService :VirtuosoConductor , :VirtuosoAutSPARQLEndpoint, :VirtuosoEndpoint;
40+
lds:providesService :VirtuosoConductor , :VirtuosoAuthSPARQLEndpoint, :VirtuosoEndpoint;
4141
foaf:homepage <http://virtuoso.openlinksw.com/> .
4242

4343
:VirtuosoConductor
@@ -47,7 +47,7 @@
4747
lds:connectionString "jdbc:virtuoso://***REMOVED***:1111/"^^xsd:string;
4848
lds:user "***REMOVED***""^^xsd:string .
4949

50-
:VirtuosoAutSPARQLEndpoint
50+
:VirtuosoAuthSPARQLEndpoint
5151
a lds:SecuredSPARQLEndPointService ;
5252
lds:password "***REMOVED***"^^xsd:string ;
5353
lds:serviceUrl <http://***REMOVED***:8890/sparql-auth> ;
@@ -132,4 +132,3 @@
132132
dcterms:created "2014-04-12"^^xsd:date;
133133
void:sparqlEndpoint <http://10.0.0.63:8890/sparql> ]
134134
.
135-

src/main/webapp/WEB-INF/web-template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,4 @@
170170
<mime-type>application/rdf+xml</mime-type>
171171
</mime-mapping>
172172

173-
</web-app>
173+
</web-app>

src/main/webapp/popup.html

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,38 +49,51 @@
4949
================================================== -->
5050
<!-- Placed at the end of the document so the pages load faster -->
5151
<!-- <script src="lib/jquery/jquery-1.7.2.min.js"></script> -->
52-
5352
<script src="lib/jquery/jquery-1.9.1.js"></script>
5453
<script src="lib/jquery/jquery-ui-1.10.1.custom.min.js"></script>
5554

56-
<script src="lib/bootstrap/bootstrap.js"></script>
55+
<script src="lib/bootstrap/bootstrap.js"></script>
5756
<script src="lib/angularjs/angular.js"></script>
5857
<script src="lib/angularjs/angular-cookies.js"></script>
5958
<script src="lib/angularjs/angular-route.js"></script>
6059
<script src="lib/modal-master/bootstrap-modal.js"></script>
6160
<script src="lib/modal-master/bootstrap-modalmanager.js"></script>
62-
<script src="js/config.js"></script>
6361
<script src="js/app.js"></script>
64-
<script src="js/services.js"></script>
65-
<script src="js/controllers.js"></script>
66-
67-
<!-- TODO: check what libraries should be added here, refactoring changed -->
68-
62+
<!-- services for the different modules/pages -->
63+
<script src="js/services/config.js"></script>
64+
<script src="js/services/services.js"></script>
65+
<script src="js/services/configuration-service.js"></script>
66+
<script src="js/services/graph-service.js"></script>
67+
<script src="js/services/account-service.js"></script>
68+
<script src="js/services/login-service.js"></script>
69+
<script src="js/services/graph-group-service.js"></script>
6970
<!-- controllers for the different modules/pages -->
7071
<script src="js/controllers.js"></script>
7172
<script src="js/login-controller.js"></script>
73+
<script src="js/workbench/extraction-and-loading/import-rdf-controller.js"></script>
74+
<script src="js/workbench/extraction-and-loading/sparqlify-controller.js"></script>
7275
<script src="js/workbench/extraction-and-loading/triplegeo-controller.js"></script>
76+
<script src="js/workbench/search-querying-and-exploration/facete-controller.js"></script>
77+
<script src="js/workbench/search-querying-and-exploration/mappify-controller.js"></script>
78+
<script src="js/workbench/search-querying-and-exploration/virtuoso-controller.js"></script>
79+
<script src="js/workbench/manual-revision-and-authoring/ontowiki-controller.js"></script>
7380
<script src="js/workbench/classification-and-enrichment/geolift-controller.js"></script>
7481
<script src="js/workbench/linking-and-fusing/limes-controller.js"></script>
82+
<script src="js/settings/settings-controller.js"></script>
83+
<script src="js/settings/datasets/graphs-controller.js"></script>
84+
<script src="js/settings/data-sources/endpoint-controller.js"></script>
85+
<script src="js/settings/data-sources/database-controller.js"></script>
86+
<script src="js/settings/namespaces/namespaces-controller.js"></script>
87+
<script src="js/settings/components/components-controller.js"></script>
88+
<script src="js/account/account-controller.js"></script>
7589

76-
90+
<!-- directives -->
7791
<script src="js/directives.js"></script>
7892
<script src="lib/osm/OpenLayers.js"></script>
7993
<script src="lib/ui-bootstrap/ui-bootstrap-tpls-0.6.0.min.js"></script>
8094
<script src="lib/angular-route-segment/angular-route-segment.min.js"></script>
8195
<script src="lib/angular-file-upload-master/angular-file-upload.min.js"></script>
8296
<script src="lib/angular-file-upload-master/FileAPI.min.js"></script>
8397
<script src="lib/angular-flash.min.js"></script>
84-
8598
</body>
8699
</html>

0 commit comments

Comments
 (0)