billbarker    2004/01/14 00:22:22

  Modified:    src/doc  AJPv13.html JDBCRealm-howto.html
                        Tomcat-on-NetWare-HowTo.html mod_jk-howto.html
                        serverxml.html tomcat-security.html
                        tomcat-ssl-howto.html tomcat-ug.html
  Log:
  Fix '>' -> >.
  
  Somebody clearly has way too much time on their hands to bother reporting something 
like this :)
  
  First part of bug #12307
  Submitted By: Larry Shatzer [EMAIL PROTECTED]
  
  Revision  Changes    Path
  1.8       +4 -4      jakarta-tomcat/src/doc/AJPv13.html
  
  Index: AJPv13.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/AJPv13.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AJPv13.html       29 Sep 2003 07:42:59 -0000      1.7
  +++ AJPv13.html       14 Jan 2004 08:22:21 -0000      1.8
  @@ -76,7 +76,7 @@
   request informaton (e.g. HTTP headers, etc) is sent over the connection in
   a highly condensed form (e.g. common strings are encoded as integers).
   Details of that format are below in Request Packet Structure. If there is a
  -body to the request (content-length > 0), that is sent in a separate
  +body to the request (content-length > 0), that is sent in a separate
   packet immediately after.
   
   <P> At this point, the servlet container is presumably ready to start
  @@ -164,7 +164,7 @@
   
   <TABLE BORDER=1 CELLPADDING=2 CELLSPACING=0 BGCOLOR="#FFFFFF">
     <TR>
  -    <TD COLSPAN=6><B>Packet Format (Server->Container)</B></TD>
  +    <TD COLSPAN=6><B>Packet Format (Server-&gt;Container)</B></TD>
     </TR>
   
     <TR>
  @@ -189,7 +189,7 @@
   
   <TABLE BORDER=1 CELLPADDING=2 CELLSPACING=0 BGCOLOR="#FFFFFF">
     <TR>
  -    <TD COLSPAN=6><B>Packet Format (Container->Server)</B></TD>
  +    <TD COLSPAN=6><B>Packet Format (Container-&gt;Server)</B></TD>
     </TR>
   
     <TR>
  @@ -582,7 +582,7 @@
   
   <H2>Questions I Have</H2>
   
  -<P> What happens if the request headers > max packet size?  There is no
  +<P> What happens if the request headers &gt; max packet size?  There is no
   provision to send a second packet of request headers in case there are more
   than 8K (I think this is correctly handled for response headers, though I'm
   not certain).  I don't know if there is a way to get more than 8K worth of
  
  
  
  1.6       +7 -7      jakarta-tomcat/src/doc/JDBCRealm-howto.html
  
  Index: JDBCRealm-howto.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/JDBCRealm-howto.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- JDBCRealm-howto.html      7 Nov 2001 14:40:00 -0000       1.5
  +++ JDBCRealm-howto.html      14 Jan 2004 08:22:21 -0000      1.6
  @@ -81,7 +81,7 @@
   <tr>
   <td>
   <pre>
  -mysql> select * from users;
  +mysql&gt; select * from users;
   +-----------+-----------+
   | user_name | user_pass |
   +-----------+-----------+
  @@ -92,8 +92,8 @@
   +-----------+-----------+
   4 rows in set (0.00 sec)
   
  -mysql> 
  -mysql> select * from roles;
  +mysql&gt; 
  +mysql&gt; select * from roles;
   +------------+
   | role_name  |
   +------------+
  @@ -102,10 +102,10 @@
   +------------+
   2 rows in set (0.02 sec)
   
  -mysql> 
  +mysql&gt; 
   
   
  -mysql> select * from user_roles;
  +mysql&gt; select * from user_roles;
   +------------+-----------+
   | role_name  | user_name |
   +------------+-----------+
  @@ -116,7 +116,7 @@
   +------------+-----------+
   4 rows in set (0.00 sec)
   
  -mysql> 
  +mysql&gt; 
   </pre>
   </td>
   </tr>
  
  
  
  1.6       +10 -10    jakarta-tomcat/src/doc/Tomcat-on-NetWare-HowTo.html
  
  Index: Tomcat-on-NetWare-HowTo.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/Tomcat-on-NetWare-HowTo.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Tomcat-on-NetWare-HowTo.html      7 Nov 2002 13:23:32 -0000       1.5
  +++ Tomcat-on-NetWare-HowTo.html      14 Jan 2004 08:22:21 -0000      1.6
  @@ -98,22 +98,22 @@
   <h2>
   <a NAME="Document Conventions and Assumptions"></a>Document Conventions
   and Assumptions</h2>
  -&lt;tomcat_home> is the root directory of Tomcat. By default this is at
  +&lt;tomcat_home&gt; is the root directory of Tomcat. By default this is at
   the root of the SYS: volume (SYS:\jakarta-tomcat-3.3 by default for Tomcat 3.3) but 
