X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fuwobo-panel%2Fcontrol.js;h=9858fe1400c6d8a53f8a8e27d2b089ca37b33154;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=d94b9b2ce0283a914c3cb515cdf14c0a28b87c28;hpb=9d52e9315d9f6e401f21f1ec9e772197ea89cc55;p=helm.git diff --git a/helm/uwobo-panel/control.js b/helm/uwobo-panel/control.js index d94b9b2ce..9858fe140 100644 --- a/helm/uwobo-panel/control.js +++ b/helm/uwobo-panel/control.js @@ -13,14 +13,19 @@ function getParam(name, def) return value; } +function getInitialPort() +{ + return "38080"; +} + function getInitialProcessorURL() { - return getParam("processorURL", "http://phd.cs.unibo.it:8080/helm/servlet/uwobo/"); + return getParam("processorURL", "http://mowgli.cs.unibo.it:58080/"); } function getInitialGetterURL() { - return getParam("getterURL", "http://phd.cs.unibo.it:8081/"); + return getParam("getterURL", "http://mowgli.cs.unibo.it:58081/"); } function getUwoboURL() @@ -38,7 +43,7 @@ function selectUwoboURL(ss) if (ss.selectedIndex == 0) { document.uwoboURL.elements[0].value = ""; } else { - document.uwoboURL.elements[0].value = "http://" + ss.options[ss.selectedIndex].value + ":8080/helm/servlet/uwobo/"; + document.uwoboURL.elements[0].value = "http://" + ss.options[ss.selectedIndex].value + ":58080/"; } } @@ -86,6 +91,44 @@ function selectPredefinedStylesheet(ss) document.loadEscape.elements[0].checked = true; } +function getProfileParams() +{ + var password = document.getParamsProfilePassword.elements[0].value; + if (password != "") { password = "&password=" + password; }; + + top.result.location.replace(getUwoboURL() + "getparams?id=" + document.getParamsProfileID.elements[0].value + password); +} + +function setProfileParam() +{ + var password = document.setParamProfilePassword.elements[0].value; + if (password != "") { password = "&password=" + password; }; + + top.result.location.replace(getUwoboURL() + "setparam?id=" + document.setParamProfileID.elements[0].value + "&key=" + document.setParamProfileKey.elements[0].value + "&value=" + document.setParamProfileValue.elements[0].value + password); +} + +function createProfile() +{ + var id = document.createProfileID.elements[0].value; + if (id != "") { id = "&id=" + id; }; + + var password = document.createProfilePassword.elements[0].value; + if (password != "") { password = "&password=" + password; }; + + var clone = document.createProfileClone.elements[0].value; + if (clone != "") { clone = "&orig=" + clone; }; + + top.result.location.replace(getUwoboURL() + "createprofile?foo=x" + id + password + clone); +} + +function removeProfile() +{ + var password = document.removeProfilePassword.elements[0].value; + if (password != "") { password = "&password=" + password; }; + + top.result.location.replace(getUwoboURL() + "removeprofile?id=" + document.removeProfileID.elements[0].value + password); +} + function getStylesheetURL() { var s; @@ -113,7 +156,7 @@ function removeStylesheet() function removeAllStylesheets() { - top.result.location.replace(getUwoboURL() + "remove"); + top.result.location.replace(getUwoboURL() + "remove?keys="); } function reloadStylesheet() @@ -121,6 +164,11 @@ function reloadStylesheet() top.result.location.replace(getUwoboURL() + "reload?keys=" + document.stylesheetKey.elements[0].value); } +function reloadAllStylesheets() +{ + top.result.location.replace(getUwoboURL() + 'reload?keys='); +} + function loadAllPredefined() { with (document.predefinedStylesheets.elements[0]) { @@ -142,7 +190,7 @@ function removeAllPredefined() var request = ""; for (i = 1; i < length; i++) - request += getPredefinedStylesheetKey(i) + ","; + request += getPredefinedStylesheetKey(i) + (i == length - 1 ? "" : ","); top.result.location.replace(getUwoboURL() + "remove?keys=" + request); } }