ADD avancement sur la possibilité de réduire une conversation (pas fini)
[euphorik.git] / js / pageProfile.js
index 14ca09c..cb29198 100755 (executable)
 // GNU General Public License for more details.\r
 //\r
 // You should have received a copy of the GNU General Public License\r
-// along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.
-
-function PageProfile(client, formateur, util)
-{
-   this.nom = "profile"
-   
-   this.client = client
-   this.formateur = formateur
-   this.util = util
-}
-
-PageProfile.prototype.contenu = function()
-{
-   // pourquoi ?
-   return ""
-}
-
-PageProfile.prototype.charger = function()
-{
-   $("#page").html(this.getHTML())
-   
-   // en fonction du statut
-   if (this.client.authentifie())
-      this.chargerProfile()
-   else
-      this.chargerLogin()
-      
-   $("#page form#profile").submit(function(){return false})
-}
-
-PageProfile.prototype.chargerProfile = function()
+// along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.\r
+\r
+function PageProfile(client, formateur, util)\r
+{\r
+   this.nom = "profile"\r
+   \r
+   this.client = client\r
+   this.formateur = formateur\r
+   this.util = util\r
+}\r
+\r
+PageProfile.prototype.contenu = function()\r
+{\r
+   // pourquoi ?\r
+   return ""\r
+}\r
+\r
+PageProfile.prototype.charger = function()\r
+{\r
+   $("#page").html(this.getHTML())\r
+   \r
+   // en fonction du statut\r
+   if (this.client.authentifie())\r
+      this.chargerProfile()\r
+   else\r
+      this.chargerLogin()\r
+      \r
+   $("#page form#profile").submit(function(){return false})\r
+}\r
+\r
+PageProfile.prototype.chargerProfile = function()\r
 { \r
    var thisPage = this\r
    \r
    $("form#profile input.login").val(this.client.login)\r
    $("form#profile input.pseudo").val(this.client.pseudo)\r
-   $("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)
-   
-   $("form#profile select#affichagePseudo option").removeAttr("selected")
-   $("form#profile select#affichagePseudo option[value=" + this.client.nickFormat + "]").attr("selected", "selected")
+   $("form#profile input.email").val(this.client.email)\r
+   $("form#profile input#viewTooltips").attr("checked", this.client.viewTooltips)\r
+   $("form#profile input#viewTimes").attr("checked", this.client.viewTimes)\r
+   \r
+   $("form#profile select#degreeOstentatoire option").removeAttr("selected")\r
+   $("form#profile select#degreeOstentatoire option[value=" + this.client.ostentatiousMaster + "]").attr("selected", "selected")\r
    \r
+   $("form#profile select#affichagePseudo option").removeAttr("selected")\r
+   $("form#profile select#affichagePseudo option[value=" + this.client.nickFormat + "]").attr("selected", "selected")\r
 \r
    $("form#profile button").click(\r
       function()\r
       {\r
          thisPage.client.pseudo = thisPage.formateur.filtrerInputPseudo($("form#profile input.pseudo").val())\r
-         thisPage.client.email = $("form#profile input.email").val()
-         thisPage.client.nickFormat = $("form#profile select#affichagePseudo option:selected").attr("value") 
-         thisPage.client.viewTooltips = $("form#profile input#viewTooltips").attr("checked")
-         thisPage.client.viewTimes = $("form#profile input#viewTimes").attr("checked")
+         thisPage.client.email = $("form#profile input.email").val()\r
+         thisPage.client.nickFormat = $("form#profile select#affichagePseudo option:selected").attr("value") \r
+         thisPage.client.ostentatiousMaster = $("form#profile select#degreeOstentatoire option:selected").attr("value") \r
+         thisPage.client.viewTooltips = $("form#profile input#viewTooltips").attr("checked")\r
+         thisPage.client.viewTimes = $("form#profile input#viewTimes").attr("checked")\r
          \r
          var password = $("form#profile input.password").val()\r
          var passwordRe = $("form#profile input.passwordRe").val()  \r
@@ -81,80 +84,90 @@ PageProfile.prototype.chargerProfile = function()
          \r
          if(!thisPage.client.flush())\r
             thisPage.util.messageDialogue("Impossible de mettre à jour votre profile, causes inconnues", messageType.erreur)\r
-         else
-         {
-            thisPage.util.messageDialogue("Votre profile a été mis à jour")
-            thisPage.pages.afficherPage("minichat")
+         else\r
+         {\r
+            thisPage.util.messageDialogue("Votre profile a été mis à jour")\r
+            thisPage.pages.afficherPage("minichat")\r
          }\r
       }\r
-   )
-}
-
-PageProfile.prototype.chargerLogin = function()
-{   
-   var thisPage = this
-
-   $("#page form#profile button").click(
-      function()
-      {
-         if(thisPage.client.connexionLogin($("form#profile input.login").val(), thisPage.util.md5($("form#profile input.password").val())))
+   )\r
+}\r
+\r
+PageProfile.prototype.chargerLogin = function()\r
+{   \r
+   var thisPage = this\r
+\r
+   $("#page form#profile button").click(\r
+      function()\r
+      {\r
+         if(thisPage.client.connexionLogin($("form#profile input.login").val(), thisPage.util.md5($("form#profile input.password").val())))\r
          {\r
-            // TODO afficher un message "ok"
-            thisPage.pages.afficherPage("minichat")
-         }
-      }
-   )
-}
-
-PageProfile.prototype.getHTML = function()
-{
-return '\
-<form action="" id="profile" >\
- <table>\
-  <tr>\
-   <td>login</td>\
-   <td><input class="login" type="text" size="20" maxlength="20" ' + (this.client.authentifie() ? 'readonly="readonly"' : '') + ' /></td>\
-  </tr>\
-  <tr>\
-   <td>password</td>\
-   <td><input class="password" type="password" size="20" maxlength="20"/></td>\
-  </tr>' + 
-  (this.client.authentifie() ? '\
-  <tr>\
-   <td>password re</td>\
-   <td><input class="passwordRe" type="password" size="20" maxlength="20"/></td>\
-  </tr>\
-  <tr>\
-   <td>pseudo</td>\
-   <td><input class="pseudo" type="text" size="40" maxlength="20"/></td>\
-  </tr>\
-  <tr>\
-   <td>e-mail</td>\
-   <td><input class="email" type="text" size="40" maxlength="100"/></td>\
-  </tr>\
-  <tr>\
-   <td>Affichage des identifiants</td>\
-   <td>\
-    <select id="affichagePseudo">\
-     <option value="nick">Pseudo</option>\
-     <option value="login">Login</option>\
-     <option value="nick_login">Pseudo(Login)</option>\
-    </select>\
-   </td>\
-  </tr>\
-  <tr>\
-   <td>Afficher les infos bulles</td>\
-   <td><input type="checkbox" id="viewTooltips" /></td>\
-  </tr>\
-  <tr>\
-   <td>Afficher les dates</td>\
-   <td><input type="checkbox" id="viewTimes" /></td>\
-  </tr>' : '') + '\
-  <tr>\
-   <td></td>\
-   <td><button>Valider</button>\
-  </tr>\
- </table>\
-</form>' 
-}
-
+            // TODO afficher un message "ok"\r
+            thisPage.pages.afficherPage("minichat")\r
+         }\r
+      }\r
+   )\r
+}\r
+\r
+PageProfile.prototype.getHTML = function()\r
+{\r
+return '\\r
+<form action="" id="profile" >\\r
+ <table>\\r
+  <tr>\\r
+   <td>login</td>\\r
+   <td><input class="login" type="text" size="20" maxlength="20" ' + (this.client.authentifie() ? 'readonly="readonly"' : '') + ' /></td>\\r
+  </tr>\\r
+  <tr>\\r
+   <td>password</td>\\r
+   <td><input class="password" type="password" size="20" maxlength="20"/></td>\\r
+  </tr>' + \r
+  (this.client.authentifie() ? '\\r
+  <tr>\\r
+   <td>password re</td>\\r
+   <td><input class="passwordRe" type="password" size="20" maxlength="20"/></td>\\r
+  </tr>\\r
+  <tr>\\r
+   <td>pseudo</td>\\r
+   <td><input class="pseudo" type="text" size="40" maxlength="20"/></td>\\r
+  </tr>\\r
+  <tr>\\r
+   <td>e-mail</td>\\r
+   <td><input class="email" type="text" size="40" maxlength="100"/></td>\\r
+  </tr>\\r
+  <tr>' +\r
+   (this.client.ekMaster ? '<td>Degrée d\'ostentation</td>\\r
+   <td>\\r
+    <select id="degreeOstentatoire">\\r
+     <option value="invisible">Aucun</option>\\r
+     <option value="light">Léger</option>\\r
+     <option value="heavy">Lourd</option>\\r
+    </select>\\r
+   </td>' : '') +\r
+  '</tr>\\r
+  <tr>\\r
+   <td>Affichage des identifiants</td>\\r
+   <td>\\r
+    <select id="affichagePseudo">\\r
+     <option value="nick">Pseudo</option>\\r
+     <option value="login">Login</option>\\r
+     <option value="nick_login">Pseudo(Login)</option>\\r
+    </select>\\r
+   </td>\\r
+  </tr>\\r
+  <tr>\\r
+   <td>Afficher les infos bulles</td>\\r
+   <td><input type="checkbox" id="viewTooltips" /></td>\\r
+  </tr>\\r
+  <tr>\\r
+   <td>Afficher les dates</td>\\r
+   <td><input type="checkbox" id="viewTimes" /></td>\\r
+  </tr>' : '') + '\\r
+  <tr>\\r
+   <td></td>\\r
+   <td><button>Valider</button>\\r
+  </tr>\\r
+ </table>\\r
+</form>' \r
+}\r
+\r