it can be placed anywhere, on any volume.
   Your installation should have the following sub-directories:
   <ol>
   <li>
  -&lt;tomcat_home>\conf - Where you can place various configuration files</li>
  +&lt;tomcat_home&gt;\conf - Where you can place various configuration files</li>
   
   <li>
  -&lt;tomcat_home>\webapps - Contains example applications and is the default
  +&lt;tomcat_home&gt;\webapps - Contains example applications and is the default
   place for adding your applications</li>
   
   <li>
  -&lt;tomcat_home>\bin - Where you place web server connectors and startup
  +&lt;tomcat_home&gt;\bin - Where you place web server connectors and startup
   scripts</li>
   </ol>
  -In all the examples in this document, &lt;tomcat_home> will be
  +In all the examples in this document, &lt;tomcat_home&gt; will be
   SYS:\jakarta-tomcat-3.3.
   <p>A <b><tt>worker</tt></b> is the tomcat process that accepts work from
   the web server.
  @@ -174,9 +174,9 @@
   <a NAME="Running Tomcat with the NetWare Enterprise Web Server"></a>2.
   Running Tomcat with the NetWare Enterprise Web Server</h3>
   To run Tomcat with the NetWare Enterprise Web Server, you need to download
  -nsapi_rd.nlm and copy it to your NetWare server. A good location is 
&lt;tomcat_home>\bin\netscape\netware\i386.
  +nsapi_rd.nlm and copy it to your NetWare server. A good location is 
