Drag+Drop move: propperly escape the roomname so + and friends in roomnames remain...
[citadel.git] / webcit / static / wclib.js
index ae7d20c8af1a3cc2eba3df82f3299676407c41d5..de48e2efbf8c37a6112109c341586ca6274048c0 100644 (file)
@@ -89,6 +89,17 @@ function SMTPRunQueue()
     });
 }
 
+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)
@@ -377,11 +388,12 @@ function addRoomToList(floorUL,room, roomToEmphasize) {
 function roomListDropHandler(target, dropped) {
   if (dropped.getAttribute("citadel:msgid")) {
       var room = getTextContent(target);
+      console.log(room);
       var msgIds = "";
       for(msgId in currentlyMarkedRows) { //defined in summaryview.js
          msgIds += ","+msgId;
          if (msgIds.length > 800) {
-             var mvCommand = encodeURI("g_cmd=MOVE " + msgIds + "|"+room+"|0");
+             var mvCommand = "g_cmd=MOVE%20" + msgIds + "|"+encodeURIComponent(room)+"|0";
              new Ajax.Request("ajax_servcmd", {
                  parameters: mvCommand,
                  method: 'post',
@@ -390,7 +402,7 @@ function roomListDropHandler(target, dropped) {
          }
 
       }
-      var mvCommand = encodeURI("g_cmd=MOVE " + msgIds + "|"+room+"|0");
+      var mvCommand = "g_cmd=MOVE%20" + msgIds + "|"+encodeURIComponent(room)+"|0";
       new Ajax.Request('ajax_servcmd', {
          method: 'post',
          parameters: mvCommand,
@@ -920,8 +932,8 @@ function WCLog(msg) {
 }
 
 function RefreshSMTPqueueDisplay() {
-       new Ajax.Updater('smtpqueue_inner_div',
-       'display_smtpqueue_inner_div', { method: 'get',
+       new Ajax.Updater('mailqueue_list',
+       'dotskip?room=__CitadelSMTPspoolout__&view=11&ListOnly=yes', { method: 'get',
                parameters: Math.random() } );
 }
 
@@ -931,7 +943,7 @@ function DeleteSMTPqueueMsg(msgnum1, msgnum2) {
                'ajax_servcmd', {
                        method: 'post',
                        parameters: p,
-                       onComplete: RefreshSMTPqueueDisplay()
+                       onComplete: function(transport) { ajax_important_message(transport.responseText.substr(4)); RefreshSMTPqueueDisplay();}
                }
        );
 }