-
Notifications
You must be signed in to change notification settings - Fork 0
/
parameters.js
63 lines (57 loc) · 2.29 KB
/
parameters.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/**
* Created by vukm on 10/1/15.
*/
angular.module('scm-parameters-hotspot', [])
.factory('scmParameters', function() {
return {
endpoint: "http://192.168.43.246:8890/sparql",
graph: "http://www.xybermotive.com/geoknow/",
middle: "?default-graph-uri=" + encodeURIComponent("http://www.xybermotive.com/geoknow/") + "&",
dashboard: "http://192.168.43.246:9000"
}
});
angular.module('scm-parameters-hotspot2', [])
.factory('scmParameters', function() {
return {
endpoint: "http://192.168.43.222:8890/sparql",
graph: "http://www.xybermotive.com/geoknow/",
middle: "?default-graph-uri=" + encodeURIComponent("http://www.xybermotive.com/geoknow/") + "&",
dashboard: "http://192.168.43.222:9000"
}
});
angular.module('scm-parameters-local', [])
.factory('scmParameters', function() {
return {
endpoint: "http://localhost:8890/sparql",
graph: "http://www.xybermotive.com/geoknow/",
middle: "?default-graph-uri=" + encodeURIComponent("http://www.xybermotive.com/geoknow/") + "&",
dashboard: "http://localhost:9000"
}
});
angular.module("scm-parameters-jpo", [])
.factory("scmParameters", function() {
return {
endpoint: "http://jpo.imp.bg.ac.rs/sparql",
graph: "http://mobile-scm/dump/",
middle: "?default-graph-uri=" + encodeURIComponent("http://mobile-scm/dump/") + "&",
dashboard: "http://192.168.43.246:9000"
}
});
angular.module("scm-parameters-eccenca", [])
.factory("scmParameters", function() {
return {
endpoint: "http://p2.eccenca.com:11180/sparql",
graph: "http://mobile-scm/dump/",
middle: "?callback=JSON_CALLBACK&",
dashboard: "http://192.168.43.246:9000"
}
});
angular.module("scm-parameters-geoknow", [])
.factory("scmParameters", function() {
return {
endpoint: "http://geoknow.imp.bg.ac.rs/sparql",
graph: "http://www.xybermotive.com/geoknow/",
middle: "?default-graph-uri=" + encodeURIComponent("http://www.xybermotive.com/geoknow/") + "&",
dashboard: "http://geoknow.imp.bg.ac.rs:9000"
}
});