Sharing: add NSYN
[citadel.git] / webcit / static / wclib.js
index 792928d7969e0dc7d44c5abca52860a9603b8569..63215312651561e41a4bafb202fa8ab0cb10db5d 100644 (file)
@@ -1,19 +1,19 @@
 /*
  * JavaScript function library for WebCit.
  *
- * Copyright (c) 2005-2011 by the citadel.org team
+ * Copyright (c) 2005-2012 by the citadel.org team
  *
  * This program is open source software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
+ * it under the terms of the GNU General Public License, version 3.
  * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
+ * 
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
+ * 
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
@@ -54,8 +54,52 @@ function strcmp ( str1, str2 ) {
     return ( ( str1 == str2 ) ? 0 : ( ( str1 > str2 ) ? 1 : -1 ) );
 }
 
+function CtdlMarkLog($Which, $Status)
+{
+    if ($Status)
+       document.getElementById($Which).checked == false;
+    else
+       document.getElementById($Which).checked == true;
+}
+function ToggleLogEnable($Which)
+{
+    var p;
+    var Status = !document.getElementById($Which).checked;
+    if (Status)
+       p= encodeURI('g_cmd=LOGS ' + $Which + '|0');
+    else
+       p= encodeURI('g_cmd=LOGS ' + $Which + '|1');
+    new Ajax.Request('ajax_servcmd', {
+       method: 'post',
+       parameters: p,
+       onComplete: CtdlMarkLog($Which, Status)
+    });
+}
+
+function SMTPRunQueue()
+{
+    var p;
 
+    p= encodeURI('g_cmd=SMTP runqueue');
+    new Ajax.Request('ajax_servcmd', {
+       method: 'post',
+       parameters: p,
+       onComplete: function(transport) { ajax_important_message(transport.responseText.substr(4));}
+    });
+}
+
+function NetworkSynchronizeRoom(NodeName)
+{
+    var p;
 
+    p= encodeURI('g_cmd=NSYN ' + NodeName);
+    new Ajax.Request('ajax_servcmd', {
+       method: 'post',
+       parameters: p,
+       onComplete: function(transport) { ajax_important_message(transport.responseText.substr(4));}
+    });
+}
 function ToggleVisibility ($Which)
 {
        if (document.getElementById)
@@ -155,7 +199,50 @@ function hide_imsg_popup() {
 
        document.poppedLayer.style.visibility = "hidden";
 }
+function remove_something(what_to_search, new_visibility) {
+       if (browserType == "gecko") {
+               document.poppedLayer = eval('document.getElementById(\'' + what_to_search + '\')');
+       }
+       else if (browserType == "ie") {
+               document.poppedLayer = eval('document.all[\'' + what_to_search + '\']');
+       }
+       else {
+               document.poppedLayer = eval('document.layers[\'`' + what_to_search + '\']');
+       }
+    if (document.poppedLayer!= null)
+       document.poppedLayer.innerHTML = "";
+}
 
+function unhide_imsg_popup() {
+       if (browserType == "gecko") {
+               document.poppedLayer = eval('document.getElementById(\'important_message\')');
+       }
+       else if (browserType == "ie") {
+               document.poppedLayer = eval('document.all[\'important_message\']');
+       }
+       else {
+               document.poppedLayer = eval('document.layers[\'`important_message\']');
+       }
+
+       document.poppedLayer.style.visibility = "visible";
+    setTimeout('hide_imsg_popup()', 5000);
+}
+
+function ajax_important_message(messagetext)
+{
+    if (browserType == "gecko") {
+       document.poppedLayer = eval('document.getElementById(\'important_message\')');
+    }
+    else if (browserType == "ie") {
+       document.poppedLayer = eval('document.all[\'important_message\']');
+    }
+    else {
+       document.poppedLayer = eval('document.layers[\'`important_message\']');
+    }
+    document.poppedLayer.style.visibility = "visible";
+    setTimeout('hide_imsg_popup()', 5000);
+    document.poppedLayer.innerHTML = messagetext;
+}
 
 // This function activates the ajax-powered recipient autocompleters on the message entry screen.
 function activate_entmsg_autocompleters() {