X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageAdmin.js;h=ab91eecd042caccb142acd12a29c62e637ea9589;hp=db50c4ba136a70fe024818abb16172192fa6e218;hb=deff7a2f11dca2b300b258d1e93d71e3b2e34c84;hpb=5790c374341c5e542ff17a8f245bb5aa43af1d58 diff --git a/js/pageAdmin.js b/js/pageAdmin.js index db50c4b..ab91eec 100644 --- a/js/pageAdmin.js +++ b/js/pageAdmin.js @@ -26,7 +26,7 @@ function PageAdmin(client, formateur, util) this.formateur = formateur this.util = util - this.pageEvent = new PageEvent("admin", this.util) + this.pageEvent = new euphorik.PageEvent("admin", this.util) // le timer qui rappelle periodiquement le rafraichissement des IP bannies this.timeoutIDmajIPs = null @@ -108,12 +108,11 @@ PageAdmin.prototype.posterTroll = function() var dataToSend = { - "action" : "put_troll", + "header" : { "action" : "put_troll", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie, "content" : content } - ;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -122,9 +121,7 @@ PageAdmin.prototype.posterTroll = function() data: this.util.jsonVersAction(dataToSend), success: function(data) - { - ;; dumpObj(data) - + { if (data["reply"] == "ok") { $("#page form#nouveauTroll input.troll").val("") @@ -150,11 +147,10 @@ PageAdmin.prototype.majIPs = function() var dataToSend = { - "action" : "list_banned_ips", + "header" : { "action" : "list_banned_ips", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie } - ;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -163,9 +159,7 @@ PageAdmin.prototype.majIPs = function() data: this.util.jsonVersAction(dataToSend), success: function(data) - { - ;; dumpObj(data) - + { if (data["reply"] == "list_banned_ips") { var XHTML = "" @@ -198,7 +192,7 @@ PageAdmin.prototype.majIPs = function() $(".deban", this).click( function() { - thisPageAdmin.util.messageDialogue("Êtes-vous sur de vouloir débannir l'IP ''" + ip + "'' ?", messageType.question, + thisPageAdmin.util.messageDialogue("Êtes-vous sur de vouloir débannir l'IP ''" + ip + "'' ?", euphorik.Util.messageType.question, {"Oui" : function() { thisPageAdmin.deban(ip) @@ -233,12 +227,11 @@ PageAdmin.prototype.deban = function(ip) var dataToSend = { - "action" : "unban", + "header" : { "action" : "unban", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie, "ip" : ip } - ;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -248,11 +241,8 @@ PageAdmin.prototype.deban = function(ip) success: function(data) { - ;; dumpObj(data) if(data["reply"] == "error") - { thisPageAdmin.util.messageDialogue(data["error_message"]) - } } } ) @@ -269,8 +259,8 @@ PageAdmin.prototype.waitEvent = function() function() { return { "last_troll" : thisPageAdmin.trolls.dernierTroll }}, { "troll_added" : function(data){ thisPageAdmin.trolls.ajouterTrollEvent(data) }, - "troll_modified" : function(data){ thisPageAdmin.trolls.modifierTrollEvent }, - "troll_deleted" : function(data){ thisPageAdmin.trolls.supprimerTrollEvent }, + "troll_modified" : function(data){ thisPageAdmin.trolls.modifierTrollEvent(data) }, + "troll_deleted" : function(data){ thisPageAdmin.trolls.supprimerTrollEvent(data) }, "banned_ips_refresh" : function(data){ thisPageAdmin.majIPs() }, "error" : function(data) @@ -345,7 +335,7 @@ Trolls.prototype.ajouterTrollEvent = function(data) { thisTrolls.util.messageDialogue( "Êtes-vous sur de vouloir supprimer le troll \"" + thisTrolls.trolls[id].content + "\" ?", - messageType.question, + euphorik.Util.messageType.question, { "oui" : function() { @@ -410,13 +400,12 @@ Trolls.prototype.modifier = function(id, content) var dataToSend = { - "action" : "mod_troll", + "header" : { "action" : "mod_troll", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie, "troll_id" : id, "content" : content } - ;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -426,7 +415,6 @@ Trolls.prototype.modifier = function(id, content) success: function(data) { - ;; dumpObj(data) if (data["reply"] == "error") { thisTrolls.util.messageDialogue(data["error_message"]) @@ -445,12 +433,11 @@ Trolls.prototype.supprimer = function(id) var dataToSend = { - "action" : "del_troll", + "header" : { "action" : "del_troll", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie, "troll_id" : id } - ;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -460,7 +447,6 @@ Trolls.prototype.supprimer = function(id) success: function(data) { - ;; dumpObj(data) if (data["reply"] == "error") { thisTrolls.util.messageDialogue(data["error_message"])