pointing to manifold backend
[myslice.git] / myslice / config.py
index 4fe5aa3..6ef5061 100644 (file)
@@ -1,10 +1,17 @@
 class Config:
 
-#    manifold_server = 'manifold.pl.sophia.inria.fr'
-    manifold_server = 'demo.myslice.info'
-    manifold_port = '7080'
-    manifold_path = '/'
+    # production should use https of course
 
+# an old-fashioned API - that's what is currently only supported   
+    #manifold_url = "http://manifold.pl.sophia.inria.fr:7080/"
+    manifold_url = "http://localhost:7080/"
+# this one runs a new API, but currently (april 2013) there are missing
+# features; GetSession and GetPersons are still there (they should go away) and 
+# the code for retrieving metadata does not work as-is, and I have no clue 
+# what it should become anyways, so...
+#    manifold_url = "http://dev.myslice.info:7080/"
+
+    # exporting these details to js
     @staticmethod
-    def manifold_url (): 
-        return "http://%s:%s%s"%(Config.manifold_server,Config.manifold_port,Config.manifold_path)
+    def manifold_js_export ():
+        return "var MANIFOLD_URL = '%s';\n"%Config.manifold_url;