X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2Feuphorik.js;h=cac44c8d93dfdd9ec92ef589d04e0e347f33b8a6;hp=107a5c017939ae15deda6d667f02ba2821ed7cda;hb=4a6c575807a90370c0069b688026b10102e1ce10;hpb=27c4a5ac9000ca933f28abfedbf9607f73619615 diff --git a/js/euphorik.js b/js/euphorik.js index 107a5c0..cac44c8 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -17,7 +17,7 @@ // along with Euphorik. If not, see . /*jslint laxbreak:true */ - + // all euphorik is contained in this object var euphorik = {}; @@ -25,8 +25,8 @@ var euphorik = {}; $(document).ready( function() { var fragment = new Fragment(); - var formater = new euphorik.Formater(); - var util = new euphorik.Util(formater); + 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(); }, @@ -34,14 +34,14 @@ $(document).ready( ); var client = new euphorik.Client(util, communication); var pages = new euphorik.Pages(fragment, communication); - - // connexion vers le serveur (utilise un cookie qui traine) - client.connexionCookie(); + + // Client authentification with the cookie information (if it exists). + client.connectionCookie(); $("#menuCss").change(function() { client.setCss("styles/" + $("option:selected", this).attr("value") + "/euphorik.css"); }); // FIXME : doesn't work under Opera - // voir : http://dev.jquery.com/ticket/2892#preview + // see : http://dev.jquery.com/ticket/2892#preview $(window).unload(function() { client.flush(); }); $("#menu .minichat").click(function() { pages.displayPage("minichat"); }); @@ -51,7 +51,7 @@ $(document).ready( util.messageDialog("Are you sure you want to log out?", euphorik.Util.messageType.question, { "Yes" : function() { - client.deconnexion(); + client.disconnect(); pages.displayPage("minichat", true); }, "No" : function() {} @@ -61,17 +61,17 @@ $(document).ready( $("#menu .register").click(function(){ pages.displayPage("register"); }); $("#menu .about").click(function(){ pages.displayPage("about"); }); - // TODO : simplification : such link[1] should be created and automatically open the right page without - // explicitly add a page. - // [1] : Conditions d'utilisation - $("#footer .conditions").click(function(){ pages.displayPage("conditions_utilisation"); }); + // TODO : simplification : such link[1] should be created and automatically open the right page without + // explicitly add a page. + // [1] : Terms of use + $("#footer .termsOfUse").click(function(){ pages.displayPage("terms_of_use"); }); - pages.addPage(new euphorik.PageMinichat(client, formater, util, communication), true); - pages.addPage(new euphorik.PageAdmin(client, formater, util, communication)); - pages.addPage(new euphorik.PageProfile(client, formater, util)); - pages.addPage(new euphorik.PageRegister(client, formater, util)); - pages.addPage(new euphorik.PageAbout(client, formater, util, communication)); - pages.addPage("conditions_utilisation"); + 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.displayPage(); // display the default page }