ADD ajout d'une version de protocole, chaque message du client est taggé avec la...
[euphorik.git] / js / pageAdmin.js
index 6f3b3db..8fc6e22 100644 (file)
@@ -108,12 +108,11 @@ PageAdmin.prototype.posterTroll = function()
 
    var dataToSend = 
       {
 
    var dataToSend = 
       {
-         "action" : "put_troll", 
+         "header" : { "action" : "put_troll", "version" : conf.versionProtocole },
          "cookie" : this.client.cookie,
          "content" : content
       }
 
          "cookie" : this.client.cookie,
          "content" : content
       }
 
-   ;; dumpObj(dataToSend)
    jQuery.ajax(
       {
          type: "POST",
    jQuery.ajax(
       {
          type: "POST",
@@ -122,9 +121,7 @@ PageAdmin.prototype.posterTroll = function()
          data: this.util.jsonVersAction(dataToSend),
          success:
             function(data)
          data: this.util.jsonVersAction(dataToSend),
          success:
             function(data)
-            {
-               ;; dumpObj(data)
-               
+            {               
                if (data["reply"] == "ok")
                {
                   $("#page form#nouveauTroll input.troll").val("")
                if (data["reply"] == "ok")
                {
                   $("#page form#nouveauTroll input.troll").val("")
@@ -150,11 +147,10 @@ PageAdmin.prototype.majIPs = function()
 
    var dataToSend = 
       {
 
    var dataToSend = 
       {
-         "action" : "list_banned_ips", 
+         "header" : { "action" : "list_banned_ips", "version" : conf.versionProtocole },
          "cookie" : this.client.cookie
       }
 
          "cookie" : this.client.cookie
       }
 
-   ;; dumpObj(dataToSend)
    jQuery.ajax(
       {
          type: "POST",
    jQuery.ajax(
       {
          type: "POST",
@@ -163,9 +159,7 @@ PageAdmin.prototype.majIPs = function()
          data: this.util.jsonVersAction(dataToSend),
          success:
             function(data)
          data: this.util.jsonVersAction(dataToSend),
          success:
             function(data)
-            {
-               ;; dumpObj(data)
-               
+            {               
                if (data["reply"] == "list_banned_ips")
                {
                   var XHTML = ""
                if (data["reply"] == "list_banned_ips")
                {
                   var XHTML = ""
@@ -233,12 +227,11 @@ PageAdmin.prototype.deban = function(ip)
 
    var dataToSend = 
       {
 
    var dataToSend = 
       {
-         "action" : "unban", 
+         "header" : { "action" : "unban", "version" : conf.versionProtocole },
          "cookie" : this.client.cookie,
          "ip" : ip
       }
 
          "cookie" : this.client.cookie,
          "ip" : ip
       }
 
-   ;; dumpObj(dataToSend)
    jQuery.ajax(
       {
          type: "POST",
    jQuery.ajax(
       {
          type: "POST",
@@ -248,11 +241,8 @@ PageAdmin.prototype.deban = function(ip)
          success:
             function(data)
             {
          success:
             function(data)
             {
-               ;; dumpObj(data)
                if(data["reply"] == "error")
                if(data["reply"] == "error")
-               {
                   thisPageAdmin.util.messageDialogue(data["error_message"])
                   thisPageAdmin.util.messageDialogue(data["error_message"])
-               }
             }
       }
    )
             }
       }
    )
@@ -410,13 +400,12 @@ Trolls.prototype.modifier = function(id, content)
    
    var dataToSend =
       {
    
    var dataToSend =
       {
-         "action" : "mod_troll",
+         "header" : { "action" : "mod_troll", "version" : conf.versionProtocole },
          "cookie" : this.client.cookie,
          "troll_id" : id,
          "content" : content
       }
 
          "cookie" : this.client.cookie,
          "troll_id" : id,
          "content" : content
       }
 
-   ;; dumpObj(dataToSend)
    jQuery.ajax(
       {
          type: "POST",
    jQuery.ajax(
       {
          type: "POST",
@@ -426,7 +415,6 @@ Trolls.prototype.modifier = function(id, content)
          success:
             function(data)
             {
          success:
             function(data)
             {
-               ;; dumpObj(data)
                if (data["reply"] == "error")
                {
                   thisTrolls.util.messageDialogue(data["error_message"])
                if (data["reply"] == "error")
                {
                   thisTrolls.util.messageDialogue(data["error_message"])
@@ -445,12 +433,11 @@ Trolls.prototype.supprimer = function(id)
 
    var dataToSend =
       {
 
    var dataToSend =
       {
-         "action" : "del_troll",
+         "header" : { "action" : "del_troll", "version" : conf.versionProtocole },
          "cookie" : this.client.cookie,
          "troll_id" : id
       }
 
          "cookie" : this.client.cookie,
          "troll_id" : id
       }
 
-   ;; dumpObj(dataToSend)
    jQuery.ajax(
       {
          type: "POST",
    jQuery.ajax(
       {
          type: "POST",
@@ -460,7 +447,6 @@ Trolls.prototype.supprimer = function(id)
          success:
             function(data)
             {
          success:
             function(data)
             {
-               ;; dumpObj(data)
                if (data["reply"] == "error")
                {
                   thisTrolls.util.messageDialogue(data["error_message"])
                if (data["reply"] == "error")
                {
                   thisTrolls.util.messageDialogue(data["error_message"])