déplacement
authorweb <web>
Fri, 8 Oct 2004 19:47:01 +0000 (19:47 +0000)
committerweb <web>
Fri, 8 Oct 2004 19:47:01 +0000 (19:47 +0000)
htdocs/redirect/error.php [deleted file]
htdocs/redirect/redirect.php [deleted file]

diff --git a/htdocs/redirect/error.php b/htdocs/redirect/error.php
deleted file mode 100644 (file)
index 53fb9d4..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/***************************************************************************
- *  Copyright (C) 2003-2004 Polytechnique.org                              *
- *  http://opensource.polytechnique.org/                                   *
- *                                                                         *
- *  This program 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 2 of the License, or      *
- *  (at your option) any later version.                                    *
- *                                                                         *
- *  This program 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 this program; if not, write to the Free Software            *
- *  Foundation, Inc.,                                                      *
- *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
- ***************************************************************************
-        $Id: error.php,v 1.2 2004-08-31 10:03:31 x2000habouzit Exp $
- ***************************************************************************/
-
-header("HTTP/1.0 404 Not Found");
-?>
-
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
-<html><head>
-<title>404 Not Found</title>
-</head><body>
-<h1>Not Found</h1>
-The requested URL <?php echo $_SERVER['REQUEST_URI'] ?> was not found on this server.<p>
-<hr>
-<address>Apache Server at www.carva.org Port 80</address>
-</body></html>
diff --git a/htdocs/redirect/redirect.php b/htdocs/redirect/redirect.php
deleted file mode 100644 (file)
index 31fb355..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-/***************************************************************************
- *  Copyright (C) 2003-2004 Polytechnique.org                              *
- *  http://opensource.polytechnique.org/                                   *
- *                                                                         *
- *  This program 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 2 of the License, or      *
- *  (at your option) any later version.                                    *
- *                                                                         *
- *  This program 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 this program; if not, write to the Free Software            *
- *  Foundation, Inc.,                                                      *
- *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
- ***************************************************************************
-        $Id: redirect.php,v 1.6 2004-10-08 19:41:41 x2000habouzit Exp $
- ***************************************************************************/
-
-
-require_once("../../include/config.xorg.inc.php") ;
-require_once("../../include/xorg.common.inc.php");
-
-/*echo "<pre>";
-var_dump($_SERVER);
-echo "</pre>";*/
-
-// on coupe la chaîne REQUEST_URI selon les / et on ne garde que
-// le premier non vide et éventuellement le second
-// la config d'apache impose la forme suivante pour REQUEST_URI :
-// REQUEST_URI = /prenom.nom(/path/fichier.hmtl)?
-list($user, $path) = preg_split('/\//', $_SERVER["REQUEST_URI"], 2, PREG_SPLIT_NO_EMPTY);
-
-$result = $globals->db->query("
-    SELECT  redirecturl
-      FROM  auth_user_md5 AS u
-INNER JOIN  aliases       AS a ON (u.user_id=a.id AND type!='homonyme')
-     WHERE  a.alias='$user'");
-if ($result and list($url) = mysql_fetch_row($result) and $url != '') {
-       // on envoie un redirect (PHP met automatiquement le code de retour 302
-       if (!empty($path)) {
-           if (substr($url, -1, 1) == "/")
-               $url .= $path;
-           else
-               $url .= "/" . $path;
-       }
-       header("Location: http://$url");
-       exit();
-}
-
-// si on est ici, il y a eu un erreur ou on n'a pas trouvé le redirect
-header("HTTP/1.0 404 Not Found");
-
-?>
-
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
-<html><head>
-<title>404 Not Found</title>
-</head><body>
-<h1>Not Found</h1>
-The requested URL <?php echo $_SERVER['REQUEST_URI'] ?> was not found on this server.<p>
-<hr>
-<address>Apache Server at www.carva.org Port 80</address>
-</body></html>