MOD french -> english (6)
[euphorik.git] / js / pageAbout.js
index 9d15886..9a72139 100644 (file)
 // GNU General Public License for more details.\r
 //\r
 // You should have received a copy of the GNU General Public License\r
-// along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.
-
-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}", "<a href=\"" + email+ "\">" + email + "</a>").replace("{EMAIL_LIEN}", email)
-}
-
-PageAbout.prototype.charger = function()
-{
-}
+// along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.\r
+\r
+euphorik.PageAbout = function(client, formater, util, communication) {\r
+   this.name = "about";\r
+   \r
+   this.client = client;\r
+   this.formater = formater;\r
+   this.util = util;
+   this.communication = communication;\r
+};\r
+\r
+euphorik.PageAbout.prototype.contenu = function() {\r
+   var contenu = this.communication.load("pages/about.html");   \r
+   var email = this.util.rot13("znvygb:tert.oheev@tznvy.pbz");\r
+   return contenu.replace("{EMAIL}", "<a href=\"" + email+ "\">" + email + "</a>").replace("{EMAIL_LIEN}", email);\r
+};\r
+\r
+euphorik.PageAbout.prototype.charger = function() {\r
+};\r