チェンジセット 219 : SPARQLBuilderWWW/web
- 更新日時:
- 2014/12/11 17:50:34 (10 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW/web/sparqlbuilder.js
r215 r219 24 24 $("body").prepend(builder); 25 25 return builder; 26 } 26 }; 27 27 28 28 SPARQLBuilder.prototype.showBuilder = function() { … … 66 66 self.hideBuilder(); 67 67 }); 68 } 68 }; 69 69 70 70 SPARQLBuilder.prototype.loadIcon = function(mode) { … … 74 74 document.getElementById("sparqlBuilderAjaxload").style.display = "none"; 75 75 } 76 } 76 }; 77 77 78 78 SPARQLBuilder.prototype.loadEndPointList = function() { … … 82 82 success: function(data) { 83 83 var list = eval(data); 84 var event = new $.Event('complete'); 84 85 $("#EndPointSelect").empty(); 85 86 $("#EndPointSelect").append('<option>SELECT</option>'); … … 87 88 $("#EndPointSelect").append('<option value="' + list[i] + '">' + list[i] + '</option>'); 88 89 } 90 $("#EndPointSelect").trigger(event); 89 91 }, 90 92 }); 91 } 93 }; 92 94 93 95 SPARQLBuilder.prototype.loadClassList = function() { … … 99 101 async : false, 100 102 success : function(data) { 101 list = eval(data); 103 var list = eval(data); 104 var event = new $.Event('complete'); 102 105 $("#StartClassSelect").empty(); 103 106 $("#EndClassSelect").empty(); … … 108 111 $("#EndClassSelect").append('<option value="' + list[i]['uri'] + '">' + list[i]['label'] + ' (' + list[i]['number'] + ')' + '</option>'); 109 112 } 113 $("#StartClassSelect").trigger(event) 114 $("#EndClassSelect").trigger(event) 110 115 } 111 116 }); 112 } 117 }; 113 118 114 119 SPARQLBuilder.prototype.loadPathList = function() { … … 143 148 }); 144 149 }, 100) 145 } 150 }; 146 151 147 152 SPARQLBuilder.prototype.changeEndPoint = function() { 148 153 this.endpoint = $("#EndPointSelect").val(); 149 154 this.loadClassList(); 150 } 155 }; 151 156 152 157 SPARQLBuilder.prototype.hideBuilder = function() { 153 158 this.builder.hide(); 154 } 159 }; 155 160 156 161 SPARQLBuilder.prototype.generateSPARQL = function(pathobj) { … … 172 177 } 173 178 }); 174 } 179 }; 175 180 176 181 var SPARQLBuilderDrawGraph = function(jsontext, width, pathlimit) { … … 181 186 this.NODEHEIGHT = 50; 182 187 this.MOUSEMOVED = 0; 183 } 188 }; 184 189 185 190 SPARQLBuilderDrawGraph.prototype.setPathLimit = function(pathlimit) { 186 191 this.pathlimit = pathlimit; 187 } 192 }; 188 193 189 194 SPARQLBuilderDrawGraph.prototype.view_map = function(){ … … 706 711 redraw(0); 707 712 } 708 } 713 }; 709 714 710 715 // 繝��繧ソ縺ョ菴懈�繝。繧ス繝�ラ … … 837 842 // 縺ァ縺阪◆邨先棡繧定ソ斐☆ 838 843 return ret; 839 } 844 }; 840 845 841 846 // 逕滓�縺輔l縺溘ョ繝シ繧ソ縺ョ螳滄圀縺ョ繝ュ繧ア繝シ繧キ繝ァ繝ウ繧定ィ育ョ励☆繧九Γ繧ス繝�ラ�亥�蝗槭�myNodeIndex縺�縲]odes縺ォ逕滓�縺輔l縺殤odes驟榊�縲〕inks縺ォ逕滓�縺輔l縺殕inks驟榊�縺梧ク。縺輔l繧具シ� … … 889 894 } 890 895 891 } 896 }; 892 897 893 898 // 謖�ョ壹&繧後◆隕ェ縺梧戟縺、蟄舌r霑斐☆ … … 902 907 } 903 908 return children; 904 } 909 };