summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Coar <coar@apache.org>1997-06-02 10:24:46 +0000
committerKen Coar <coar@apache.org>1997-06-02 10:24:46 +0000
commit1a2c00790f09fc3dc0d4a2191563e8f7a90ac2eb (patch)
treecfd99b9339bca8bda39cce92463127b2eb780fff
parent1cb3dafb10b2e143f1e3e7dbd42f631d03fba741 (diff)
downloadhttpd-1a2c00790f09fc3dc0d4a2191563e8f7a90ac2eb.tar.gz
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
-rw-r--r--docs/manual/search/manual-index.cgi14
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/manual/search/manual-index.cgi b/docs/manual/search/manual-index.cgi
index bcfc13b65e..b7c7350830 100644
--- a/docs/manual/search/manual-index.cgi
+++ b/docs/manual/search/manual-index.cgi
@@ -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>