summaryrefslogtreecommitdiff
path: root/demo
diff options
context:
space:
mode:
authoramita singh <amitacr@gmail.com>2012-06-01 12:44:17 +0530
committeramita singh <amitacr@gmail.com>2012-06-01 12:44:17 +0530
commitdade877e7f3982ac949564271037d730d6284d35 (patch)
treeba59e329dcab6f6dfffb542c2394e224b32d5b90 /demo
parent79cc4dd9f37a45b40ba62249a14fde7f4b3b09fe (diff)
downloadgnowsys-dade877e7f3982ac949564271037d730d6284d35.tar.gz
gstudio_rdffile_path added in settings.py
Diffstat (limited to 'demo')
-rw-r--r--demo/settings.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/demo/settings.py b/demo/settings.py
index 96de64f0..8e82adf8 100644
--- a/demo/settings.py
+++ b/demo/settings.py
@@ -98,6 +98,7 @@ GRAPPELLI_ADMIN_TITLE = '<a href="/">Gnowledge Studio</a>'
GRAPPELLI_INDEX_DASHBOARD = "demo.dashboard.CustomIndexDashboard"
+GSTUDIO_RDF_FILEPATH = os.path.join(os.path.dirname(__file__), 'rdffiles.rdf')
# Authentication related
ACCOUNT_ACTIVATION_DAYS = 2
@@ -105,6 +106,14 @@ EMAIL_HOST = 'localhost'
DEFAULT_FROM_EMAIL = 'webmaster@localhost'
LOGIN_REDIRECT_URL = '/'
+# fourstore related
+FOURSTORE_KBNAME = "demo" # Name of 4store knowledge base
+FOURSTORE_PORT = 8067 # Port for 4store HTTP server
+SPARQL_ENDPOINT = "http://localhost:8067/sparql/"
+
+
+
+
LANGUAGES = (('en', gettext('English')),
@@ -173,6 +182,9 @@ INSTALLED_APPS = (
'registration',
'graphviz',
'demo',
+ 'fourstore',
+ 'HTTP4Store',
+ 'html5lib',
# Uncomment the south entry to activate south for database migrations
# Please do install south before uncommenting
# command: sudo pip install south