]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/uwobo-panel/control.js
* syntax update for "remove all stylesheets" in control.js
[helm.git] / helm / uwobo-panel / control.js
index 4680ed3d866d47706583275d33869417459c7e83..e9376ec97c8b52cb2aa7cbf5155387d1c4b2719c 100644 (file)
@@ -20,12 +20,12 @@ function getInitialPort()
 
 function getInitialProcessorURL()
 {
-  return getParam("processorURL", "http://localhost:58080/");
+  return getParam("processorURL", "http://phd.cs.unibo.it:8080/helm/servlet/uwobo/");
 }
 
 function getInitialGetterURL()
 {
-  return getParam("getterURL", "http://localhost:58081/");
+  return getParam("getterURL", "http://phd.cs.unibo.it:8081/");
 }
 
 function getUwoboURL()
@@ -43,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 + ":58080/";
+    document.uwoboURL.elements[0].value = "http://" + ss.options[ss.selectedIndex].value + ":8080/helm/servlet/uwobo/";
   }
 }
 
@@ -52,7 +52,7 @@ function selectGetterURL(ss)
   if (ss.selectedIndex == 0) {
     document.getterURL.elements[0].value = "";
   } else {
-    document.getterURL.elements[0].value = "http://" + ss.options[ss.selectedIndex].value + ":58081/";
+    document.getterURL.elements[0].value = "http://" + ss.options[ss.selectedIndex].value + ":8081/";
   }
 }
 
@@ -118,7 +118,7 @@ function removeStylesheet()
 
 function removeAllStylesheets()
 {
-  top.result.location.replace(getUwoboURL() + "remove");
+  top.result.location.replace(getUwoboURL() + "remove?keys=");
 }
 
 function reloadStylesheet()
@@ -126,6 +126,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]) {