comparison popoto/js/app-ismi.js @ 2:130beb4cabec

fixed url for ismi-dev.
author casties
date Tue, 01 Sep 2015 17:01:01 +0200
parents db013b2f3e10
children 72dc19d750ad
comparison
equal deleted inserted replaced
1:db013b2f3e10 2:130beb4cabec
2 * URL used to access Neo4j REST API to execute queries. 2 * URL used to access Neo4j REST API to execute queries.
3 * Update this parameter to your running server instance. 3 * Update this parameter to your running server instance.
4 * 4 *
5 * For more information on Neo4J REST API the documentation is available here: http://neo4j.com/docs/stable/rest-api-cypher.html 5 * For more information on Neo4J REST API the documentation is available here: http://neo4j.com/docs/stable/rest-api-cypher.html
6 */ 6 */
7 popoto.rest.CYPHER_URL = "https://ismi-dev.mpiwg-berlin.mpg.de:7473/db/data/transaction/commit"; 7 popoto.rest.CYPHER_URL = "https://ismi-dev.mpiwg-berlin.mpg.de/neo4j-ismi/db/data/transaction/commit";
8 //popoto.rest.CYPHER_URL = "http://localhost:7474/db/data/transaction/commit"; 8 //popoto.rest.CYPHER_URL = "http://localhost:7474/db/data/transaction/commit";
9 9
10 /** 10 /**
11 * Add this authorization property if your Neo4j server uses basic HTTP authentication. 11 * Add this authorization property if your Neo4j server uses basic HTTP authentication.
12 * The value of this property must be "Basic <payload>", where "payload" is a base64 encoded string of "username:password". 12 * The value of this property must be "Basic <payload>", where "payload" is a base64 encoded string of "username:password".