You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Rodent of Unusual Size <co...@hyperreal.com> on 1997/06/02 12:24:48 UTC

cvs commit: apache-site manual-index.cgi

coar        97/06/02 03:24:47

  Modified:    .         manual-index.cgi
  Log:
  	Add attributes defining text colours to make sure text and links
  	are visible with our white background; also added the "home"
  	link.
  
  Revision  Changes    Path
  1.3       +11 -3     apache-site/manual-index.cgi
  
  Index: manual-index.cgi
  ===================================================================
  RCS file: /export/home/cvs/apache-site/manual-index.cgi,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** manual-index.cgi	1997/05/04 20:59:06	1.2
  --- manual-index.cgi	1997/06/02 10:24:46	1.3
  ***************
  *** 68,73 ****
  --- 68,75 ----
    #***
    #***
    
  + $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,118 ****
    
    #
    # 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
    # header.
    #
    $HTML = <<EOHT;
  ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
    <HTML>
     <HEAD>
      <TITLE>$title
      </TITLE>
     </HEAD>
  !  <BODY BGCOLOR="white">
      <DIV ALIGN="CENTER">
       <IMG
        SRC="${prefix}images/sub.gif"
  --- 104,120 ----
    
    #
    # We'll re-use the HTML scalar several times; we use it with here
  ! # documents for multi-line static HTML code.  Lets' do the standard page
    # header.
    #
    $HTML = <<EOHT;
  ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    <HTML>
     <HEAD>
      <TITLE>$title
      </TITLE>
     </HEAD>
  !  <BODY BGCOLOR="white" TEXT="black" LINK="blue" VLINK="navy" ALINK="red">
      <DIV ALIGN="CENTER">
       <IMG
        SRC="${prefix}images/sub.gif"
  ***************
  *** 220,225 ****
  --- 222,233 ----
    # 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>