// Copyright (C) 2000 Sylvain BAUDOIN
//
// Le code PHP3 de cette page peut etre redistribue et/ou modifie selon les termes de la
// GNU General Public License, comme publies par la Free Software Foundation (version 2 et au dela)
//
// The PHP3 code of this page may be redistributed and/or modified according to the terms of the GNU
// General Public License, as it has been published by the Free Software Foundation (version 2 and
// above)
//
if (($HTTP_REFERER == "") || (! eregi("themanualpage.org", $HTTP_REFERER))) {
echo "Oups ! Impossible d'ouvrir le fichier !";
echo "Sorry! I cannot open this page.";
} else {
$url = parse_url($HTTP_REFERER);
if (! eregi("\.php3", $url["path"])) {
$nom = $url["path"]."index.php3";
} else {
$nom = $url["path"];
}
$fichier = fopen($REDIRECT_HOMEDIR.$nom, "r");
$metatags = get_meta_tags($REDIRECT_HOMEDIR.$nom);
while (! feof($fichier)) {
$ligne = fgets($fichier, 4096);
// On traite le cas particulier des liens relatifs dans les images : il faut en faire des liens absolus
//
// Particular case: relative pathes of images must be changed into absolute pathes
if (eregi("", $ligne)) {
echo "