X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageProfile.js;h=99f2cfbe23894c91ff7b0748da592a437a255bc0;hp=7f3a64b954c3f55cff5ad2fc44a12fb6287a89bc;hb=24ed7a141aa345454300dd260bbabae3a9f92408;hpb=09608ab29e1c39ea51b51a5f8669dcde36efb306 diff --git a/js/pageProfile.js b/js/pageProfile.js index 7f3a64b..99f2cfb 100755 --- a/js/pageProfile.js +++ b/js/pageProfile.js @@ -17,10 +17,10 @@ // along with Euphorik. If not, see . euphorik.PageProfile = function(client, formater, util) { - this.nom = "profile"; + this.name = "profile"; this.client = client; - this.formateur = formater; + this.formater = formater; this.util = util; }; @@ -46,7 +46,7 @@ euphorik.PageProfile.prototype.chargerProfile = function() { var thisPage = this; $("form#profile input.login").val(this.client.login); - $("form#profile input.pseudo").val(this.client.pseudo); + $("form#profile input.nick").val(this.client.nick); $("form#profile input.email").val(this.client.email); $("form#profile input#viewTooltips").attr("checked", this.client.viewTooltips); $("form#profile input#viewTimes").attr("checked", this.client.viewTimes); @@ -64,7 +64,7 @@ euphorik.PageProfile.prototype.chargerProfile = function() { $("form#profile button").click( function() { - thisPage.client.pseudo = thisPage.formate.filtrerInputPseudo($("form#profile input.pseudo").val()); + thisPage.client.nick = thisPage.formate.filtrerInputPseudo($("form#profile input.nick").val()); thisPage.client.email = $("form#profile input.email").val(); thisPage.client.chatOrder = $("form#profile select#chatOrder option:selected").attr("value"); thisPage.client.nickFormat = $("form#profile select#affichagePseudo option:selected").attr("value"); @@ -78,17 +78,17 @@ euphorik.PageProfile.prototype.chargerProfile = function() { var passwordRe = $("form#profile input.passwordRe").val(); if (password !== "" || passwordRe !== "") { if (password !== passwordRe) { - thisPage.util.messageDialogue("Les mots de passes ne correspondent pas"); + thisPage.util.messageDialog("Les mots de passes ne correspondent pas"); return; } thisPage.client.password = thisPage.util.md5(password); } if(!thisPage.client.flush()) { - thisPage.util.messageDialogue("Impossible de mettre à jour votre profile, causes inconnues", euphorik.Util.messageType.erreur); + thisPage.util.messageDialog("Impossible de mettre à jour votre profile, causes inconnues", euphorik.Util.messageType.erreur); } else { - thisPage.util.messageDialogue("Votre profile a été mis à jour"); - thisPage.pages.afficherPage("minichat"); + thisPage.util.messageDialog("Votre profile a été mis à jour"); + thisPage.pages.displayPage("minichat"); } } ); @@ -101,7 +101,7 @@ euphorik.PageProfile.prototype.chargerLogin = function() { function() { if(thisPage.client.connexionLogin($("form#profile input.login").val(), thisPage.util.md5($("form#profile input.password").val()))) { // TODO afficher un message "ok" - thisPage.pages.afficherPage("minichat"); + thisPage.pages.displayPage("minichat"); } } ); @@ -125,8 +125,8 @@ euphorik.PageProfile.prototype.getHTML = function() { ' ' + ' ' + ' ' + - ' pseudo' + - ' ' + + ' nick' + + ' ' + ' ' + ' ' + ' e-mail' +