チェンジセット 215 : SPARQLBuilderWWW
- 更新日時:
- 2014/12/04 15:35:27 (10 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW/web/sparqlbuilder.js
r213 r215 93 93 SPARQLBuilder.prototype.loadClassList = function() { 94 94 var url = "http://www.sparqlbuilder.org/api/clist?ep=" + encodeURIComponent(this.endpoint); 95 //var url = "http://localhost:8080/api/clist?ep=" + encodeURIComponent(this.endpoint); 95 96 $.ajax({ 96 97 type : "GET", … … 118 119 + "&startclass=" + encodeURIComponent(startclass) 119 120 + "&endclass=" + encodeURIComponent(endclass); 121 //var url = "http://localhost:8080/api/plist?ep=" + encodeURIComponent(this.endpoint) 122 // + "&startclass=" + encodeURIComponent(startclass) 123 // + "&endclass=" + encodeURIComponent(endclass); 120 124 var self = this; 121 125 self.loadIcon("view"); … … 152 156 SPARQLBuilder.prototype.generateSPARQL = function(pathobj) { 153 157 var path = JSON.stringify(pathobj); 154 var url = 'http://www.sparqlbuilder.org/api/sparql?jsonpath=' + encodeURIComponent(path); 158 var url = 'http://www.sparqlbuilder.org/api/sparql?path=' + encodeURIComponent(path); 159 //var url = 'http://localhost:8080/api/sparql?path=' + encodeURIComponent(path); 155 160 var sparql = ''; 156 161 var self = this;