// 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, formateur, util) { this.nom = "about"; this.client = client; this.formateur = formateur; this.util = util; }; euphorik.PageAbout.prototype.contenu = function() { var contenu = ""; $.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); }; euphorik.PageAbout.prototype.charger = function() { };