2 // Copyright 2008 Grégory Burri
4 // This file is part of Euphorik.
6 // Euphorik is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // Euphorik is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
19 // tout euphorik est contenu dans cet objet
26 var formateur
= new euphorik
.Formateur()
27 var util
= new euphorik
.Util(formateur
)
28 var client
= new euphorik
.Client(util
)
29 var pages
= new euphorik
.Pages()
31 // connexion vers le serveur (utilise un cookie qui traine)
32 client
.connexionCookie()
34 $("#menuCss").change(function(){ client
.setCss("styles/" + $("option:selected", this).attr("value") + "/euphorik.css")})
36 // FIXME : ne fonctionne pas sous opera
37 // voir : http://dev.jquery.com/ticket/2892#preview
38 $(window
).unload(function(){client
.flush()})
40 $("#menu .minichat").click(function(){ pages
.afficherPage("minichat") })
41 $("#menu .admin").click(function(){ pages
.afficherPage("admin") })
42 $("#menu .profile").click(function(){ pages
.afficherPage("profile") })
43 $("#menu .logout").click(function(){
44 util
.messageDialogue("Êtes-vous sur de vouloir vous délogger ?", euphorik
.Util
.messageType
.question
,
48 pages
.afficherPage("minichat", true)
54 $("#menu .register").click(function(){ pages
.afficherPage("register") })
55 $("#menu .about").click(function(){ pages
.afficherPage("about") })
57 // TODO : simplifier et pouvoir créer des liens par exemple : <span class="lien" href="conditions">Conditions d'utilisation</span>
58 $("#footer .conditions").click(function(){ pages
.afficherPage("conditions_utilisation") })
60 pages
.ajouterPage(new euphorik
.PageMinichat(client
, formateur
, util
))
61 pages
.ajouterPage(new euphorik
.PageAdmin(client
, formateur
, util
))
62 pages
.ajouterPage(new euphorik
.PageProfile(client
, formateur
, util
))
63 pages
.ajouterPage(new euphorik
.PageRegister(client
, formateur
, util
))
64 pages
.ajouterPage(new euphorik
.PageAbout(client
, formateur
, util
))
65 pages
.ajouterPage("conditions_utilisation")
67 pages
.afficherPage("minichat")