Commit 92d4f001 authored by Ken Coar's avatar Ken Coar
Browse files

Add attributes defining text colours to make sure text and links

	are visible with our white background; also added the "home"
	link.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78204 13f79535-47bb-0310-9956-ffa450edef68
parent ae0f2352
Loading
Loading
Loading
Loading
+11 −3
Original line number Diff line number Diff line
@@ -68,6 +68,8 @@ $INDEX = "/export/pub/apache/manual-index.dat";
#***
#***

$HTML = "";

#
# If we have a FILEPATH_INFO or PATH_INFO, it's there to remap the
# documents to the manual root directory.  If this script is already in
@@ -102,17 +104,17 @@ $title .= ": Results for \"$word\"" if ($word);

#
# We'll re-use the HTML scalar several times; we use it with here
# documents for multi-line statis HTML code.  Lets' do the standard page
# documents for multi-line static HTML code.  Lets' do the standard page
# header.
#
$HTML = <<EOHT;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
 <HEAD>
  <TITLE>$title
  </TITLE>
 </HEAD>
 <BODY BGCOLOR="white">
 <BODY BGCOLOR="white" TEXT="black" LINK="blue" VLINK="navy" ALINK="red">
  <DIV ALIGN="CENTER">
   <IMG
    SRC="${prefix}images/sub.gif"
@@ -220,6 +222,12 @@ QUERY:
# Back to common code - the exit path.  Display the page trailer.
#
$HTML = <<EOHT;
  <A
   HREF="./"
  ><IMG
    SRC="images/apache_home.gif"
    ALT="Home"
   ></A>
  <HR>
 </BODY>
</HTML>