X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2Feuphorik.js;h=afe0251e7da2334b843588c58c77a5bcf00a2d96;hp=3b17bf58cc98df397313e3a649c35100a4d49f27;hb=d1dff528ecf8ace680f8ba92d11b09e84fd6ff2f;hpb=0864f5fa5ccd1ce99e88c08d25a2f8ea18525d56 diff --git a/js/euphorik.js b/js/euphorik.js index 3b17bf5..afe0251 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -1,815 +1,174 @@ -// coding: utf-8 - -/** - * Contient la base javascript pour le site euphorik.ch. +// coding: utf-8 +// Copyright 2008 Grégory Burri +// +// This file is part of Euphorik. +// +// Euphorik is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Euphorik is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with Euphorik. If not, see . + +/** + * Contient la base javascript pour le site euphorik.ch. * Chaque page possède son propre fichier js nommé "page.js". * Auteur : GBurri * Date : 6.11.2007 */ - +// tout euphorik est contenu dans cet objet +var euphorik = {} +// ;; euphorik.include = + //;; euphorik.include = function(f) { var s = document.createElement('script'); s.type = 'text/javascript'; s.src = "js/" + f + ".js"; document.getElementsByTagName('head')[0].appendChild(s); } + + +// version jQuery : function(f) { jQuery.ajax({async : false, url : "js/" + f + ".js", dataType : "script"}) } +// mais comme il n'est pas encore chargé... +;; euphorik.include = function(f) { +;; var req, url = 'js/' + f + '.js' +;; if (window.XMLHttpRequest) { +;; req = new XMLHttpRequest(); req.open("GET", url, false); req.send(null); +;; } else if (window.ActiveXObject) { +;; req = new ActiveXObject((navigator.userAgent.toLowerCase().indexOf('msie 5') != -1) ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP"); +;; if (req) { req.open("GET", url, false); req.send(); } +;; } +;; if (req!==false) { if (req.status==200) { window.eval(req.responseText); } else if (req.status==404) { alert("erreur de chargement (404) de : " + url) } } +;; }; + +;; euphorik.include("jquery"); +;; euphorik.include("jquery.lightbox"); +;; euphorik.include("md5"); +;; euphorik.include("json2"); +;; euphorik.include("comet"); + +;; euphorik.include("conf"); +;; euphorik.include("util"); +;; euphorik.include("formateur"); +;; euphorik.include("pages"); +;; euphorik.include("client"); + +;; euphorik.include("pageMinichat/pageMinichat"); +;; euphorik.include("pageMinichat/conversation"); +;; euphorik.include("pageMinichat/conversations"); +;; euphorik.include("pageMinichat/message"); +;; euphorik.include("pageMinichat/commandes"); +;; euphorik.include("pageAdmin"); +;; euphorik.include("pageProfile"); +;; euphorik.include("pageRegister"); +;; euphorik.include("pageAbout"); + +// tout un tas d'améliorations de JavaScript ;) /** - * La configuration. - * Normalement 'const' à la place de 'var' mais non supporté par IE7. - */ -var conf = { - nbMessageAffiche : 10, // (par page) - pseudoDefaut : "", - tempsAffichageMessageDialogue : 4000, // en ms - smiles : { - "smile" : [/:\)/g, /:-\)/g], - "bigsmile" : [/:D/g, /:-D/g], - "clin" : [/;\)/g, /;-\)/g], - "cool" : [/8\)/g, /8-\)/g], - "eheheh" : [/:P/g, /:-P/g], - "lol" : [/\[-lol\]/g], - "spliff" : [/\[-spliff\]/g], - "oh" : [/:o/g, /:O/g], - "heink" : [/\[-heink\]/g], - "hum" : [/\[-hum\]/g], - "boh" : [/\[-boh\]/g], - "sniff" : [/:\(/g, /:-\(/g], - "triste" : [/\[-triste\]/g], - "pascontent" : [/>\(/g, />\(/g], - "argn" : [/\[-argn\]/g], - "redface" : [/\[-redface\]/g], - "bunny" : [/\[-lapin\]/g], - "chat" : [/\[-chat\]/g], - "renne" : [/\[-renne\]/g], - "star" : [/\[-star\]/g], - "kirby" : [/\[-kirby\]/g], - "slurp" : [/\[-slurp\]/g], - "agreed" : [/\[-agreed\]/g], - "dodo" : [/\[-dodo\]/g] - } -} - -/////////////////////////////////////////////////////////////////////////////////////////////////// - -String.prototype.trim = function() -{ - return jQuery.trim(this) // anciennement : this.replace(/^\s+|\s+$/g, ""); -} - -String.prototype.ltrim = function() -{ - return this.replace(/^\s+/, ""); -} - -String.prototype.rtrim = function() -{ - return this.replace(/\s+$/, ""); -} - -/////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * Cette classe regroupe des fonctions utilitaires (helpers). + * Pour chaque propriété de l'objet execute f(p, v) ou p est le nom de la propriété et v sa valeur. + * Ne parcours pas les propriétés des prototypes. + * FIXME : Normalement : Object.prototype.each = function(f) mais non supporté par jquery */ -function Util() -{ - jQuery("#info .fermer").click(function(){ - jQuery("#info").slideUp(50) - }) -} - -/** - * Affiche une boite de dialogue avec un message à l'intérieur. - * @param message le message (string) - * @param type voir 'messageType'. par défaut messageType.informatif - * @param les boutons sous la forme d'un objet ou les clefs sont les labels des boutons - * et les valeurs les fonctions executées lorsqu'un bouton est activé. - */ -Util.prototype.messageDialogue = function(message, type, boutons) -{ - if (type == undefined) - type = messageType.informatif - - if (this.timeoutMessageDialogue != undefined) - clearTimeout(this.timeoutMessageDialogue) - - var fermer = function(){jQuery("#info").slideUp(100)} - fermer() - - jQuery("#info .message").html(message) - switch(type) - { - case messageType.informatif : jQuery("#info #icone").attr("class", "information"); break - case messageType.question : jQuery("#info #icone").attr("class", "interrogation"); break - case messageType.erreur : jQuery("#info #icone").attr("class", "exclamation"); break - } - jQuery("#info .boutons").html("") - for (var b in boutons) - jQuery("#info .boutons").append("
" + b + "
").find("div:last").click(boutons[b]).click(fermer) - - jQuery("#info").slideDown(200) - this.timeoutMessageDialogue = setTimeout(fermer, conf.tempsAffichageMessageDialogue) -} - -var messageType = {informatif: 0, question: 1, erreur: 2} - -/** - * Utilisé pour l'envoie de donnée avec la méthode ajax de jQuery. - */ -Util.prototype.jsonVersAction = function(json) -{ - return {action : JSON.stringify(json) } -} - -Util.prototype.md5 = function(chaine) -{ - return hex_md5(chaine) -} - -// pompé de http://www.faqts.com/knowledge_base/view.phtml/aid/13562/fid/130 -Util.prototype.setSelectionRange = function(input, selectionStart, selectionEnd) -{ - if (input.setSelectionRange) - { - input.focus() - input.setSelectionRange(selectionStart, selectionEnd) - } - else if (input.createTextRange) - { - var range = input.createTextRange() - range.collapse(true) - range.moveEnd('character', selectionEnd) - range.moveStart('character', selectionStart) - range.select() - } -} - -Util.prototype.setCaretToEnd = function(input) -{ - this.setSelectionRange(input, input.value.length, input.value.length) -} -Util.prototype.setCaretToBegin = function(input) -{ - this.setSelectionRange(input, 0, 0) -} -Util.prototype.setCaretToPos = function(input, pos) -{ - this.setSelectionRange(input, pos, pos) -} -Util.prototype.selectString = function(input, string) -{ - var match = new RegExp(string, "i").exec(input.value) - if (match) - { - this.setSelectionRange (input, match.index, match.index + match[0].length) - } -} -Util.prototype.replaceSelection = function(input, replaceString) { - if (input.setSelectionRange) - { - var selectionStart = input.selectionStart - var selectionEnd = input.selectionEnd - input.value = input.value.substring(0, selectionStart) + replaceString + input.value.substring(selectionEnd) - - if (selectionStart != selectionEnd) // has there been a selection - this.setSelectionRange(input, selectionStart, selectionStart + replaceString.length) - else // set caret - this.setCaretToPos(input, selectionStart + replaceString.length) - } - else if (document.selection) - { - var range = document.selection.createRange(); - if (range.parentElement() == input) - { - var isCollapsed = range.text == '' - range.text = replaceString - if (!isCollapsed) - { - // there has been a selection - // it appears range.select() should select the newly - // inserted text but that fails with IE - range.moveStart('character', -replaceString.length); - range.select(); - } - } - } -} - -Util.prototype.rot13 = function(chaine) -{ - var ACode = 'A'.charCodeAt(0) - var aCode = 'a'.charCodeAt(0) - var MCode = 'M'.charCodeAt(0) - var mCode = 'm'.charCodeAt(0) - var ZCode = 'Z'.charCodeAt(0) - var zCode = 'z'.charCodeAt(0) - - var f = function(ch, pos) { - if (pos == ch.length) - return "" - - var c = ch.charCodeAt(pos); - return String.fromCharCode( - c + - (c >= ACode && c <= MCode || c >= aCode && c <= mCode ? 13 : - (c > MCode && c <= ZCode || c > mCode && c <= zCode ? -13 : 0)) - ) + f(ch, pos + 1) - } - return f(chaine, 0) -} - -/////////////////////////////////////////////////////////////////////////////////////////////////// - -function Pages() -{ - this.pageCourante = null - this.pages = {} -} - -Pages.prototype.ajouterPage = function(page) -{ - page.pages = this // la magie des langages dynamiques : le foutoire - this.pages[page.nom] = page -} - -Pages.prototype.afficherPage = function(nomPage, forcerChargement) -{ - if (forcerChargement == undefined) forcerChargement = false - - var page = this.pages[nomPage] - if (page == undefined || (!forcerChargement && page == this.pageCourante)) return - - if (this.pageCourante != null && this.pageCourante.decharger) - this.pageCourante.decharger() - - jQuery("#menu div").removeClass("courante") - jQuery("#menu div." + nomPage).addClass("courante") - - this.pageCourante = page - jQuery("#page").html(this.pageCourante.contenu()).removeClass().addClass(this.pageCourante.nom) - - if (this.pageCourante.charger) - this.pageCourante.charger() -} - -/////////////////////////////////////////////////////////////////////////////////////////////////// - -function Formateur() -{ - this.smiles = conf.smiles - this.protocoles = "http|https|ed2k" - - this.regexUrl = new RegExp("(?:(?:" + this.protocoles + ")://|www\\.)[^ ]*", "gi") - this.regexImg = new RegExp("^.*?\\.(gif|jpg|png|jpeg|bmp|tiff)$", "i") - this.regexDomaine = new RegExp("^(?:(?:" + this.protocoles + ")://|www\\.).*?([^/.]+\\.[^/.]+)(?:$|/).*$", "i") - this.regexTestProtocoleExiste = new RegExp("^(?:" + this.protocoles + ")://.*$", "i") - this.regexNomProtocole = new RegExp("^(.*?)://") -} - -/** - * Formate un pseudo saise par l'utilisateur. - * @param pseudo le pseudo brut - * @return le pseudo filtré - */ -Formateur.prototype.filtrerInputPseudo = function(pseudo) -{ - return pseudo.replace(/{|}/g, "").trim() -} - -Formateur.prototype.getSmilesHTML = function() -{ - var XHTML = "" - for (var sNom in this.smiles) - { - XHTML += "" - } - return XHTML -} - -Formateur.prototype.traitementComplet = function(M, pseudo) -{ - return this.traiterLiensConv(this.traiterSmiles(this.traiterURL(this.remplacerBalisesHTML(M), pseudo))) -} - -/** - * Transforme les liens en entités clickables. - * Un lien vers une conversation permet d'ouvrire celle ci, elle se marque comme ceci dans un message : - * "{5F}" ou 5F est la racine de la conversation. - * Ce lien sera transformer en {5F} pouvant être clické pour créer la conv 5F. - */ -Formateur.prototype.traiterLiensConv = function(M) -{ - return M.replace( - /\{\w+\}/g, - function(lien) - { - return "" + lien + "" +//Object.prototype.each = function(f) { +var objectEach = function(o, f) { + for (var k in o) { + if (o.hasOwnProperty(k)) { + f(k, o[k]); } - ) -} - -/** - * FIXME : Cette méthode est attrocement lourde ! A optimiser. - */ -Formateur.prototype.traiterSmiles = function(M) -{ - for (var sNom in this.smiles) - { - ss = this.smiles[sNom] - for (var i = 0; i < ss.length; i++) - M = M.replace(ss[i], "") - } - return M -} - -Formateur.prototype.remplacerBalisesHTML = function(M) -{ - return M.replace(//g, ">") -} - -Formateur.prototype.traiterURL = function(M, pseudo) -{ - thisFormateur = this - - if (pseudo == undefined) - pseudo = "" - - var traitementUrl = function(url) - { - // si ya pas de protocole on rajoute "http://" - if (!thisFormateur.regexTestProtocoleExiste.test(url)) - url = "http://" + url - var extension = thisFormateur.getShort(url) - return "[" + extension[0] + "]" } - return M.replace(this.regexUrl, traitementUrl) -} +}; -/** - * Renvoie une version courte de l'url. - * par exemple : http://en.wikipedia.org/wiki/Yakov_Smirnoff devient wikipedia.org - */ -Formateur.prototype.getShort = function(url) -{ - var estUneImage = false - var versionShort = null - var rechercheImg = this.regexImg.exec(url) - //alert(url) - if (rechercheImg != null) - { - versionShort = rechercheImg[1].toLowerCase() - if (versionShort == "jpeg") versionShort = "jpg" // jpeg -> jpg - estUneImage = true - } - else - { - var rechercheDomaine = this.regexDomaine.exec(url) - if (rechercheDomaine != null && rechercheDomaine.length >= 2) - versionShort = rechercheDomaine[1] - else - { - var nomProtocole = this.regexNomProtocole.exec(url) - if (nomProtocole != null && nomProtocole.length >= 2) - versionShort = nomProtocole[1] - } +var objectMemberCount = function(o) { + var nb = 0; + for (var k in o) { + if (o.hasOwnProperty(k)) { + nb += 1; } - - return [versionShort == null ? "url" : versionShort, estUneImage] - } - -/** - * Traite les pseudo et messages à être affiché dans le titre d'une image visualisé avec lightbox. - */ -Formateur.prototype.traiterPourFenetreLightBox = function(M, urlCourante) -{ - thisFormateur = this - var traitementUrl = function(url) - { - return "[" + thisFormateur.getShort(url)[0] + (urlCourante == url ? ": image courante" : "") + "]" - } - - return this.remplacerBalisesHTML(M).replace(this.regexUrl, traitementUrl) -} - - -/////////////////////////////////////////////////////////////////////////////////////////////////// - -// les statuts possibes du client -var statutType = { - // mode enregistré, peut poster des messages et modifier son profile - auth_registered : 0, - // mode identifié, peut poster des messages mais n'a pas accès au profile - auth_not_registered : 1, - // mode déconnecté, ne peut pas poster de message - deconnected : 2 -} - -function Client(util) -{ - this.util = util - - this.cookie = null - this.regexCookie = new RegExp("^cookie=([^;]*)") - - // données personnels - this.resetDonneesPersonnelles() - - this.setStatut(statutType.deconnected) - - // le dernier message d'erreur recut du serveur (par exemple une connexion foireuse : "login impossible") - this.dernierMessageErreur = "" -} - -Client.prototype.resetDonneesPersonnelles = function() -{ - this.pseudo = conf.pseudoDefaut - this.login = "" - this.password = "" - this.email = "" - this.css = jQuery("link#cssPrincipale").attr("href") - this.nickFormat = "nick" - - this.pagePrincipale = 1 - - // les conversations, une conversation est un objet possédant les attributs suivants : - // - racine (entier) - // - page (entier) - this.conversations = new Array() -} - -Client.prototype.setCss = function(css) -{ - if (this.css == css) - return - - this.css = css - jQuery("link#cssPrincipale").attr("href", this.css) - this.majMenu() -} - -Client.prototype.pageSuivante = function(numConv) -{ - if (numConv < 0 && this.pagePrincipale > 1) - this.pagePrincipale -= 1 - else if (this.conversations[numConv].page > 1) - this.conversations[numConv].page -= 1 -} - -Client.prototype.pagePrecedente = function(numConv) -{ - if (numConv < 0) - this.pagePrincipale += 1 - else - this.conversations[numConv].page += 1 -} - -/** - * Définit la première page pour la conversation donnée. - * @return true si la page a changé sinon false - */ -Client.prototype.goPremierePage = function(numConv) -{ - if (numConv < 0) - { - if (this.pagePrincipale == 1) - return false - this.pagePrincipale = 1 - } - else - { - if (this.conversations[numConv].page == 1) - return false - this.conversations[numConv].page = 1 - } - return true -} - -/** - * Ajoute une conversation à la vue de l'utilisateur. - * Le profile de l'utilisateur est directement sauvegardé sur le serveur. - * @param racines la racine de la conversation (integer) - * @return true si la conversation a été créée sinon false (par exemple si la conv existe déjà) - */ -Client.prototype.ajouterConversation = function(racine) -{ - // vérification s'il elle n'existe pas déjà - for (var i = 0; i < this.conversations.length; i++) - if (this.conversations[i].root == racine) - return false - - this.conversations.push({root : racine, page : 1}) - return true -} - -Client.prototype.supprimerConversation = function(num) -{ - if (num < 0 || num >= this.conversations.length) return - - // décalage TODO : supprimer le dernier élément - for (var i = num; i < this.conversations.length - 1; i++) - this.conversations[i] = this.conversations[i+1] - this.conversations.pop() -} - -Client.prototype.getJSONLogin = function(login, password) -{ - return { - "action" : "authentification", - "login" : login, - "password" : password - } -} + } + return nb; +}; -Client.prototype.getJSONLoginCookie = function() -{ - return { - "action" : "authentification", - "cookie" : this.cookie +Array.prototype.each = function(f) { + for (var i = 0; i < this.length; i++) { + f(i, this[i]); } -} +}; -/** - * le couple (login, password) est facultatif. S'il n'est pas fournit alors il ne sera pas possible - * de s'autentifier avec (login, password). - */ -Client.prototype.getJSONEnregistrement = function(login, password) -{ - var mess = { "action" : "register" } - - if (login != undefined && password != undefined) - { - mess["login"] = login - mess["password"] = password +Array.prototype.map = function(f) { + for (var i = 0; i < this.length; i++) { + this[i] = f(this[i]) } - - return mess; -} +}; -Client.prototype.getJSONConversations = function() -{ - var conversations = new Array() - for (var i = 0; i < this.conversations.length; i++) - conversations.push({ "root" : this.conversations[i].root, "page" : this.conversations[i].page}) - return conversations +String.prototype.trim = function() { + return jQuery.trim(this) // anciennement : this.replace(/^\s+|\s+$/g, ""); } -Client.prototype.getJSONProfile = function() -{ - return { - "action" : "set_profile", - "cookie" : this.cookie, - "login" : this.login, - "password" : this.password, - "nick" : this.pseudo, - "email" : this.email, - "css" : this.css, - "nick_format" : this.nickFormat, - "main_page" : this.pagePrincipale < 1 ? 1 : this.pagePrincipale, - "conversations" : this.getJSONConversations() - } +String.prototype.ltrim = function() { + return this.replace(/^\s+/, ""); } -/** - * Renvoie null si pas définit. - */ -Client.prototype.getCookie = function() -{ - var cookie = this.regexCookie.exec(document.cookie) - if (cookie == null) this.cookie = null - else this.cookie = cookie[1] -} - -Client.prototype.delCookie = function() -{ - document.cookie = "cookie=; max-age=0" +String.prototype.rtrim = function() { + return this.replace(/\s+$/, ""); } -Client.prototype.setCookie = function(cookie) -{ - if (this.cookie == null) - return - - document.cookie = - "cookie="+this.cookie+ - "; max-age=" + (60 * 60 * 24 * 365) -} - -Client.prototype.authentifie = function() -{ - return this.statut == statutType.auth_registered || this.statut == statutType.auth_not_registered -} - -Client.prototype.setStatut = function(statut) -{ - //alert(statut) - // conversation en "enum" si en "string" - if (typeof(statut) == "string") - { - statut = - statut == "auth_registered" ? - statutType.auth_registered : - (statut == "auth_not_registered" ? statutType.auth_not_registered : statutType.deconnected) - } - - if (statut == this.statut) return - - this.statut = statut - this.majMenu() -} - -/** - * Effectue la connexion vers le serveur. - * Cette fonction est bloquante tant que la connexion n'a pas été établie. - * S'il existe un cookie en local on s'authentifie directement avec lui. - * Si il n'est pas possible de s'authentifier alors on affiche un captcha anti-bot. - */ -Client.prototype.connexionCookie = function() -{ - this.getCookie() - if (this.cookie == null) return false; - return this.connexion(this.getJSONLoginCookie()) -} - -Client.prototype.connexionLogin = function(login, password) -{ - return this.connexion(this.getJSONLogin(login, password)) -} - -Client.prototype.enregistrement = function(login, password) -{ - if (this.authentifie()) - { - this.login = login - this.password = password - if(this.flush()) - this.setStatut(statutType.auth_registered) - return true - } - else - { - return this.connexion(this.getJSONEnregistrement(login, password)) - } -} - -Client.prototype.connexion = function(messageJson) -{ - ;;; dumpObj(messageJson) - thisClient = this - jQuery.ajax( - { - async: false, - type: "POST", - url: "request", - dataType: "json", - data: this.util.jsonVersAction(messageJson), - success: - function(data) - { - ;;; dumpObj(data) - thisClient.chargerDonnees(data) - } - } - ) - return this.authentifie() -} - -Client.prototype.deconnexion = function() -{ - this.flush() - this.setStatut(statutType.deconnected) // deconnexion - this.resetDonneesPersonnelles() - this.delCookie () -} - -Client.prototype.chargerDonnees = function(data) -{ - var thisClient = this - - this.setStatut(data["status"]) - - if (this.authentifie()) - { - this.cookie = data["cookie"] - this.setCookie() - - this.login = data["login"] - this.pseudo = data["nick"] - this.email = data["email"] - this.css = data["css"] - this.nickFormat = data["nick_format"] - - // la page de la conversation principale - this.pagePrincipale = data["main_page"] == undefined ? 1 : data["main_page"] - - // met à jour la css - if (this.css != "") - { - jQuery("link#cssPrincipale").attr("href", this.css) - this.majMenu() - } - // les conversations - thisClient.conversations = data["conversations"] - - } - this.dernierMessageErreur = data["error_message"] -} /** - * Met à jour les données personne sur serveur. - * @param async de manière asynchrone ? défaut = true - * @return false si le flush n'a pas pû se faire sinon true + * Voir : http://www.coolpage.com/developer/javascript/Correct%20OOP%20for%20Javascript.html + * + * Exemple : + * + * function Mammal(name) { + * this.name = name; + * } + * + * Cat.Inherits(Mammal); + * function Cat(name) { + * this.Super(Mammal, name); + * } */ -Client.prototype.flush = function(async) -{ - if (async == undefined) - async = true - - if (!this.authentifie()) - return false - - thisClient = this - ;;; dumpObj(this.getJSONProfile()) - jQuery.ajax( - { - async: async, - type: "POST", - url: "request", - dataType: "json", - data: this.util.jsonVersAction(this.getJSONProfile()), - success: - function(data) - { - //thisClient.util.log(thisClient.util.serializer.serializeToString(data)) - } - } - ) - // TODO : retourner false si un problème est survenu lors de l'update du profile - return true +/*Object.prototype.Super = function(parent) { + if(arguments.length > 1) { + parent.apply( this, Array.prototype.slice.call( arguments, 1 ) ); + } else { + parent.call( this ); + } } +Function.prototype.Inherits = function(parent) { + this.prototype = new parent(); + this.prototype.constructor = this; +}*/ -Client.prototype.majMenu = function() -{ - var displayType = this.css == "css/3/euphorik.css" ? "block" : "inline" //this.client - // met à jour le menu - if (this.statut == statutType.auth_registered) - { - jQuery("#menu .profile").css("display", displayType).text("profile") - jQuery("#menu .logout").css("display", displayType) - jQuery("#menu .register").css("display", "none") - } - else if (this.statut == statutType.auth_not_registered) - { - jQuery("#menu .profile").css("display", "none") - jQuery("#menu .logout").css("display", displayType) - jQuery("#menu .register").css("display", displayType) - } - else - { - jQuery("#menu .profile").css("display", displayType).text("login") - jQuery("#menu .logout").css("display", "none") - jQuery("#menu .register").css("display", displayType) - } -} /////////////////////////////////////////////////////////////////////////////////////////////////// -function initialiserListeStyles(client) -{ - jQuery("#menuCss").change( - function() - { - client.setCss("css/" + jQuery("option:selected", this).attr("value") + "/euphorik.css") - } - ) -} -jQuery.noConflict() - -// charge dynamiquement le script de debug -;;; jQuery.ajax({async : false, url : "js/debug.js", dataType : "script"}) - // le main -jQuery(document).ready( +$(document).ready( function() - { - var util = new Util() - var client = new Client(util) - var pages = new Pages() - var formateur = new Formateur() - - // connexion vers le serveur (utilise un cookie qui traine) + { + var formateur = new euphorik.Formateur() + var util = new euphorik.Util(formateur) + var client = new euphorik.Client(util) + var pages = new euphorik.Pages() + + + // connexion vers le serveur (utilise un cookie qui traine) client.connexionCookie() - initialiserListeStyles(client) + $("#menuCss").change(function(){ client.setCss("styles/" + $("option:selected", this).attr("value") + "/euphorik.css")}) - // TODO : pourquoi jQuery(document).unload ne fonctionne pas ? - jQuery(window).unload( - function() - { - client.flush(false) - } - ) + // FIXME : ne fonctionne pas sous opera + // voir : http://dev.jquery.com/ticket/2892#preview + $(window).unload(function(){client.flush()}) - jQuery("#menu .minichat").click(function(){ pages.afficherPage("minichat") }) - jQuery("#menu .profile").click(function(){ pages.afficherPage("profile") }) - jQuery("#menu .logout").click(function(){ - util.messageDialogue("Êtes-vous sur de vouloir vous délogger ?", messageType.question, + $("#menu .minichat").click(function(){ pages.afficherPage("minichat") }) + $("#menu .admin").click(function(){ pages.afficherPage("admin") }) + $("#menu .profile").click(function(){ pages.afficherPage("profile") }) + $("#menu .logout").click(function(){ + util.messageDialogue("Êtes-vous sur de vouloir vous délogger ?", euphorik.Util.messageType.question, {"Oui" : function() { client.deconnexion(); @@ -819,13 +178,19 @@ jQuery(document).ready( } ) }) - jQuery("#menu .register").click(function(){ pages.afficherPage("register") }) - jQuery("#menu .about").click(function(){ pages.afficherPage("about") }) - - pages.ajouterPage(new PageMinichat(client, formateur, util)) - pages.ajouterPage(new PageProfile(client, formateur, util)) - pages.ajouterPage(new PageRegister(client, formateur, util)) - pages.ajouterPage(new PageAbout(client, formateur, util)) + $("#menu .register").click(function(){ pages.afficherPage("register") }) + $("#menu .about").click(function(){ pages.afficherPage("about") }) + + // TODO : simplifier et pouvoir créer des liens par exemple : Conditions d'utilisation + $("#footer .conditions").click(function(){ pages.afficherPage("conditions_utilisation") }) + + pages.ajouterPage(new euphorik.PageMinichat(client, formateur, util)) + pages.ajouterPage(new euphorik.PageAdmin(client, formateur, util)) + pages.ajouterPage(new euphorik.PageProfile(client, formateur, util)) + pages.ajouterPage(new euphorik.PageRegister(client, formateur, util)) + pages.ajouterPage(new euphorik.PageAbout(client, formateur, util)) + pages.ajouterPage("conditions_utilisation") + pages.afficherPage("minichat") } -) \ No newline at end of file +)