'formater' -> 'formatter'
[euphorik.git] / js / euphorik.js
index 5265f28..cac44c8 100755 (executable)
 // You should have received a copy of the GNU General Public License
 // along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.
 
-/**
-  * Contient la base javascript pour le site euphorik.ch.
-  * Chaque page possède son propre fichier js nommé "page<nom de la 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) } }
-;; };
-
-
-// tout un tas d'améliorations de JavaScript ;)
-/**
-  * 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
-  */
-//Object.prototype.each = function(f) {
-var objectEach = function(o, f) {
-   for (var k in o) {
-      if (o.hasOwnProperty(k)) {
-         f(k, o[k]);
-      }
-   }
-};
-
-var objectMemberCount = function(o) {
-   var nb = 0;
-   for (var k in o) {
-      if (o.hasOwnProperty(k)) {
-         nb += 1;
-      }
-   }
-   return nb;
-};
-
-Array.prototype.each = function(f) {
-   for (var i = 0; i < this.length; i++) {
-      f(i, this[i]);
-   }
-};
-
-Array.prototype.map = function(f) {
-   for (var i = 0; i < this.length; i++) {
-      this[i] = f(this[i])
-   }
-};
-
-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+$/, "");
-}
-
-
-/**
-  * 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);
-  * }
-  */
-/*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;
-}*/
-
-
-
-///////////////////////////////////////////////////////////////////////////////////////////////////
+/*jslint laxbreak:true */
 
+// all euphorik is contained in this object
+var euphorik = {};
 
 // le main
 $(document).ready(
-   function()
-   {          
-      var formateur = new euphorik.Formateur()
-      var util = new euphorik.Util(formateur)   
-      var client = new euphorik.Client(util)
-      var pages = new euphorik.Pages()
-      
+   function() { 
+      var fragment = new Fragment();
+      var formatter = new euphorik.Formatter();
+      var util = new euphorik.Util(formatter);
+      var communication = new euphorik.Communication(
+         function(data) { util.messageDialog(data.error_message); },
+         function() { util.showWaitBar(); },
+         function() { util.hideWaitBar(); }
+      );
+      var client = new euphorik.Client(util, communication);
+      var pages = new euphorik.Pages(fragment, communication);
+           
+      // Client authentification with the cookie information (if  it exists).
+      client.connectionCookie();
       
-      // connexion vers le serveur (utilise un cookie qui traine)
-      client.connexionCookie()
-      
-      $("#menuCss").change(function(){ client.setCss("styles/" + $("option:selected", this).attr("value") + "/euphorik.css")})
+      $("#menuCss").change(function() { client.setCss("styles/" + $("option:selected", this).attr("value") + "/euphorik.css"); });
 
-      // FIXME : ne fonctionne pas sous opera
-      // voir : http://dev.jquery.com/ticket/2892#preview
-      $(window).unload(function(){client.flush()})
+      // FIXME : doesn't work under Opera
+      // see : http://dev.jquery.com/ticket/2892#preview
+      $(window).unload(function() { client.flush(); });
       
-      $("#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();
-                  pages.afficherPage("minichat", true)
+      $("#menu .minichat").click(function() { pages.displayPage("minichat"); });
+      $("#menu .admin").click(function() { pages.displayPage("admin"); });
+      $("#menu .profile").click(function() { pages.displayPage("profile"); });
+      $("#menu .logout").click(function() {
+         util.messageDialog("Are you sure you want to log out?", euphorik.Util.messageType.question,
+            {
+               "Yes" : function() {
+                  client.disconnect();
+                  pages.displayPage("minichat", true);
                },
-             "Non" : function(){}
+               "No" : function() {}
             }
-         )
-      })
-      $("#menu .register").click(function(){ pages.afficherPage("register") })
-      $("#menu .about").click(function(){ pages.afficherPage("about") })
+         );
+      });
+      $("#menu .register").click(function(){ pages.displayPage("register"); });
+      $("#menu .about").click(function(){ pages.displayPage("about"); });
       
-      // TODO : simplifier et pouvoir créer des liens par exemple : <span class="lien" href="conditions">Conditions d'utilisation</span>
-      $("#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")
+      // TODO : simplification : such link[1] should be created and automatically open the right page without
+      //  explicitly add a page.
+      // [1] : <a class="pageLink" href="termes_of_use">Terms of use</a>
+      $("#footer .termsOfUse").click(function(){ pages.displayPage("terms_of_use"); });
+      
+      pages.addPage(new euphorik.PageMinichat(client, formatter, util, communication), true);
+      pages.addPage(new euphorik.PageAdmin(client, formatter, util, communication));
+      pages.addPage(new euphorik.PageProfile(client, formatter, util));
+      pages.addPage(new euphorik.PageRegister(client, formatter, util));
+      pages.addPage(new euphorik.PageAbout(client, formatter, util, communication));
+      pages.addPage("terms_of_use");
       
-      pages.afficherPage("minichat")
+      pages.displayPage(); // display the default page
    }
-)
+);