314c311a |
1 | <?php |
2 | /* |
3 | * |
4 | * LODEL - Logiciel d'Edition ELectronique. |
5 | * |
6 | * Copyright (c) 2001-2002, Ghislain Picard, Marin Dacos |
7 | * Copyright (c) 2003, Ghislain Picard, Marin Dacos, Luc Santeramo, Nicolas Nutten, Anne Gentil-Beccot |
8 | * Copyright (c) 2004, Ghislain Picard, Marin Dacos, Luc Santeramo, Anne Gentil-Beccot, Bruno Cénou |
9 | * Copyright (c) 2005, Ghislain Picard, Marin Dacos, Luc Santeramo, Gautier Poupeau, Jean Lamy, Bruno Cénou |
10 | * Copyright (c) 2006, Marin Dacos, Luc Santeramo, Bruno Cénou, Jean Lamy, Mikaël Cixous, Sophie Malafosse |
11 | * Copyright (c) 2007, Marin Dacos, Bruno Cénou, Sophie Malafosse, Pierre-Alain Mignot |
12 | * Copyright (c) 2008, Marin Dacos, Bruno Cénou, Pierre-Alain Mignot, Inès Secondat de Montesquieu, Jean-François Rivière |
13 | * Copyright (c) 2009, Marin Dacos, Bruno Cénou, Pierre-Alain Mignot, Inès Secondat de Montesquieu, Jean-François Rivière |
14 | * |
15 | * Home page: http://www.lodel.org |
16 | * |
17 | * E-Mail: lodel@lodel.org |
18 | * |
19 | * All Rights Reserved |
20 | * |
21 | * This program is free software; you can redistribute it and/or modify |
22 | * it under the terms of the GNU General Public License as published by |
23 | * the Free Software Foundation; either version 2 of the License, or |
24 | * (at your option) any later version. |
25 | * |
26 | * This program is distributed in the hope that it will be useful, |
27 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
28 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
29 | * GNU General Public License for more details. |
30 | * |
31 | * You should have received a copy of the GNU General Public License |
32 | * along with this program; if not, write to the Free Software |
33 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.*/ |
34 | ?> |
35 | |
36 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
37 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> |
38 | <head> |
39 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
40 | <title>Erreur : page introuvable</title> |
41 | <style type="text/css"> |
42 | body {background:#fff;color:#444;font:76%/1.5 Verdana, sans-serif;text-align:center} |
43 | h1 {color:#d00;font:normal 2.2em Georgia, serif;margin:1em 0;text-align:center} |
44 | div {width:50em; margin:0 auto;border:1px solid #ddd} |
45 | p {margin:1.5em} |
46 | a {color:#4077D7;text-decoration:none} |
47 | </style> |
48 | </head> |
49 | <body> |
50 | <h1> |
51 | La page demandée est introuvable. |
52 | </h1> |
53 | <div> |
54 | <p> |
55 | Aucune page ne correspond à cet URL : |
56 | <br /><strong><?php echo htmlspecialchars("http://".$_SERVER['HTTP_HOST'].($_SERVER['SERVER_PORT'] != 80 ? ":". $_SERVER['SERVER_PORT'] : '').$_SERVER['REQUEST_URI']) ?></strong> |
57 | </p> |
58 | <p> |
59 | Veuillez vérifier la saisie dans la barre d'adresse de votre navigateur. |
60 | </p> |
61 | </div> |
62 | <?php |
63 | if(file_exists("./missing_perso.html")) // racine site |
64 | echo file_get_contents("./missing_perso.html"); |
65 | elseif(file_exists("../missing_perso.html")) // racine lodel |
66 | echo file_get_contents("../missing_perso.html"); |
67 | ?> |
68 | </body> |
69 | </html> |