You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@apache.org on 2001/02/26 04:08:06 UTC

cvs commit: jakarta-slide/src/doc changelog.xml contrib.xml howto-tomcat.xml

remm        01/02/25 19:08:05

  Modified:    src/doc  changelog.xml contrib.xml howto-tomcat.xml
  Log:
  - Add a howto for Tomcat 4 beta 2 (which will be released soon).
  - Update my entry in the contributors list mentioning my Sun email.
  - Update changelog.
  
  Revision  Changes    Path
  1.31      +5 -0      jakarta-slide/src/doc/changelog.xml
  
  Index: changelog.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/changelog.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- changelog.xml	2001/02/24 22:39:18	1.30
  +++ changelog.xml	2001/02/26 03:08:05	1.31
  @@ -47,6 +47,11 @@
           <fix>
             DAV client : Fix cookie parsing problems (SGP)
           </fix>
  +        <add>
  +          Add content interceptors, which can be used to enforce the value of
  +          some properties, do some transformations on the content of objects,
  +          do some indexing tasks, ... (RM)
  +        </add>
         </changelog>
   
       </p>
  
  
  
  1.13      +1 -1      jakarta-slide/src/doc/contrib.xml
  
  Index: contrib.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/contrib.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- contrib.xml	2001/02/24 22:39:19	1.12
  +++ contrib.xml	2001/02/26 03:08:05	1.13
  @@ -17,7 +17,7 @@
     <section title="Commiters">
       
       <p>
  -      <a href="mailto:remm at apache.org"><b>Remy Maucherat</b></a>
  +      <a href="mailto:Remy.Maucherat at eng.sun.com"><b>Remy Maucherat</b></a>
         <br/>
         Original developer of Slide, project maintainer.
       </p>
  
  
  
  1.9       +22 -0     jakarta-slide/src/doc/howto-tomcat.xml
  
  Index: howto-tomcat.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/howto-tomcat.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- howto-tomcat.xml	2001/02/24 22:39:19	1.8
  +++ howto-tomcat.xml	2001/02/26 03:08:05	1.9
  @@ -54,6 +54,28 @@
         by the JDBC stores.
       </p>
       
  +    <p>
  +      While the deployment as a standard web application works fine, a better
  +      level of integration can be achieved using the Slide realm. Here's the
  +      optimal deployment of Slide with Tomcat 4.0 :
  +      <ul>
  +        <li>Download Tomcat 4.0 beta 2</li>
  +        <li>Copy the following JARs from the lib directory in the Slide
  +          distribution to the common/lib folder in the Tomcat distribution :
  +          the XML parser JARs, jta.jar, roles.jar, slide.jar, slidestores.jar
  +          </li>
  +        <li>Put in common/lib any dependent libraries the stores used may have,
  +          including for example JDBC drivers, ...</li>
  +        <li>Copy any wrappers (like the log4j wrapper), as well as log4j.jar
  +          if used to common/lib</li>
  +        <li>Copy catalinawrapper.jar from the wrappers directory to 
  +          common/lib</li>
  +        <li>Configure Catalina to use realm wrappers.catalina.SlideRealm so
  +          that Catalina authenticates users based on users defined in the 
  +          Slide namespace.</li>
  +      </ul>
  +    </p>
  +    
     </section>
     
   </body>