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 2001/02/26 04:48:59 UTC

cvs commit: jakarta-tomcat-4.0/catalina/docs/config context.html

glenn       01/02/25 19:48:59

  Modified:    catalina/docs/config context.html
  Log:
  Implement DefaultContext in server.xml config
  
  Revision  Changes    Path
  1.3       +19 -6     jakarta-tomcat-4.0/catalina/docs/config/context.html
  
  Index: context.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/docs/config/context.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- context.html	2001/01/14 04:17:05	1.2
  +++ context.html	2001/02/26 03:48:59	1.3
  @@ -143,6 +143,22 @@
       </td>
     </tr>
   
  +  <tr>
  +    <td><code>useNaming</code></td>
  +    <td>      
  +      Set this attribute to <code>true</code> if you wish to have Catalina
  +      enable JNDI.  Default is <code>true</code>.
  +    </td>     
  +  </tr>
  +
  +  <tr>
  +    <td><code>override</code></td>
  +    <td>              
  +      Set this attribute to <code>true</code> if you wish to over ride
  +      the DefaultContext configuration.  Default is <code>false</code>.
  +    </td>        
  +  </tr>
  +
   </table>
   
   <br>
  @@ -192,11 +208,8 @@
   <h2>Utility Components</h2>
   
   <p>You can attach one or more of the following utility components by nesting
  -a corresponding declaration inside your <strong>Host</strong> element.
  -Unless overridden by a utility component of the same name being nested in a
  -<a href="context.html">Context</a> element,
  -the utility components you declare here will be shared among all 
  -web applications running in this <strong>Host</strong>:</p>
  +a corresponding declaration inside your <strong>Context</strong> element.
  +</p>
   
   <ul>
     <li><a href="loader.html">Loader</a> - Configure a class loader associated
  @@ -237,7 +250,7 @@
                prefix="myapp_access_log." suffix=".txt"
                pattern="common"/&gt;
         ...
  -    &lt;/Host&gt;
  +    &lt;/Context&gt;
   
   </pre>