Skip to content

Commit

Permalink
Updating settings.default.inc.php
Browse files Browse the repository at this point in the history
  • Loading branch information
alangrafu committed Jan 15, 2012
1 parent 250d51d commit b962a82
Showing 1 changed file with 24 additions and 30 deletions.
54 changes: 24 additions & 30 deletions settings.default.inc.php
Original file line number Original file line Diff line number Diff line change
@@ -1,33 +1,27 @@
<? <?


$conf['endpoint']['host'] = 'http://myendpoint/sparql/'; # Where is LODSPeaKr's root located? (don't include word 'lodspeakr')
$conf['endpoint']['config']['show_inline'] = 0; $conf['basedir'] = 'http://foo/bar/'; #include final slash
$conf['basedir'] = 'http://mybaseurl/';

# What is the namespace of your data?
$conf['ns']['rdf'] = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'; $conf['ns']['local'] = 'http://foo/bar/data/';
$conf['ns']['rdfs'] = 'http://www.w3.org/2000/01/rdf-schema#'; #If you want to add/overrid a namespace, add it here
$conf['ns']['dcterms'] = 'http://purl.org/dc/terms/'; $conf['ns']['other'] = 'http://example.org/data/';
$conf['ns']['foaf'] = 'http://xmlns.com/foaf/0.1/';
$conf['ns']['skos'] = 'http://www.w3.org/2004/02/skos/core#'; #Where is your SPARQL endpoint
$conf['ns']['og'] = 'http://opengraphprotocol.org/schema/'; $conf['endpoint']['host'] = 'http://myendpoint/sparql';
$conf['ns']['owl'] = 'http://www.w3.org/2002/07/owl#';
$conf['ns']['local'] = 'http://shai-hulud/testCMS/'; $conf['home'] = '/Users/alvarograves/github/lodspeakr/'; #change to the location of LODSPeaKr in the dir tree
$conf['ns']['ov'] = 'http://open.vocab.org/terms/';
$conf['ns']['conv'] = 'http://purl.org/twc/vocab/conversion/'; $conf['debug'] = false; #Ugly dump of queries and values obtained

$conf['mirror_external_uris'] = false; #TRUE is local namespace != basedir
$conf['model']['directory'] = 'models/'; #include trailing slash!
$conf['model']['extension'] = '.model'; /*ATTENTION: By default this application is available to
$conf['model']['default'] = 'default'; * be exported and copied (its configuration)

* by others. If you do not want that,
$conf['view']['directory'] = 'views/'; #include trailing slash! * turn the next option as false
$conf['view']['extension'] = '.view'; */
$conf['view']['default'] = 'default'; $conf['export'] = true;
$conf['view']['standard']['baseUrl'] = $conf['basedir'];


$conf['resource']['url_delimiter'] = "%u";

$conf['http_accept']['html'] = array('text/html', 'application/xhtml');
$conf['http_accept']['rdf'] = array('application/rdf+xml');
$conf['http_accept']['ttl'] = array('text/n3', 'application/turtle', 'application/turtle', 'text/turtle');
$conf['http_accept']['nt'] = array('text/plain');
?> ?>

0 comments on commit b962a82

Please sign in to comment.