X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageAbout.js;h=9a7213952e44cb1e299c02d2f032f29bd2963592;hp=64f9bd3fe7a4806ed51d0b46222d29cc3b284634;hb=24ed7a141aa345454300dd260bbabae3a9f92408;hpb=7e02cae82befa6d101d43d97fb8bd79dedba54a4 diff --git a/js/pageAbout.js b/js/pageAbout.js index 64f9bd3..9a72139 100644 --- a/js/pageAbout.js +++ b/js/pageAbout.js @@ -1,22 +1,35 @@ -// coding: utf-8 - -function PageAbout(client, formateur, util) -{ - this.nom = "about" - - this.client = client - this.formateur = formateur - this.util = util -} - -PageAbout.prototype.contenu = function() -{ - var contenu = "" - jQuery.ajax({async: false, url: "pages/about.html", success : function(page) { contenu += page }}) - var email = this.util.rot13("znvygb:tert.oheev@tznvy.pbz") - return contenu.replace("{EMAIL}", "" + email + "").replace("{EMAIL_LIEN}", email) -} - -PageAbout.prototype.charger = function() -{ -} +// 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 . + +euphorik.PageAbout = function(client, formater, util, communication) { + this.name = "about"; + + this.client = client; + this.formater = formater; + this.util = util; + this.communication = communication; +}; + +euphorik.PageAbout.prototype.contenu = function() { + var contenu = this.communication.load("pages/about.html"); + var email = this.util.rot13("znvygb:tert.oheev@tznvy.pbz"); + return contenu.replace("{EMAIL}", "" + email + "").replace("{EMAIL_LIEN}", email); +}; + +euphorik.PageAbout.prototype.charger = function() { +};