vmassol     01/04/07 00:20:44

  Modified:    cactus/build build-servletapi.xml
  Log:
  corrected bug with checks for servlet engine availabilities + updated to build the 
jakarta skin instead of the XML Apache one
  
  Revision  Changes    Path
  1.2       +10 -4     jakarta-commons-sandbox/cactus/build/build-servletapi.xml
  
  Index: build-servletapi.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/cactus/build/build-servletapi.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build-servletapi.xml      2001/03/31 20:22:35     1.1
  +++ build-servletapi.xml      2001/04/07 07:20:43     1.2
  @@ -400,6 +400,7 @@
       <target name="prepare-doc" depends="javadoc">
   
           <mkdir dir="${out.doc.dir}"/>
  +        <mkdir dir="${out.doc.dir}/images"/>
   
           <!-- Copy doc-book.xml to book.xml for defining the documentation web
                site and replacing token filters (year) -->
  @@ -411,6 +412,11 @@
           <copy file="${conf.dir}/version.txt"
               tofile="${out.doc.dir}/version.txt" filtering="on"/>
   
  +        <!-- Copy the images -->
  +        <copy todir="${out.site.dir}/images">
  +            <fileset dir="${xdoc.dir}/images"/>
  +        </copy>
  +
       </target>
   
       <!-- Generate the documentation -->
  @@ -575,19 +581,19 @@
       <target name="tests-functional22-tomcat32-if" if="tomcat.home.32">
           <property name="tomcat.flag.32" value="-Dtomcat.home.32=${tomcat.home.32}"/>
       </target>
  -    <target name="tests-functional22-tomcat32-else" if="tomcat.home.32">
  +    <target name="tests-functional22-tomcat32-else" unless="tomcat.home.32">
           <property name="tomcat.flag.32" value=""/>
       </target>
       <target name="tests-functional22-orion14-if" if="orion.home.14">
           <property name="orion.flag.14" value="-Dorion.home.14=${orion.home.14}"/>
       </target>
  -    <target name="tests-functional22-orion14-else" if="orion.home.14">
  +    <target name="tests-functional22-orion14-else" unless="orion.home.14">
           <property name="orion.flag.14" value=""/>
       </target>
       <target name="tests-functional22-weblogic51-if" if="weblogic.home.51">
           <property name="weblogic.flag.51" 
value="-Dweblogic.home.51=${weblogic.home.51}"/>
       </target>
  -    <target name="tests-functional22-weblogic51-else" if="weblogic.home.51">
  +    <target name="tests-functional22-weblogic51-else" unless="weblogic.home.51">
           <property name="weblogic.flag.51" value=""/>
       </target>
   
  @@ -633,7 +639,7 @@
       <target name="tests-functional23-tomcat40-if" if="tomcat.home.40">
           <property name="tomcat.flag.40" value="-Dtomcat.home.40=${tomcat.home.40}"/>
       </target>
  -    <target name="tests-functional23-tomcat40-else" if="tomcat.home.40">
  +    <target name="tests-functional23-tomcat40-else" unless="tomcat.home.40">
           <property name="tomcat.flag.40" value=""/>
       </target>
   
  
  
  

Reply via email to