Skip to content

Commit

Permalink
change main title and adapt default endpoint
Browse files Browse the repository at this point in the history
change the title "Welcome to OntoWiki" to Welcome to CubeViz in
application/controllers/IndexController.php

change the default endpoint to http://digital-agenda-data.eu/data/sparql
in the config.ini and extensions/spraqlservices/doap.n3 (the graph
remains the same)
  • Loading branch information
k00ni committed Aug 28, 2013
1 parent 548067e commit 1d5ee2f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion application/controllers/IndexController.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function newsAction()
public function __call($action, $params)
{
OntoWiki::getInstance()->getNavigation()->disableNavigation();
$this->view->placeholder('main.window.title')->set('Welcome to OntoWiki');
$this->view->placeholder('main.window.title')->set('Welcome to CubeViz');

if ($this->_owApp->hasMessages()) {
$this->_forward('messages', 'index');
Expand Down
4 changes: 2 additions & 2 deletions config.ini.dist
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
;store.virtuoso.use_persistent_connection = true

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
store.backend = sparql
;store.sparql.serviceUrl = "http://cubeviz.aksw.org/sparql";
store.backend = sparql
;store.sparql.serviceUrl = "http://digital-agenda-data.eu/data/sparql";
;store.sparql.graphs[] = "http://data.lod2.eu/scoreboard/"

versioning = false
Expand Down
22 changes: 11 additions & 11 deletions extensions/sparqlservices/doap.n3
Original file line number Diff line number Diff line change
Expand Up @@ -45,34 +45,34 @@
owconfig:id "endpoints";
owconfig:config [
a owconfig:Config;
owconfig:id "endpoint-1" ;
owconfig:id "endpoint-2" ;
:icon "" ;
rdfs:label "Open Data Europa" ;
:address <http://open-data.europa.eu/sparqlep> ;
rdfs:label "Digital Agenda Data" ;
:address <http://digital-agenda-data.eu/data/sparql> ;
owconfig:config [
a owconfig:Config;
owconfig:id "models" ;
owconfig:config [
a owconfig:Config;
owconfig:id "model-1" ;
:modelUri <http://data.lod2.eu/scoreboard/>
]
:modelUri <http://semantic.digital-agenda-data.eu/CubeViz>
]
]
] ;
]
owconfig:config [
a owconfig:Config;
owconfig:id "endpoint-2" ;
owconfig:id "endpoint-1" ;
:icon "" ;
rdfs:label "Digital Agenda Data" ;
:address <http://digital-agenda-data.eu/data/sparql> ;
rdfs:label "Open Data Europa" ;
:address <http://open-data.europa.eu/sparqlep> ;
owconfig:config [
a owconfig:Config;
owconfig:id "models" ;
owconfig:config [
a owconfig:Config;
owconfig:id "model-1" ;
:modelUri <http://semantic.digital-agenda-data.eu/CubeViz>
]
:modelUri <http://data.lod2.eu/scoreboard/>
]
]
]
] ;
Expand Down

0 comments on commit 1d5ee2f

Please sign in to comment.