You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2003/08/07 09:12:10 UTC

cvs commit: jakarta-cactus/documentation/docs/xdocs features.xml changes.xml

vmassol     2003/08/07 00:12:10

  Modified:    documentation/docs/xdocs/integration/ant task_cactus.xml
               documentation/docs/xdocs features.xml changes.xml
  Log:
  - Added doc for the weblogic7x container
  - Support for WL7.x is now working fine
  
  Revision  Changes    Path
  1.13      +131 -1    jakarta-cactus/documentation/docs/xdocs/integration/ant/task_cactus.xml
  
  Index: task_cactus.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/integration/ant/task_cactus.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- task_cactus.xml	31 May 2003 09:49:01 -0000	1.12
  +++ task_cactus.xml	7 Aug 2003 07:12:09 -0000	1.13
  @@ -31,6 +31,7 @@
           <li>Orion Application Server 1.x</li>
           <li>Orion Application Server 2.x</li>
           <li>Resin Server 2.x</li>
  +        <li>WebLogic 7.x</li>
         </ul>
       </p>
   
  @@ -287,11 +288,22 @@
               <tr>
                 <td>config</td>
                 <td>
  -                The name of the configuration to use
  +                The name of the JBoss server configuration to use
                 </td>
                 <td>No, the default is <em>default</em></td>
               </tr>
               <tr>
  +              <td>port</td>
  +              <td>
  +                The TCP port that will be used to poll the server to
  +                verify if it is running. Note that this port value is
  +                not used to tell JBoss on what port it should listen
  +                to, as is the case for the other containers (this may 
  +                be implemented in the future).
  +              </td>
  +              <td>No, default is 8080</td>
  +            </tr>
  +            <tr>
                 <td>output</td>
                 <td>
                   Name of a file to write the output of the container to. If not
  @@ -945,6 +957,124 @@
   
             <p>
               The <strong>tomcat5x</strong> container supports the following
  +            nested elements:
  +          </p>
  +
  +          <section title="conf">
  +
  +            <p>
  +              A fileset that can be used to specify the set of files that
  +              should be placed into the <strong>conf</strong> directory of the
  +              installation directory. This fileset should not include the
  +              <code>serverxml</code> file.
  +            </p>
  +
  +          </section>
  +
  +          <section title="exclude">
  +
  +            <p>
  +              Multiple <strong>exclude</strong> elements can be used as in
  +              standard Ant PatternSets or FileSets to exclude specific tests
  +              from running in the container.
  +            </p>
  +
  +          </section>
  +
  +        </section>
  +
  +      </section>
  +
  +      <section title="weblogic7x">
  +
  +        <p>
  +          The nested element <strong>weblogic7x</strong> allows running the 
  +          tests against the WebLogic 7.x J2EE container.
  +        </p>
  +
  +        <section title="Parameters">
  +
  +          <table>
  +            <tr>
  +              <th>Name</th>
  +              <th>Description</th>
  +              <th>Required</th>
  +            </tr>
  +            <tr>
  +              <td><strong>dir</strong></td>
  +              <td>
  +                The installation directory of WebLogic 7.x. Note that this
  +                should not be the the bea home directory. For example:
  +                <code>c:\bea\weblogic700</code>.
  +              </td>
  +              <td>Yes</td>
  +            </tr>
  +            <tr>
  +              <td><strong>beahome</strong></td>
  +              <td>
  +                The bea home directory. By default Cactus tries to guess the
  +                bea home directory by taking the parent directory of the
  +                <code>dir</code> directory (i.e. where WebLogic 7.x is
  +                installed). You only need to use the <code>beahome</code> if
  +                you have put your bea home directory somewhere else.
  +              </td>
  +              <td>No, defaults to the parent directory of dir</td>
  +            </tr>
  +            <tr>
  +              <td>port</td>
  +              <td>
  +                The TCP port that the container should listen to
  +              </td>
  +              <td>No, default is 8080</td>
  +            </tr>
  +            <tr>
  +              <td>tmpdir</td>
  +              <td>
  +                The directory to which the container will be installed for the
  +                tests.
  +              </td>
  +              <td>No (by default the system temporary directory is used)</td>
  +            </tr>
  +            <tr>
  +              <td>output</td>
  +              <td>
  +                Name of a file to write the output of the container to. If not
  +                specified, the standard output will be used
  +              </td>
  +              <td>No</td>
  +            </tr>
  +            <tr>
  +              <td>append</td>
  +              <td>
  +                Whether output should be appended to or overwrite an existing
  +                file.
  +              </td>
  +              <td>No, default is <em>false</em></td>
  +            </tr>
  +            <tr>
  +              <td>if</td>
  +              <td>
  +                Tests will only be run in the container if a property of the
  +                given name exists in the current project
  +              </td>
  +              <td>No</td>
  +            </tr>
  +            <tr>
  +              <td>unless</td>
  +              <td>
  +                Tests will only be run in the container if a property of the
  +                given name doesn't exist in the current project
  +              </td>
  +              <td>No</td>
  +            </tr>
  +          </table>
  +
  +        </section>
  +
  +        <section title="Nested Elements">
  +
  +          <p>
  +            The <strong>tomcat4x</strong> container supports the following
               nested elements:
             </p>
   
  
  
  
  1.22      +1 -2      jakarta-cactus/documentation/docs/xdocs/features.xml
  
  Index: features.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/features.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- features.xml	14 Jul 2003 10:10:36 -0000	1.21
  +++ features.xml	7 Aug 2003 07:12:10 -0000	1.22
  @@ -234,8 +234,7 @@
                 Resin 2.x (Servlet API 2.2 and 2.3)
               </li>
               <li>
  -              WebLogic 7.x (Servlet API 2.2 and 2.3). <em>Support for
  -              WebLogic 7.x has not been tested with Cactus 1.5</em>
  +              WebLogic 7.x (Servlet API 2.2 and 2.3)
                 <img src="images/new.jpg" alt="New in Cactus 1.5"/>
               </li>
               <li>
  
  
  
  1.125     +2 -1      jakarta-cactus/documentation/docs/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/changes.xml,v
  retrieving revision 1.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- changes.xml	6 Aug 2003 19:28:50 -0000	1.124
  +++ changes.xml	7 Aug 2003 07:12:10 -0000	1.125
  @@ -78,7 +78,8 @@
   -->
         <release version="1.6" date="in CVS">
           <action dev="VMA" type="fix">
  -          Fixed bugs in the WebLogic 7.x configuration: the
  +          Support for WebLogic 7.x is now working fine. Fixed bugs in the 
  +          WebLogic 7.x configuration: the
             <code>weblogic.xml</code> file was not correctly copied
             in the <code>WEB-INF</code> directory of the cactified
             war, and an NPE happened when the bea home property was not