&lt;tomcat_home&gt;\bin\netscape\netware\i386.
   You will then need to add the following to your obj.conf file located in
  -SYS:\novonyx\suitespot\https-&lt;servername>\config. This will tell the
  +SYS:\novonyx\suitespot\https-&lt;servername&gt;\config. This will tell the
   NetWare Enterprise Web Server to let Tomcat handle the /servlet/* and /examples/*
   URIs.
   <ol>
  @@ -201,10 +201,10 @@
   Create a new configuration object by adding the following 4 lines to the
   end of the obj.conf file:</li>
   
  -<br><tt>&lt;Object name=&quot;Tomcat&quot;></tt>
  +<br><tt>&lt;Object name=&quot;Tomcat&quot;&gt;</tt>
   <br><tt>ObjectType fn=&quot;force-type&quot; type=&quot;text/plain&quot;</tt>
   <br><tt>Service fn=&quot;jk_service&quot; worker=&quot;ajp13&quot;</tt>
  -<br><tt>&lt;/Object></tt></ol>
  +<br><tt>&lt;/Object&gt;</tt></ol>
   Now stop and restart the NetWare Enterprise Web Server, make sure that Tomcat is
   running (i.e. run the <b>tomcat.ncf</b> file mentioned in <a href="#Running Tomcat 
Standalone">Running
   Tomcat Standalone</a>) and you should be
  @@ -223,7 +223,7 @@
   <tt><b>tomcat jkconf</tt></b> (i.e. run the <b>tomcat.ncf</b> file mentioned 
   in <a href="#Running Tomcat Standalone">Running Tomcat Standalone</a> with a 
   <tt><b>jkconf</tt></b> parameter) to generate the file 
  -&lt;tomcat_home>/conf/auto/mod_jk.conf.&nbsp; Then add the following line to 
  +&lt;tomcat_home&gt;/conf/auto/mod_jk.conf.&nbsp; Then add the following line to 
   your httpd.conf file, replacing SYS:/jakarta-tomcat-3.3 with the directory 
   where Tomcat is installed:
   <p>Include &quot;SYS:/jakarta-tomcat-3.3/conf/auto/mod_jk.conf&quot;</p>
  
  
  
  1.17      +9 -9      jakarta-tomcat/src/doc/mod_jk-howto.html
  
  Index: mod_jk-howto.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/mod_jk-howto.html,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- mod_jk-howto.html 7 Nov 2002 13:23:32 -0000       1.16
  +++ mod_jk-howto.html 14 Jan 2004 08:22:21 -0000      1.17
  @@ -44,7 +44,7 @@
   
   <h1>
   Working with mod_jk</h1>
  -By Gal Shachor <tt>&lt;<a href="mailto:[EMAIL PROTECTED]">[EMAIL 
PROTECTED]</a>></tt>
  +By Gal Shachor <tt>&lt;<a href="mailto:[EMAIL PROTECTED]">[EMAIL 
PROTECTED]</a>&gt;</tt>
   <h2>
   Table of Contents</h2>
   
  @@ -522,7 +522,7 @@
   as the workers or URL prefix.
   <p>Use mod_jk's JkMount directive to assign specific URLs to Tomcat. In
   general the structure of a JkMount directive is:
  -<pre>JkMount <i>&lt;URL prefix></i> <i>&lt;Worker name></i></pre>
  +<pre>JkMount <i>&lt;URL prefix&gt;</i> <i>&lt;Worker name></i></pre>
   For example the following directives will send all requests ending in
   <tt>.jsp</tt>
   or beginning with <tt>/servlet</tt> to the &quot;<tt>ajp13</tt>&quot; worker, but
  @@ -532,7 +532,7 @@
   JkMount /servlet/* ajp13
   JkMount /otherworker/*.jsp remoteworker</pre>
   </blockquote>
  -You can use the <tt>JkMount</tt> directive at the top level or inside 
<tt>&lt;VirtualHost></tt>
  +You can use the <tt>JkMount</tt> directive at the top level or inside 
<tt>&lt;VirtualHost&gt;</tt>
   sections of your httpd.conf file.</div>
   
   <hr>
  @@ -784,24 +784,24 @@
   &nbsp; ServerName host1.apache.org
   &nbsp; JkMount /*.jsp ajp13
   &nbsp; JkMount /servlet/* ajp13
  -&lt;/VirtualHost>
  +&lt;/VirtualHost&gt;
   
   # Second Virtual Host. Also accessible via HTTPS
   #
  -&lt;VirtualHost 10.0.0.2:80>
  +&lt;VirtualHost 10.0.0.2:80&gt;
   &nbsp; DocumentRoot /web/host2
   &nbsp; ServerName host2.apache.org
   &nbsp; JkMount /*.jsp ajp13
   &nbsp; JkMount /servlet/* ajp13
  -&lt;/VirtualHost>
  +&lt;/VirtualHost&gt;
   
  -&lt;VirtualHost 10.0.0.2:443>
  +&lt;VirtualHost 10.0.0.2:443&gt;
   &nbsp; DocumentRoot /web/host2
   &nbsp; ServerName host2.apache.org
   &nbsp; SSLEngine On
   &nbsp; JkMount /*.jsp ajp13
   &nbsp; JkMount /servlet/* ajp13
  -&lt;/VirtualHost>
  +&lt;/VirtualHost&gt;
   
   </pre>
   </blockquote>
  @@ -976,7 +976,7 @@
   <a href="mailto:[EMAIL PROTECTED]">Gal
   Shachor</a>
   <p>Revisions by (Alphabetical)
  -<p>Mike Braden <tt>&lt;<a href="mailto:[EMAIL PROTECTED]">[EMAIL 
PROTECTED]</a>></tt>
  +<p>Mike Braden <tt>&lt;<a href="mailto:[EMAIL PROTECTED]">[EMAIL 
PROTECTED]</a>&gt;</tt>
   <br>Mike Bremford
   <br>Chris Pepper
   <p>With help from countless others on the tomcat-dev and tomcat-user lists!
  
  
  
  1.33      +4 -4      jakarta-tomcat/src/doc/serverxml.html
  
  Index: serverxml.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/serverxml.html,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- serverxml.html    29 Sep 2003 07:42:59 -0000      1.32
  +++ serverxml.html    14 Jan 2004 08:22:21 -0000      1.33
  @@ -344,8 +344,8 @@
         &quot;combined&quot; (Apache httpd combined format, default),
         &quot;common&quot; (Apache httpd common format) or a format string like
         <pre>
  -        '%h %l %u %t &quot;%r&quot; %>s %b &quot;%{Referer}&quot; 
&quot;%{User-Agent}&quot;'
  -        '%h %l %u %t &quot;%r&quot; %>s %b'
  +        '%h %l %u %t &quot;%r&quot; %&gt;s %b &quot;%{Referer}&quot; 
&quot;%{User-Agent}&quot;'
  +        '%h %l %u %t &quot;%r&quot; %&gt;s %b'
         </pre>
         (The above examples are used when &quot;combined&quot; or &quot;common&quot;
         format is requested.) Possible patterns are:
  @@ -391,7 +391,7 @@
             <td>The value of <code>response.getStatus()</code>.</td>
           </tr>
           <tr>
  -          <th valign="top">%>s</th>
  +          <th valign="top">%&gt;s</th>
             <td>The value of <code>response.getStatus()</code>.
               Should differ between different internal requests, as
               Apache httpd does, but this is currently not supported.</td>
  
  
  
  1.6       +3 -3      jakarta-tomcat/src/doc/tomcat-security.html
  
  Index: tomcat-security.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/tomcat-security.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- tomcat-security.html      18 Apr 2002 13:58:00 -0000      1.5
  +++ tomcat-security.html      14 Jan 2004 08:22:21 -0000      1.6
  @@ -50,7 +50,7 @@
   <p>Imagine if someone who is authorized to publish JSP's on your site inadvertently
   included the following in their JSP:
   <blockquote>
  -<pre>&lt;% System.exit(1); %></pre>
  +<pre>&lt;% System.exit(1); %&gt;</pre>
   </blockquote>
   
   <p><br>Every time that JSP was executed by Tomcat, Tomcat would exit.
  @@ -114,8 +114,8 @@
   format as follows:
   <table border=0><tr><td><pre>// Example policy file entry
   
  -grant [signedBy &lt;signer> [,codeBase &lt;code source>] {
  -&nbsp;&nbsp;&nbsp; permission &lt;class> [&lt;name> [, &lt;action list>]];
  +grant [signedBy &lt;signer&gt; [,codeBase &lt;code source&gt;] {
  +&nbsp;&nbsp;&nbsp; permission &lt;class&gt; [&lt;name&gt; [, &lt;action list&gt;]];
   };
   </td></tr></table></pre>
   The <b>signedBy</b> and <b>codeBase </b>entries are optional when granting 
permissions.
  
  
  
  1.15      +16 -16    jakarta-tomcat/src/doc/tomcat-ssl-howto.html
  
  Index: tomcat-ssl-howto.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/tomcat-ssl-howto.html,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- tomcat-ssl-howto.html     7 Nov 2002 13:23:32 -0000       1.14
  +++ tomcat-ssl-howto.html     14 Jan 2004 08:22:21 -0000      1.15
  @@ -319,7 +319,7 @@
   <br><font face="Courier New, Courier, mono"><font size=-1>JkLogLevel 
warn</font></font>
   <p>The jk redirect stuff can be set in virtual hosts:&nbsp;<virtualhost 
_default_:443>
   <p><font face="Courier New, Courier, mono"><font size=-1>&lt;VirtualHost
  -_default_:443></font></font>
  +_default_:443&gt;</font></font>
   <br><font face="Courier New, Courier, mono"><font size=-1>SSLEngine on</font></font>
   <br><font face="Courier New, Courier, mono"><font size=-1>SSLCipherSuite
   ALL:!ADH:!EXP56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL</font></font>
  @@ -337,12 +337,12 @@
   ajp13&nbsp;</font></font><location "/alesia/WEB-INF/">
   <br></location>
   <br><font face="Courier New, Courier, mono"><font size=-1>&lt;Location
  -"/alesia/WEB-INF/"></font></font>
  +"/alesia/WEB-INF/"&gt;</font></font>
   <br><font face="Courier New, Courier, mono"><font size=-1>AllowOverride
   None</font></font>
   <br><font face="Courier New, Courier, mono"><font size=-1>Deny from 
all</font></font>
  -<br><font face="Courier New, Courier, mono"><font 
size=-1>&lt;/Location></font></font>
  -<p><font face="Courier New, Courier, mono"><font 
size=-1>&lt;/VirtualHost></font></font><virtualhost _default_:443></virtualhost>
  +<br><font face="Courier New, Courier, mono"><font 
size=-1>&lt;/Location&gt;</font></font>
  +<p><font face="Courier New, Courier, mono"><font 
size=-1>&lt;/VirtualHost&gt;</font></font><virtualhost _default_:443></virtualhost>
   <br>
   <hr>
   
  @@ -473,7 +473,7 @@
   <br><tt><font size=-1>What is the two-letter country code for this unit?</font></tt>
   <br><tt><font size=-1>&nbsp; [Unknown]:&nbsp; FR</font></tt>
   <br><tt><font size=-1>Is &lt;CN=www.vercingetorix.org, OU=Chief, O=Gaulois,
  -L=Alesia, ST=50, C=FR> correct?</font></tt>
  +L=Alesia, ST=50, C=FR&gt; correct?</font></tt>
   <br><tt><font size=-1>&nbsp; [no]:&nbsp; yes</font></tt>
   <br><br>
   
  @@ -575,7 +575,7 @@
   certificates in separate files, such as <code>key.pem</code>
   and <code>cert.pem</code>. PureTLS expects a single file which
   you can create by just concatenating the two files. For instance:
  -<code>cat key.pem cert.pem > keyfile.pem</code>.
  +<code>cat key.pem cert.pem &gt; keyfile.pem</code>.
   <p>
   PureTLS does not currently allow you to make self-signed certificates.
   However, a number of sample certificate files are included in the
  @@ -603,23 +603,23 @@
   as shipped with Tomcat, contains a simple example which is commented-out by 
default).
   <BLOCKQUOTE>
   <p>Syntax for Tomcat 3.2 :
  -<p><tt><font size=-1>&lt;Connector 
className="org.apache.tomcat.service.PoolTcpConnector"></font></tt>
  -<br><tt><font size=-1>&lt;Parameter name="handler" 
value="org.apache.tomcat.service.http.HttpConnectionHandler"/></font></tt>
  -<br><tt><font size=-1>&lt;Parameter name="port" value="8443"/></font></tt>
  +<p><tt><font size=-1>&lt;Connector 
className="org.apache.tomcat.service.PoolTcpConnector"&gt;</font></tt>
  +<br><tt><font size=-1>&lt;Parameter name="handler" 
value="org.apache.tomcat.service.http.HttpConnectionHandler"/&gt;</font></tt>
  +<br><tt><font size=-1>&lt;Parameter name="port" value="8443"/&gt;</font></tt>
   <br><tt><font size=-1>&lt;Parameter name="socketFactory" 
value="org.apache.tomcat.net.SSLSocketFactory"
  -/></font></tt>
  +/&gt;</font></tt>
   <br><tt><font size=-1>&lt;Parameter name="keystore" 
value="/var/tomcat/conf/keystore"
  -/></font></tt>
  -<br><tt><font size=-1>&lt;Parameter name="keypass" value="mynewpass"/></font></tt>
  -<br><tt><font size=-1>&lt;Parameter name="clientAuth" value="false"/></font></tt>
  -<br><tt><font size=-1>&lt;/Connector></font></tt><tt></tt>
  +/&gt;</font></tt>
  +<br><tt><font size=-1>&lt;Parameter name="keypass" 
value="mynewpass"/&gt;</font></tt>
  +<br><tt><font size=-1>&lt;Parameter name="clientAuth" value="false"/&gt;</font></tt>
  +<br><tt><font size=-1>&lt;/Connector&gt;</font></tt><tt></tt>
   <p>Syntax for Tomcat 3.3 :
   <p><tt><font size=-1>&lt;Http10Connector</font></tt>
   <br><tt><font size=-1>&nbsp; port="8443"</font></tt>
   <br><tt><font size=-1>&nbsp; secure="true"</font></tt>
   <br><tt><font size=-1>&nbsp; keystore="/var/tomcat/conf/keystore"</font></tt>
   <br><tt><font size=-1>&nbsp; keypass="mynewpass"</font></tt>
  -<br><tt><font size=-1>&nbsp; clientauth="false" /></font></tt><font size=-1></font>
  +<br><tt><font size=-1>&nbsp; clientauth="false" /&gt;</font></tt><font 
size=-1></font>
   </BLOCKQUOTE>
   In the above examples, we indicate that the keystore is file located at
   <code>/var/tomcat/conf/keystore</code>, and the password if "mynewpass". Again,
  @@ -642,7 +642,7 @@
   <br><tt><font size=-1>&nbsp; keystore="/var/tomcat/conf/keystore"</font></tt>
   <br><tt><font size=-1>&nbsp; keypass="mynewpass"</font></tt>
   <br><tt><font size=-1>&nbsp; clientauth="false" </font></tt>
  -<br><tt><font size=-1>&nbsp; 
SSLImplementation="org.apache.tomcat.util.net.PureTLSImplementation" </font></tt> 
/></font></tt>
  +<br><tt><font size=-1>&nbsp; 
SSLImplementation="org.apache.tomcat.util.net.PureTLSImplementation" </font></tt> 
/&gt;</font></tt>
   <P>
   <code>SSLImplementation</code> can be the name of any class that implements
   <code>org.apache.tomcat.util.net.SSLImplementation</code>. The values built
  
  
  
  1.27      +5 -5      jakarta-tomcat/src/doc/tomcat-ug.html
  
  Index: tomcat-ug.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/tomcat-ug.html,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- tomcat-ug.html    7 Nov 2002 13:23:32 -0000       1.26
  +++ tomcat-ug.html    14 Jan 2004 08:22:21 -0000      1.27
  @@ -334,11 +334,11 @@
         <br><br>      
       <ol>
         <li>A global solution is to add a &quot;SHELL&quot; command to your
  -          <code>CONFIG.SYS</code> file.  Click Start -> Run and
  +          <code>CONFIG.SYS</code> file.  Click Start -&gt; Run and
             enter <code>sysedit</code>.  Then click OK.  In the
             <code>C:\CONFIG.SYS</code> window, add the line:
             <pre>SHELL=C:\COMMAND.COM /E:4096 /P</pre>
  -          and click File -> Save.  Then click File -> Exit and
  +          and click File -&gt; Save.  Then click File -> Exit and
             reboot your system. The default amount of environment space will
             now be 4096 bytes, more than enough for Tomcat.</li>
         <li>If you plan on always starting Tomcat 3.3 from the
  @@ -1036,7 +1036,7 @@
   by the <strong>modules</strong> that are included by <code>server.xml</code>
   and associated files.  The primary example of this is <code>ContextXmlReader</code>.
   It is responsible for reading files containing Context declarations in the form:</p>
  -<pre>&lt;Context path=&quot;/myapp&quot; docBase=&quot;<i>somepath</i>&quot; ... 
/></pre> or 
  +<pre>&lt;Context path=&quot;/myapp&quot; docBase=&quot;<i>somepath</i>&quot; ... 
/&gt;</pre> or 
   <pre>&lt;Context path=&quot;/myapp&quot; docBase=&quot;<i>somepath</i>&quot; ...&gt;
       <i>context local modules</i>
   &lt;/Context&gt;</pre>
  @@ -1260,7 +1260,7 @@
   <li><a href="#cust_chgports">Change ports for Http, Https, and Web Server 
connectors</a></li>
   <li><a href="#cust_session">Speed up initial session creation for 
development</a></li>
   <li><a href="#cust_auth">Configure whether Tomcat or a web server does 
authentication</a></li>
  -<li><a href="#cust_dirlist">Turn off directory listings></li>
  +<li><a href="#cust_dirlist">Turn off directory listings</li>
   <li><a href="#cust_jikes">Use Jikes as the Java compiler</a></li>
   <li><a href="#cust_bind">Bind a connector to a single IP address</a></li>
   <li><a href="#cust_redeploy">Enable redeploying of WAR files</a></li>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to