]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add attributes defining text colours to make sure text and links
authorKen Coar <coar@apache.org>
Mon, 2 Jun 1997 10:24:46 +0000 (10:24 +0000)
committerKen Coar <coar@apache.org>
Mon, 2 Jun 1997 10:24:46 +0000 (10:24 +0000)
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

docs/manual/search/manual-index.cgi

index bcfc13b65edb141899de7611afc330a6c8123aaf..b7c7350830063b1775ff19d1c4a5c96c88fdca8c 100644 (file)
@@ -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>