equal
deleted
inserted
replaced
164 |
164 |
165 # url of the sesame repository containing all the rdf referentials |
165 # url of the sesame repository containing all the rdf referentials |
166 SPARQL_QUERY_ENDPOINT = "http://localhost:8080/openrdf-sesame/repositories/plan4learning" |
166 SPARQL_QUERY_ENDPOINT = "http://localhost:8080/openrdf-sesame/repositories/plan4learning" |
167 |
167 |
168 # cf http://docs.python.org/2/library/subprocess.html#popen-constructor |
168 # cf http://docs.python.org/2/library/subprocess.html#popen-constructor |
169 ADMIN_COMMAND_SCRIPT = {} |
169 ADMIN_SCRIPT = { |
|
170 'args' : [ sys.executable, "manage.py", "dump_record", "--newline", "-j", "/tmp/script_dump.rdf.bz2"], |
|
171 'cwd' : "/Users/ymh/dev/workspace/plan4learning/src", |
|
172 'env' : {'PYTHONPATH': '/Users/ymh/dev/venvs/p4l/lib/python2.7/site-packages'} |
|
173 } |
|
174 |