X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageAdmin.js;h=fc1d51a80ff060e8857df49d533d226f7ecf1d22;hp=04b642c3e7b7689898658b1a0befb8962abdfeef;hb=c8744484cda0d18ec3c13f835785dddf14786743;hpb=3a3ceb24e4a4f3bbec9ec72c945b0cf1bb1ef1a6 diff --git a/js/pageAdmin.js b/js/pageAdmin.js index 04b642c..fc1d51a 100644 --- a/js/pageAdmin.js +++ b/js/pageAdmin.js @@ -17,9 +17,9 @@ // along with Euphorik. If not, see . // // La page d'administation, ne peut être accédée que par les ekMaster (admins) - -/*jslint laxbreak:true */ - + +/*jslint laxbreak:true */ + euphorik.PageAdmin = function(client, formateur, util) { this.nom = "admin"; @@ -84,7 +84,7 @@ euphorik.PageAdmin.prototype.decharger = function() { // supprime le rafraichissement période des ips if (this.timeoutIDmajIPs) { - clearTimeout(this.timeoutIDmajIPs); + clearTimeout(this.timeoutIDmajIPs); } }; @@ -129,7 +129,7 @@ euphorik.PageAdmin.prototype.posterTroll = function() { */ euphorik.PageAdmin.prototype.majIPs = function() { if (this.timeoutIDmajIPs) { - clearTimeout(this.timeoutIDmajIPs); + clearTimeout(this.timeoutIDmajIPs); } var thisPageAdmin = this; @@ -147,13 +147,13 @@ euphorik.PageAdmin.prototype.majIPs = function() { success: function(data) { if (data.reply === "list_banned_ips") { - var XHTML = ""; - data.list.each(function(ip) { + var XHTML = ""; + data.list.each(function(i, ip) { XHTML += '
' + ip.ip + '|' + '' + ip.remaining_time + - '|'; - ip.users.each(function(user) { + '|'; + ip.users.each(function(j, user) { XHTML += (j > 0 ? ", " : "") + '' + thisPageAdmin.formateur.traitementComplet(user.nick) + '' + (user.login === "" ? "" : ''); @@ -162,7 +162,7 @@ euphorik.PageAdmin.prototype.majIPs = function() { }); if (data.list.length === 0) { - XHTML += '

Aucune IP bannie

'; + XHTML += '

Aucune IP bannie

'; } $("#ips").html(XHTML); @@ -212,7 +212,7 @@ euphorik.PageAdmin.prototype.deban = function(ip) { success: function(data){ if(data.reply === "error") { - thisPageAdmin.util.messageDialogue(data.error_message); + thisPageAdmin.util.messageDialogue(data.error_message); } } }); @@ -263,12 +263,12 @@ euphorik.Trolls = function(client, util, formateur) { euphorik.Trolls.prototype.ajouterTrollEvent = function(data) { var thisTrolls = this; - var XHTML = ""; - data.trolls.each(function(trollData) { + var XHTML = ""; + data.trolls.each(function(i, trollData) { var troll = new euphorik.Troll(trollData.content, trollData.author); var trollId = trollData.troll_id; thisTrolls.trolls[trollId] = troll; - + XHTML += '
' + '' + thisTrolls.formateur.traitementComplet(troll.content, troll.author) + '' + @@ -287,10 +287,10 @@ euphorik.Trolls.prototype.ajouterTrollEvent = function(data) { $(this).keypress( function(e) { if (e.which === 13) { // return - $(".modifier", this).click(); + $(".modifier", this).click(); } } - ); + ); $(".delTroll", this).click( function() { @@ -305,12 +305,12 @@ euphorik.Trolls.prototype.ajouterTrollEvent = function(data) { } ); } - ); + ); $(".editTroll", this).click( function() { $("span", troll).css("display", "none"); - $(troll).append( + $(troll).append( '

modifierannuler

' @@ -336,7 +336,7 @@ euphorik.Trolls.prototype.ajouterTrollEvent = function(data) { ); if (data.trolls.length > 0) { - thisTrolls.dernierTroll = data.trolls[data.trolls.length - 1].troll_id; + thisTrolls.dernierTroll = data.trolls[data.trolls.length - 1].troll_id; } }; @@ -347,11 +347,11 @@ euphorik.Trolls.prototype.modifierTrollEvent = function(data) { thisTrolls.trolls[data.troll_id].content = data.content; }; -Trolls.prototype.supprimerTrollEvent = function(data) { +euphorik.Trolls.prototype.supprimerTrollEvent = function(data) { $("#trolls #troll" + data.troll_id).remove(); }; -Trolls.prototype.modifier = function(id, content) { +euphorik.Trolls.prototype.modifier = function(id, content) { var thisTrolls = this; var dataToSend = {