From 514f262291cb27e5617a892858f29ce0cac8227b Mon Sep 17 00:00:00 2001 From: "Simon L. B. Nielsen" Date: Sun, 4 Dec 2005 21:45:45 +0000 Subject: [PATCH] - Make output XHTML compliant. - Remove the searchbox, since there is already a searchbox included on the page now, due to the new page design. --- en/cgi/missing_handler.cgi | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/en/cgi/missing_handler.cgi b/en/cgi/missing_handler.cgi index c45941624a..74dc621f6b 100755 --- a/en/cgi/missing_handler.cgi +++ b/en/cgi/missing_handler.cgi @@ -52,7 +52,7 @@ # # _________________________________________________________________ # -# $FreeBSD: www/en/cgi/missing_handler.cgi,v 1.16 2004/04/05 14:46:16 phantom Exp $ +# $FreeBSD: www/en/cgi/missing_handler.cgi,v 1.17 2005/12/04 21:15:34 simon Exp $ # ---------------------------------------------------------------------- sub escape($) { $_ = $_[0]; s/&/&/g; s//>/g; $_; } @@ -85,46 +85,35 @@ require './cgi-style.pl'; print &html_header($title); # HTML body -print qq[The file
+print qq[

The file

+
http://$http_host$redirect_url
-does not exist at this server.\n]; +

does not exist at this server.

\n]; if ($http_referer) { - print qq{You are coming from + print qq{

You are coming from

$http_referer.
-

\n}; +\n}; } -print qq[ +print qq[

The closest match to your request is http://$server_name. Please contact the members of the -FreeBSD Documentation Project <freebsd-doc\@FreeBSD.org> +FreeBSD Documentation Project <freebsd-doc\@FreeBSD.org> or the server administrator -$server_admin.

+$server_admin.

-
-Please try our +

Please try our Site Map or Search Page -

-

+

-
-
- - - - - -
-
-

-Thank you very much!

+

Thank you very much!

]; print&html_footer;