X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2Fchat%2Fcommandes.js;h=0c3d23b26a31ce125f0b86bab4c8a293df3d998f;hp=dbcc76ab9dbee327949558f6a99fdfa2f07c86a1;hb=5dc140390551c133ac5525725a86854ca69679af;hpb=e49a1c483f1751f129c0766d1061b3da44b60581 diff --git a/js/chat/commandes.js b/js/chat/commandes.js index dbcc76a..0c3d23b 100644 --- a/js/chat/commandes.js +++ b/js/chat/commandes.js @@ -25,7 +25,7 @@ * * Voici les commandes supportées : * /nick - * Modifie le pseudo courant + * Modifie le nick courant */ euphorik.Commandes = function(client, pageMinichat, util, formater) { var thisCommandes = this; @@ -39,8 +39,8 @@ euphorik.Commandes = function(client, pageMinichat, util, formater) { this.texteAide = "

Commandes

"; @@ -50,16 +50,16 @@ euphorik.Commandes.statut = {ok : 0, pas_une_commande : 1, erreur_commande : 2}; euphorik.Commandes.liste = { "nick" : { - description : "Change le pseudo courant", - usage : "/nick ", + description : "Change le nick courant", + usage : "/nick ", exec : function(args, client) { if (args.length === 0) { return [euphorik.Commandes.statut.erreur_commande, 'Utilisation de la commande : ' + this.usage]; } - client.pseudo = args[0]; - $("form#posterMessage input.pseudo").val(client.pseudo); + client.nick = args[0]; + $("form#posterMessage input.nick").val(client.nick); return [euphorik.Commandes.statut.ok, '']; } @@ -94,27 +94,27 @@ euphorik.Commandes.prototype.exec = function(chaine) { return [euphorik.Commandes.statut.pas_une_commande, '']; } - var nomCommande = fragments[0].slice(1); + var commandName = fragments[0].slice(1); var args = fragments.slice(1); - if (nomCommande === "") { + if (commandName === "") { return [euphorik.Commandes.statut.erreur_commande, 'La commande est vide']; } // commandes spéciales pour afficher l'aide : "?", "h", "help", "aide" - if (nomCommande === "?" || nomCommande === "h" || nomCommande === "help" || nomCommande === "aide") { + if (commandName === "?" || commandName === "h" || commandName === "help" || commandName === "aide") { this.util.messageDialog( this.texteAide, euphorik.Util.messageType.informatif, - {"fermer" : function(){}}, + {"close" : function(){}}, false, -1 ); return [euphorik.Commandes.statut.ok, '']; } - if (euphorik.Commandes.liste.hasOwnProperty(nomCommande)) { - return euphorik.Commandes.liste[nomCommande].exec(args, this.client, this.pageMinichat); + if (euphorik.Commandes.liste.hasOwnProperty(commandName)) { + return euphorik.Commandes.liste[commandName].exec(args, this.client, this.pageMinichat); } - return [euphorik.Commandes.statut.erreur_commande, 'La commande /' + nomCommande + ' est inconnue']; + return [euphorik.Commandes.statut.erreur_commande, 'La commande /' + commandName + ' est inconnue']; };