You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by gl...@apache.org on 2003/01/12 18:26:49 UTC

cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs fs-admin-apps.xml fs-admin-objects.xml fs-admin-opers.xml fs-default.xml fs-invoker.xml fs-jdbc-realm.xml fs-jndi-realm.xml fs-memory-realm.xml index.xml mbean-names.xml

glenn       2003/01/12 09:26:49

  Modified:    .        RELEASE-NOTES-4.1.txt
               webapps/manager build.xml
               webapps/tomcat-docs build.xml cgi-howto.xml
                        class-loader-howto.xml html-manager-howto.xml
                        index.xml introduction.xml jasper-howto.xml
                        jndi-datasource-examples-howto.xml
                        jndi-resources-howto.xml manager-howto.xml
                        proxy-howto.xml realm-howto.xml
                        security-manager-howto.xml ssi-howto.xml
                        ssl-howto.xml tomcat-docs.xsl
               webapps/tomcat-docs/appdev deployment.xml index.xml
                        installation.xml introduction.xml processes.xml
                        source.xml
               webapps/tomcat-docs/config connectors.xml context.xml
                        coyote.xml defaultcontext.xml engine.xml
                        globalresources.xml host.xml http11.xml index.xml
                        jk.xml jk2.xml loader.xml logger.xml manager.xml
                        realm.xml resources.xml server.xml service.xml
                        valve.xml webapp.xml
               webapps/tomcat-docs/funcspecs fs-admin-apps.xml
                        fs-admin-objects.xml fs-admin-opers.xml
                        fs-default.xml fs-invoker.xml fs-jdbc-realm.xml
                        fs-jndi-realm.xml fs-memory-realm.xml index.xml
                        mbean-names.xml
  Log:
  Ran linklint on generated tomcat-docs and fixed a number
  of broken links and anchors.
  Added printer friendly versions of the docs, except for
  those docs which come from j-t-c.
  
  Revision  Changes    Path
  1.46      +3 -1      jakarta-tomcat-4.0/RELEASE-NOTES-4.1.txt
  
  Index: RELEASE-NOTES-4.1.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/RELEASE-NOTES-4.1.txt,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- RELEASE-NOTES-4.1.txt	11 Jan 2003 01:47:13 -0000	1.45
  +++ RELEASE-NOTES-4.1.txt	12 Jan 2003 17:26:46 -0000	1.46
  @@ -59,6 +59,8 @@
   [4.1.15] i18n:
            Complete French language translation.
   
  +[4.1.19] Documentation:
  +         Added printer friendly versions of the documents.
   
   ---------------------
   Catalina New Features:
  
  
  
  1.11      +1 -0      jakarta-tomcat-4.0/webapps/manager/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/manager/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml	11 Jan 2003 01:16:59 -0000	1.10
  +++ build.xml	12 Jan 2003 17:26:46 -0000	1.11
  @@ -47,6 +47,7 @@
              includes="manager-howto.xml,html-manager-howto.xml">
         <param name="relative-path" expression="."/>
         <param name="project-menu" expression="nomenu"/>
  +      <param name="standalone" expression="standalone"/>
       </style>
   
       <!-- Images Subdirectory -->
  
  
  
  1.13      +53 -1     jakarta-tomcat-4.0/webapps/tomcat-docs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml	10 Sep 2002 08:49:05 -0000	1.12
  +++ build.xml	12 Jan 2003 17:26:46 -0000	1.13
  @@ -54,7 +54,6 @@
   
       <!-- Catalina Functional Specifications -->
       <mkdir     dir="${webapps.build}/${webapp.name}/catalina/funcspecs"/>
  -
       <!-- Images Subdirectory -->
       <mkdir     dir="${webapps.build}/${webapp.name}/images"/>
       <copy    todir="${webapps.build}/${webapp.name}/images">
  @@ -82,6 +81,24 @@
             includes="*.xml">
         <param name="relative-path" expression="."/>
       </style>
  +    <mkdir     dir="${webapps.build}/${webapp.name}/printer"/>
  +    <!-- Top Level Static Files -->
  +    <copy    todir="${webapps.build}/${webapp.name}/printer">
  +      <fileset dir="../..">
  +        <include name="BUILDING.txt"/>
  +        <include name="README.txt"/>
  +        <include name="RUNNING.txt"/>
  +      </fileset>
  +    </copy>
  +    <style basedir="."
  +           destdir="${webapps.build}/${webapp.name}/printer"
  +         extension=".html"
  +             style="tomcat-docs.xsl"
  +          excludes="build.xml project.xml"
  +          includes="*.xml">
  +      <param name="relative-path" expression="./.."/>
  +      <param name="project-menu" expression="nomenu"/>
  +    </style>
   
       <!-- Application Developer's Guide -->
       <style basedir="appdev"
  @@ -92,6 +109,20 @@
             includes="*.xml">
         <param name="relative-path" expression=".."/>
       </style>
  +    <mkdir     dir="${webapps.build}/${webapp.name}/appdev/printer"/>
  +    <!-- Application Developer's Guide Examples -->
  +    <copy    todir="${webapps.build}/${webapp.name}/appdev/printer">
  +      <fileset dir="appdev" includes="*.txt"/>
  +    </copy>
  +    <style basedir="appdev"
  +           destdir="${webapps.build}/${webapp.name}/appdev/printer"
  +         extension=".html"
  +             style="tomcat-docs.xsl"
  +          excludes="project.xml"
  +          includes="*.xml">
  +      <param name="relative-path" expression="../.."/>
  +      <param name="project-menu" expression="nomenu"/>
  +    </style>
   
       <!-- Catalina Functional Specifications -->
       <mkdir     dir="${webapps.build}/${webapp.name}/catalina"/>
  @@ -104,6 +135,16 @@
             includes="*.xml">
         <param name="relative-path" expression="../.."/>
       </style>
  +    <mkdir     dir="${webapps.build}/${webapp.name}/catalina/funcspecs/printer"/>
  +    <style basedir="funcspecs"
  +           destdir="${webapps.build}/${webapp.name}/catalina/funcspecs/printer"
  +         extension=".html"
  +             style="tomcat-docs.xsl"
  +          excludes="project.xml"
  +          includes="*.xml">
  +      <param name="relative-path" expression="../../.."/>
  +      <param name="project-menu" expression="nomenu"/>
  +    </style>
   
       <!-- Server Configuration Reference -->
       <style basedir="config"
  @@ -114,9 +155,20 @@
             includes="*.xml">
         <param name="relative-path" expression=".."/>
       </style>
  +    <mkdir     dir="${webapps.build}/${webapp.name}/config/printer"/>
  +    <style basedir="config"
  +           destdir="${webapps.build}/${webapp.name}/config/printer"
  +         extension=".html"
  +             style="tomcat-docs.xsl"
  +          excludes="project.xml"
  +          includes="*.xml">
  +      <param name="relative-path" expression="../.."/>
  +      <param name="project-menu" expression="nomenu"/>
  +    </style>
   
       <!-- Build Coyote JK2 documentation -->
       <mkdir     dir="${webapps.build}/${webapp.name}/jk2"/>
  +    <mkdir     dir="${webapps.build}/${webapp.name}/jk2/printer"/>
       <ant dir="${tomcat-jk.home}" target="docs"/>
   
       <copy todir="${webapps.build}/${webapp.name}/jk2">
  
  
  
  1.2       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/cgi-howto.xml
  
  Index: cgi-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/cgi-howto.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cgi-howto.xml	8 Sep 2002 17:56:04 -0000	1.1
  +++ cgi-howto.xml	12 Jan 2003 17:26:46 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="cgi-howto.html">
   
       &project;
   
  
  
  
  1.8       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/class-loader-howto.xml
  
  Index: class-loader-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/class-loader-howto.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- class-loader-howto.xml	10 May 2002 01:15:59 -0000	1.7
  +++ class-loader-howto.xml	12 Jan 2003 17:26:46 -0000	1.8
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="class-loader-howto.html">
   
       &project;
   
  
  
  
  1.2       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/html-manager-howto.xml
  
  Index: html-manager-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/html-manager-howto.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- html-manager-howto.xml	10 Jan 2003 15:52:19 -0000	1.1
  +++ html-manager-howto.xml	12 Jan 2003 17:26:46 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="html-manager-howto.html">
   
       &project;
   
  
  
  
  1.18      +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/index.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- index.xml	10 Jan 2003 15:52:19 -0000	1.17
  +++ index.xml	12 Jan 2003 17:26:46 -0000	1.18
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="index.html">
   
     &project;
   
  
  
  
  1.3       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/introduction.xml
  
  Index: introduction.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/introduction.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- introduction.xml	12 Nov 2001 21:03:49 -0000	1.2
  +++ introduction.xml	12 Jan 2003 17:26:46 -0000	1.3
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="introduction.html">
   
       &project;
   
  
  
  
  1.6       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/jasper-howto.xml
  
  Index: jasper-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/jasper-howto.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- jasper-howto.xml	3 Jan 2003 13:26:01 -0000	1.5
  +++ jasper-howto.xml	12 Jan 2003 17:26:46 -0000	1.6
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="jasper-howto.html">
   
       &project;
   
  
  
  
  1.7       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/jndi-datasource-examples-howto.xml
  
  Index: jndi-datasource-examples-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/jndi-datasource-examples-howto.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- jndi-datasource-examples-howto.xml	24 Sep 2002 12:12:22 -0000	1.6
  +++ jndi-datasource-examples-howto.xml	12 Jan 2003 17:26:46 -0000	1.7
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="jndi-datasource-examples-howto.html">
   
       &project;
   
  
  
  
  1.15      +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/jndi-resources-howto.xml
  
  Index: jndi-resources-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/jndi-resources-howto.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- jndi-resources-howto.xml	16 Aug 2002 20:18:38 -0000	1.14
  +++ jndi-resources-howto.xml	12 Jan 2003 17:26:46 -0000	1.15
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="jndi-resources-howto.html">
   
       &project;
   
  @@ -578,7 +578,7 @@
     the use of this factory in the <code>conf/server.xml</code> configuration
     file.  In the example below, we will create a factory that only knows how
     to create <code>com.mycompany.MyBean</code> beans, from the
  -  <a href="Generic JavaBean Resources">Generic JavaBean Resources</a>
  +  <a href="#Generic JavaBean Resources">Generic JavaBean Resources</a>
     example, above.</p>
   
     <h3>1.  Write A Resource Factory Class</h3>
  
  
  
  1.18      +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/manager-howto.xml
  
  Index: manager-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/manager-howto.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- manager-howto.xml	10 Jan 2003 15:52:19 -0000	1.17
  +++ manager-howto.xml	12 Jan 2003 17:26:46 -0000	1.18
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="manager-howto.html">
   
       &project;
   
  
  
  
  1.3       +3 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/proxy-howto.xml
  
  Index: proxy-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/proxy-howto.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- proxy-howto.xml	12 Nov 2001 21:03:49 -0000	1.2
  +++ proxy-howto.xml	12 Jan 2003 17:26:46 -0000	1.3
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="proxy-howto.html">
   
       &project;
   
  @@ -103,8 +103,8 @@
       <li>Configure another <code>&lt;Service&gt;</code> that contains
           only a <code>&lt;Connector&gt;</code> for the proxy port.</li>
       <li>Configure appropriate <a href="config/engine.html">Engine</a>,
  -        <a href="host.html">Host</a>, and
  -        <a href="context.html">Context</a> elements for the virtual hosts
  +        <a href="config/host.html">Host</a>, and
  +        <a href="config/context.html">Context</a> elements for the virtual hosts
           and web applications accessible via proxying.</li>
       <li>Optionally, protect port 8081 with IP filters as described
           earlier.</li>
  
  
  
  1.11      +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/realm-howto.xml
  
  Index: realm-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/realm-howto.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- realm-howto.xml	11 Jan 2003 01:47:13 -0000	1.10
  +++ realm-howto.xml	12 Jan 2003 17:26:46 -0000	1.11
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="realm-howto.html">
   
       &project;
   
  @@ -386,7 +386,7 @@
       at least read only access to the tables described above.  (Tomcat will
       never attempt to write to these tables.)</li>
   <li>Configure a JNDI named JDBC DataSource for your database.  Refer to the
  -    <a href="jndi-datasource-examples-howto.xml">JNDI DataSource Example HOW-TO</a>
  +    <a href="jndi-datasource-examples-howto.html">JNDI DataSource Example HOW-TO</a>
       for information on how to configure a JNDI named JDBC DataSource.</li>
   <li>Set up a <code>&lt;Realm&gt;</code> element, as described below, in your
       <code>$CATALINA_HOME/conf/server.xml</code> file.</li>
  
  
  
  1.4       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/security-manager-howto.xml
  
  Index: security-manager-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/security-manager-howto.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- security-manager-howto.xml	18 Aug 2002 00:54:48 -0000	1.3
  +++ security-manager-howto.xml	12 Jan 2003 17:26:46 -0000	1.4
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="security-manager-howto.html">
   
       &project;
   
  
  
  
  1.2       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/ssi-howto.xml
  
  Index: ssi-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/ssi-howto.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ssi-howto.xml	8 Sep 2002 17:56:04 -0000	1.1
  +++ ssi-howto.xml	12 Jan 2003 17:26:46 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="ssi-howto.html">
   
       &project;
   
  
  
  
  1.13      +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/ssl-howto.xml
  
  Index: ssl-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/ssl-howto.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ssl-howto.xml	16 Dec 2002 17:39:35 -0000	1.12
  +++ ssl-howto.xml	12 Jan 2003 17:26:46 -0000	1.13
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="ssl-howto.html">
   
       &project;
   
  
  
  
  1.10      +60 -5     jakarta-tomcat-4.0/webapps/tomcat-docs/tomcat-docs.xsl
  
  Index: tomcat-docs.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/tomcat-docs.xsl,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- tomcat-docs.xsl	10 Jan 2003 01:32:53 -0000	1.9
  +++ tomcat-docs.xsl	12 Jan 2003 17:26:47 -0000	1.10
  @@ -17,10 +17,11 @@
     <xsl:param    name="home-name"        select="'The Jakarta Project'"/>
     <xsl:param    name="home-href"        select="'http://jakarta.apache.org/'"/>
     <xsl:param    name="home-logo"        select="'/images/jakarta-logo.gif'"/>
  +  <xsl:param    name="printer-logo"     select="'/images/printer.gif'"/>
     <xsl:param    name="relative-path"    select="'.'"/>
     <xsl:param    name="void-image"       select="'/images/void.gif'"/>
     <xsl:param    name="project-menu"     select="'menu'"/>
  -
  +  <xsl:param    name="standalone"       select="''"/>
   
     <!-- Defined variables (non-overrideable) -->
     <xsl:variable name="body-bg"          select="'#ffffff'"/>
  @@ -100,6 +101,7 @@
   
         <tr>
   
  +        <!-- Don't generate a menu if styling printer friendly docs -->
           <xsl:if test="$project-menu = 'menu'">
             <xsl:comment>LEFT SIDE NAVIGATION</xsl:comment>
             <td width="20%" valign="top" nowrap="true">
  @@ -109,9 +111,37 @@
   
           <xsl:comment>RIGHT SIDE MAIN BODY</xsl:comment>
           <td width="80%" valign="top" align="left">
  -          <div align="center">
  -            <h1><xsl:value-of select="properties/title"/></h1>
  -          </div>
  +          <table border="0" width="100%" cellspacing="4">
  +            <tr>
  +              <td align="left" valign="top" nowrap="true">
  +                <h1><xsl:value-of select="project/title"/></h1>
  +                <h2><xsl:value-of select="properties/title"/></h2>
  +              </td>
  +              <td align="right" valign="top" nowrap="true">
  +                <!-- Add the printer friendly link for docs with a menu -->
  +                <xsl:if test="$project-menu = 'menu'">
  +                  <xsl:variable name="src">
  +                    <xsl:value-of select="$relative-path"/><xsl:value-of select="$printer-logo"/>
  +                  </xsl:variable>
  +                  <xsl:variable name="url">
  +                    <xsl:value-of select="/document/@url"/>
  +                  </xsl:variable>
  +                  <small>
  +                    <a href="printer/{$url}">
  +                      <img src="{$src}" border="0" alt="Printer Friendly Version"/>
  +                      <br />print-friendly<br />version
  +                    </a>
  +                  </small>
  +                </xsl:if>
  +                <xsl:if test="$project-menu != 'menu'">
  +                  <xsl:variable name="void">
  +                    <xsl:value-of select="$relative-path"/><xsl:value-of select="$void-image"/>
  +                    </xsl:variable>
  +                  <img src="{$void}" width="1" height="1" vspace="0" hspace="0" border="0"/>
  +                </xsl:if>
  +              </td>
  +            </tr>
  +          </table>
             <xsl:apply-templates select="body/section"/>
           </td>
   
  @@ -270,6 +300,31 @@
       </table>
     </xsl:template>
   
  +  <!-- Fix relative links in printer friendly versions of the docs -->
  +  <xsl:template match="a">
  +    <xsl:variable name="href" select="@href"/>
  +    <xsl:choose>
  +      <xsl:when test="$standalone = 'standalone'">
  +        <xsl:apply-templates/>
  +      </xsl:when>
  +      <xsl:when test="$project-menu != 'menu' and starts-with(@href,'../')">
  +        <a href="../{$href}"><xsl:apply-templates/></a>
  +      </xsl:when>
  +      <xsl:when test="$project-menu != 'menu' and starts-with(@href,'./') and contains(substring(@href,3),'/')">
  +        <a href=".{$href}"><xsl:apply-templates/></a>
  +      </xsl:when>
  +      <xsl:when test="$project-menu != 'menu' and not(contains(@href,'//')) and not(starts-with(@href,'/')) and not(starts-with(@href,'#')) and contains(@href,'/')">
  +        <a href="../{$href}"><xsl:apply-templates/></a>
  +      </xsl:when>
  +      <xsl:when test="$href != ''">
  +        <a href="{$href}"><xsl:apply-templates/></a>
  +      </xsl:when>
  +      <xsl:otherwise>
  +        <xsl:variable name="name" select="@name"/>
  +        <a name="{$name}"><xsl:apply-templates/></a>
  +      </xsl:otherwise>
  +    </xsl:choose>
  +  </xsl:template>
   
     <!-- Process everything else by just passing it through -->
     <xsl:template match="*|@*">
  
  
  
  1.6       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/deployment.xml
  
  Index: deployment.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/deployment.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- deployment.xml	29 Jan 2002 19:32:11 -0000	1.5
  +++ deployment.xml	12 Jan 2003 17:26:47 -0000	1.6
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="deployment.html">
   
     &project;
   
  
  
  
  1.3       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.xml	5 Aug 2001 03:42:28 -0000	1.2
  +++ index.xml	12 Jan 2003 17:26:47 -0000	1.3
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="index.html">
   
     &project;
   
  
  
  
  1.4       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/installation.xml
  
  Index: installation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/installation.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- installation.xml	29 Jan 2002 19:32:11 -0000	1.3
  +++ installation.xml	12 Jan 2003 17:26:47 -0000	1.4
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="installation.html">
   
     &project;
   
  
  
  
  1.3       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/introduction.xml
  
  Index: introduction.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/introduction.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- introduction.xml	5 Aug 2001 03:42:28 -0000	1.2
  +++ introduction.xml	12 Jan 2003 17:26:47 -0000	1.3
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="introduction.html">
   
     &project;
   
  
  
  
  1.5       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/processes.xml
  
  Index: processes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/processes.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- processes.xml	29 Jan 2002 19:32:11 -0000	1.4
  +++ processes.xml	12 Jan 2003 17:26:47 -0000	1.5
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="processes.html">
   
     &project;
   
  @@ -62,7 +62,7 @@
   the <code>build.xml</code> and <code>build.properties</code> files you will
   be using.  The directory structure is described in <a href="source.html">the
   previous section</a>, or you can use the
  -<a href="sample">sample application</a> as a starting point.</p>
  +<a href="sample/">sample application</a> as a starting point.</p>
   
   <p>Create your project source directory, and define it within your CVS
   repository.  This might be done by a series of commands like this, where
  
  
  
  1.5       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/source.xml
  
  Index: source.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/appdev/source.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- source.xml	29 Jan 2002 19:32:11 -0000	1.4
  +++ source.xml	12 Jan 2003 17:26:47 -0000	1.5
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="source.html">
   
     &project;
   
  
  
  
  1.2       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/connectors.xml
  
  Index: connectors.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/connectors.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- connectors.xml	22 Jun 2002 16:19:45 -0000	1.1
  +++ connectors.xml	12 Jan 2003 17:26:48 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="connectors.html">
    
     &project;
    
  
  
  
  1.12      +3 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/config/context.xml
  
  Index: context.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/context.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- context.xml	30 Aug 2002 05:41:40 -0000	1.11
  +++ context.xml	12 Jan 2003 17:26:48 -0000	1.12
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="context.html">
   
     &project;
   
  @@ -468,7 +468,7 @@
       <p>You can ask Catalina to check the IP address, or host name, on every
       incoming request directed to the surrounding
       <a href="engine.html">Engine</a>, <a href="host.html">Host</a>, or
  -    <a href="context.htm">Context</a> element.  The remote address or name
  +    <a href="context.html">Context</a> element.  The remote address or name
       will be checked against a configured list of "accept" and/or "deny"
       filters, which are defined using the Regular Expression syntax supported
       by the <a href="http://jakarta.apache.org/regexp/">Jakarta Regexp</a>
  @@ -488,7 +488,7 @@
   </source>
   
       <p>See <a href="valve.html#Remote Address Filter">Remote Address Filter</a>
  -    and <a href="valve.html#Remove Host Filter">Remote Host Filter</a> for
  +    and <a href="valve.html#Remote Host Filter">Remote Host Filter</a> for
       more information about the configuration options that are supported.</p>
   
     </subsection>
  
  
  
  1.4       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/coyote.xml
  
  Index: coyote.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/coyote.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- coyote.xml	2 Jan 2003 13:05:08 -0000	1.3
  +++ coyote.xml	12 Jan 2003 17:26:48 -0000	1.4
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="coyote.html">
   
     &project;
   
  
  
  
  1.5       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/defaultcontext.xml
  
  Index: defaultcontext.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/defaultcontext.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- defaultcontext.xml	30 Aug 2002 05:41:40 -0000	1.4
  +++ defaultcontext.xml	12 Jan 2003 17:26:48 -0000	1.5
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="defaultcontext.html">
   
     &project;
   
  
  
  
  1.4       +3 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/config/engine.xml
  
  Index: engine.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/engine.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- engine.xml	25 Jan 2002 14:54:24 -0000	1.3
  +++ engine.xml	12 Jan 2003 17:26:48 -0000	1.4
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="engine.html">
   
     &project;
   
  @@ -197,7 +197,7 @@
       <p>You can ask Catalina to check the IP address, or host name, on every
       incoming request directed to the surrounding
       <a href="engine.html">Engine</a>, <a href="host.html">Host</a>, or
  -    <a href="context.htm">Context</a> element.  The remote address or name
  +    <a href="context.html">Context</a> element.  The remote address or name
       will be checked against a configured list of "accept" and/or "deny"
       filters, which are defined using the Regular Expression syntax supported
       by the <a href="http://jakarta.apache.org/regexp/">Jakarta Regexp</a>
  @@ -217,7 +217,7 @@
   </source>
   
     <p>See <a href="valve.html#Remote Address Filter">Remote Address Filter</a>
  -  and <a href="valve.html#Remove Host Filter">Remote Host Filter</a> for
  +  and <a href="valve.html#Remote Host Filter">Remote Host Filter</a> for
     more information about the configuration options that are supported.</p>
   
     </subsection>
  
  
  
  1.2       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/globalresources.xml
  
  Index: globalresources.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/globalresources.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- globalresources.xml	30 Nov 2001 06:23:13 -0000	1.1
  +++ globalresources.xml	12 Jan 2003 17:26:48 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="globalresources.html">
   
     &project;
   
  
  
  
  1.15      +3 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/config/host.xml
  
  Index: host.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/host.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- host.xml	10 Jan 2003 15:52:19 -0000	1.14
  +++ host.xml	12 Jan 2003 17:26:48 -0000	1.15
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="host.html">
   
     &project;
   
  @@ -351,7 +351,7 @@
       <p>You can ask Catalina to check the IP address, or host name, on every
       incoming request directed to the surrounding
       <a href="engine.html">Engine</a>, <a href="host.html">Host</a>, or
  -    <a href="context.htm">Context</a> element.  The remote address or name
  +    <a href="context.html">Context</a> element.  The remote address or name
       will be checked against a configured list of "accept" and/or "deny"
       filters, which are defined using the Regular Expression syntax supported
       by the <a href="http://jakarta.apache.org/regexp/">Jakarta Regexp</a>
  @@ -371,7 +371,7 @@
   </source>
   
     <p>See <a href="valve.html#Remote Address Filter">Remote Address Filter</a>
  -  and <a href="valve.html#Remove Host Filter">Remote Host Filter</a> for
  +  and <a href="valve.html#Remote Host Filter">Remote Host Filter</a> for
     more information about the configuration options that are supported.</p>
   
     </subsection>
  
  
  
  1.6       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/http11.xml
  
  Index: http11.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/http11.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- http11.xml	2 Jan 2003 13:05:08 -0000	1.5
  +++ http11.xml	12 Jan 2003 17:26:48 -0000	1.6
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="http11.html">
   
     &project;
   
  
  
  
  1.4       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/index.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.xml	12 Sep 2001 22:45:24 -0000	1.3
  +++ index.xml	12 Jan 2003 17:26:48 -0000	1.4
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="index.html">
   
     &project;
   
  
  
  
  1.11      +2 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk.xml
  
  Index: jk.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- jk.xml	2 Jan 2003 13:05:08 -0000	1.10
  +++ jk.xml	12 Jan 2003 17:26:48 -0000	1.11
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="jk.html">
   
     &project;
   
  @@ -74,8 +74,7 @@
         <p>Set this attribute to the name of the protocol you wish to have
         returned by calls to <code>request.getScheme()</code>.  For
         example, you would set this attribute to "<code>https</code>"
  -      for an SSL Connector.  The default value is "<code>http</code>".
  -      See <a href="#SSL Support">SSL Support</a> for more information.</p>
  +      for an SSL Connector.  The default value is "<code>http</code>".</p>
       </attribute>
   
       <attribute name="secure" required="false">
  
  
  
  1.5       +2 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk2.xml
  
  Index: jk2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk2.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- jk2.xml	2 Jan 2003 13:05:08 -0000	1.4
  +++ jk2.xml	12 Jan 2003 17:26:48 -0000	1.5
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="jk2.html">
   
     &project;
   
  @@ -72,8 +72,7 @@
         <p>Set this attribute to the name of the protocol you wish to have
         returned by calls to <code>request.getScheme()</code>.  For
         example, you would set this attribute to "<code>https</code>"
  -      for an SSL Connector.  The default value is "<code>http</code>".
  -      See <a href="#SSL Support">SSL Support</a> for more information.</p>
  +      for an SSL Connector.  The default value is "<code>http</code>".</p>
       </attribute>
   
       <attribute name="secure" required="false">
  
  
  
  1.3       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/loader.xml
  
  Index: loader.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/loader.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- loader.xml	27 Aug 2001 20:22:37 -0000	1.2
  +++ loader.xml	12 Jan 2003 17:26:48 -0000	1.3
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="loader.html">
   
     &project;
   
  
  
  
  1.4       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/logger.xml
  
  Index: logger.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/logger.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- logger.xml	26 Sep 2001 02:29:21 -0000	1.3
  +++ logger.xml	12 Jan 2003 17:26:48 -0000	1.4
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="logger.html">
   
     &project;
   
  
  
  
  1.5       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/manager.xml
  
  Index: manager.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/manager.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- manager.xml	6 Jan 2003 17:41:15 -0000	1.4
  +++ manager.xml	12 Jan 2003 17:26:48 -0000	1.5
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="manager.html">
   
     &project;
   
  
  
  
  1.8       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/realm.xml
  
  Index: realm.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/realm.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- realm.xml	7 Dec 2002 17:42:11 -0000	1.7
  +++ realm.xml	12 Jan 2003 17:26:48 -0000	1.8
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="realm.html">
   
     &project;
   
  
  
  
  1.2       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/resources.xml
  
  Index: resources.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/resources.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- resources.xml	30 Jan 2002 00:55:27 -0000	1.1
  +++ resources.xml	12 Jan 2003 17:26:48 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="resources.html">
   
     &project;
   
  
  
  
  1.7       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/server.xml
  
  Index: server.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/server.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- server.xml	7 Dec 2002 17:40:38 -0000	1.6
  +++ server.xml	12 Jan 2003 17:26:48 -0000	1.7
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="server.html">
   
     &project;
   
  
  
  
  1.6       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/service.xml
  
  Index: service.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/service.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- service.xml	7 Dec 2002 17:40:38 -0000	1.5
  +++ service.xml	12 Jan 2003 17:26:48 -0000	1.6
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="service.html">
   
     &project;
   
  
  
  
  1.8       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/config/valve.xml
  
  Index: valve.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/valve.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- valve.xml	26 Oct 2001 18:13:08 -0000	1.7
  +++ valve.xml	12 Jan 2003 17:26:48 -0000	1.8
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="valve.html">
   
     &project;
   
  
  
  
  1.6       +2 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/config/webapp.xml
  
  Index: webapp.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/webapp.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- webapp.xml	2 Jan 2003 13:05:08 -0000	1.5
  +++ webapp.xml	12 Jan 2003 17:26:48 -0000	1.6
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="webapp.html">
   
     &project;
   
  @@ -71,8 +71,7 @@
         <p>Set this attribute to the name of the protocol you wish to have
         returned by calls to <code>request.getScheme()</code>.  For
         example, you would set this attribute to "<code>https</code>"
  -      for an SSL Connector.  The default value is "<code>http</code>".
  -      See <a href="#SSL Support">SSL Support</a> for more information.</p>
  +      for an SSL Connector.  The default value is "<code>http</code>".</p>
       </attribute>
   
       <attribute name="secure" required="false">
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-admin-apps.xml
  
  Index: fs-admin-apps.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-admin-apps.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-admin-apps.xml	6 Aug 2001 19:08:52 -0000	1.1
  +++ fs-admin-apps.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-admin-apps.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-admin-objects.xml
  
  Index: fs-admin-objects.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-admin-objects.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-admin-objects.xml	6 Aug 2001 19:08:52 -0000	1.1
  +++ fs-admin-objects.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-admin-objects.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-admin-opers.xml
  
  Index: fs-admin-opers.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-admin-opers.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-admin-opers.xml	6 Aug 2001 19:08:52 -0000	1.1
  +++ fs-admin-opers.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-admin-opers.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-default.xml
  
  Index: fs-default.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-default.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-default.xml	6 Aug 2001 19:08:52 -0000	1.1
  +++ fs-default.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-default.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-invoker.xml
  
  Index: fs-invoker.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-invoker.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-invoker.xml	6 Aug 2001 19:08:52 -0000	1.1
  +++ fs-invoker.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-invoker.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-jdbc-realm.xml
  
  Index: fs-jdbc-realm.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-jdbc-realm.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-jdbc-realm.xml	6 Aug 2001 19:08:52 -0000	1.1
  +++ fs-jdbc-realm.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-jdbc-realm.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-jndi-realm.xml
  
  Index: fs-jndi-realm.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-jndi-realm.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-jndi-realm.xml	6 Aug 2001 19:08:53 -0000	1.1
  +++ fs-jndi-realm.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-jndi-realm.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-memory-realm.xml
  
  Index: fs-memory-realm.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/fs-memory-realm.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fs-memory-realm.xml	6 Aug 2001 19:08:53 -0000	1.1
  +++ fs-memory-realm.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="fs-memory-realm.html">
   
     &project;
   
  
  
  
  1.2       +1 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/index.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.xml	6 Aug 2001 19:08:53 -0000	1.1
  +++ index.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="index.html">
   
     &project;
   
  
  
  
  1.2       +2 -2      jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/mbean-names.xml
  
  Index: mbean-names.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/funcspecs/mbean-names.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mbean-names.xml	22 Jul 2002 20:16:33 -0000	1.1
  +++ mbean-names.xml	12 Jan 2003 17:26:49 -0000	1.2
  @@ -2,7 +2,7 @@
   <!DOCTYPE document [
     <!ENTITY project SYSTEM "project.xml">
   ]>
  -<document>
  +<document url="mbean-names.html">
   
     &project;
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>