Like the status update says, I volunteered to make a start updating the docs to XHTML. I've been away for a while, hence the silence, but I'm back and have (a little) time to work on this!
So, here's my suggested plan: 1. Work on individual pages * Lower-case all the tags * Add/change the DOCTYPE tag on each file * Replace colours specified in <BODY> with <style> tags?? 2. Once that's done, look at the common content to each, and "factorise" it out into included files where possible. Not sure about using SSI for this - it's not always enabled, so we couldn't use it for vital content... I've attached a diff for index.html.en for review, to see if anyone has any objections to any changes there? -- Old programmers never die. They just branch to a new address. -- BSD fortune file
Index: index.html.en =================================================================== RCS file: /home/cvspublic/httpd-docs-1.3/htdocs/index.html.en,v retrieving revision 1.8 diff -u -r1.8 index.html.en --- index.html.en 2001/05/01 10:31:09 1.8 +++ index.html.en 2001/05/02 14:34:13 @@ -1,44 +1,48 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> -<HTML> - <HEAD> - <TITLE>Test Page for Apache Installation</TITLE> - </HEAD> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>Test Page for Apache Installation</title> +<style type="text/css"> + body { + background-color: #FFFFFF; + color: #000000; + } + :link { color: #0000FF } + :visited { color: #000080 } + :active { color: #FF0000 } + div.c2 {text-align: center} + h2.c1 {text-align: center} +</style> +</head> <!-- Background white, links blue (unvisited), navy (visited), red (active) --> - <BODY - BGCOLOR="#FFFFFF" - TEXT="#000000" - LINK="#0000FF" - VLINK="#000080" - ALINK="#FF0000" - > - - -<p>If you can see this, it means that the installation of the <A -href="http://www.apache.org/foundation/preFAQ.html">Apache web server</a> software on this -system was successful. You may now add content to this directory and -replace this page.</p> +<body> +<p>If you can see this, it means that the installation of the <a +href="http://www.apache.org/foundation/preFAQ.html">Apache web +server</a> software on this system was successful. You may now add +content to this directory and replace this page.</p> + +<hr width="50%" size="8" /> +<h2 class="c1">Seeing this instead of the website you +expected?</h2> -<HR WIDTH="50%" SIZE="8"> - -<H2 ALIGN="CENTER">Seeing this instead of the website you expected?</H2> - <p>This page is here because the site administrator has changed the -configuration of this web server. Please <strong>contact the person -responsible for maintaining this server with questions.</strong> The -Apache Software Foundation, which wrote the web server software this -site administrator is using, has nothing to do with maintaining this -site and cannot help resolve configuration issues.</p> - -<HR WIDTH="50%" SIZE="8"> - -<p>The Apache <A HREF="manual/">documentation</A> has been included with -this distribution.</p> - -<p>You are free to use the image below on an Apache-powered web server. -Thanks for using Apache!</p> - -<DIV ALIGN="CENTER"><IMG SRC="apache_pb.gif" ALT=""></DIV> +configuration of this web server. Please <strong>contact the person +responsible for maintaining this server with questions.</strong> +The Apache Software Foundation, which wrote the web server software +this site administrator is using, has nothing to do with +maintaining this site and cannot help resolve configuration +issues.</p> + +<hr width="50%" size="8" /> +<p>The Apache <a href="manual/">documentation</a> has been included +with this distribution.</p> + +<p>You are free to use the image below on an Apache-powered web +server. Thanks for using Apache!</p> + +<div class="c2"><img src="apache_pb.gif" alt="" /></div> +</body> +</html> -</BODY> -</HTML>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]