You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@apache.org on 2001/07/01 22:09:18 UTC

cvs commit: jakarta-taglibs/tools/UltraDev/4.0/ctlx build.xml

glenn       01/07/01 13:09:18

  Modified:    tools/UltraDev/4.0/ctlx build.xml
  Log:
  Update build system
  
  Revision  Changes    Path
  1.8       +13 -9     jakarta-taglibs/tools/UltraDev/4.0/ctlx/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/tools/UltraDev/4.0/ctlx/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	2001/06/17 07:29:42	1.7
  +++ build.xml	2001/07/01 20:09:17	1.8
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the CTLX -->
  -<!-- $Id: build.xml,v 1.7 2001/06/17 07:29:42 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.8 2001/07/01 20:09:17 glenn Exp $ -->
   
   <project name="ultradev4" default="main" basedir=".">
   
  @@ -41,10 +41,9 @@
   	dist.dir                    Base directory for distribution targets
       -->
   
  -    <property name="build.dir"      value="../../../../../build/taglibs"/>
  -    <property name="dist.dir"	    value="../../../../../dist/taglibs"/>
  -    <property name="taglibs.doc"    value="${dist.dir}/doc/doc/${taglib.name}-doc"/>
  -    <property name="taglibs.xsl"    value="../../../../../../src/doc/stylesheets/taglibs.xsl"/>
  +    <property name="build.dir"      value="../../../../build"/>
  +    <property name="dist.dir"	    value="../../../../dist"/>
  +    <property name="taglibs.xsl"    value="../../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -82,12 +81,13 @@
   
       -->
   
  -    <property name="build.doc"      value="${build.dir}/${taglib.name}-doc"/>
  -    <property name="build.parser"   value="${build.dir}/TLDParser" />
  +    <property name="build.doc"      value="${build.dir}/${taglib.name}/${taglib.name}-doc"/>
  +    <property name="build.parser"   value="${build.dir}/${taglib.name}/TLDParser" />
       <property name="dist.doc"       value="${dist.dir}/${taglib.name}/${taglib.name}-doc.war"/>
       <property name="dist.parser"    value="${dist.dir}/${taglib.name}/TLDParser.war"/>
       <property name="dist.tutorial"  value="${dist.dir}/${taglib.name}/${taglib.name}-tutorial.war"/>
       <property name="dist.ext"	    value="${dist.dir}/${taglib.name}/ctlx.mxp"/>
  +    <property name="taglibs.doc"    value="${dist.dir}/doc/doc/${taglib.name}-doc"/>
   
     <!-- ********************** Destination Preparation ********************* -->
   
  @@ -114,8 +114,12 @@
       <copy todir="${build.doc}/WEB-INF">
         <fileset dir="${doc.src}/conf"/>
       </copy>
  -    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  -      extension=".html" style="${taglibs.xsl}" includes="*.xml">
  +    <!-- intro.xml isn't part of the documentation application,
  +         this is just a handy place to build it for the web site. -->
  +    <style in="xml/intro.xml"
  +           destdir="${build.doc}"
  +           out="${build.doc}/intro.html"
  +           style="${taglibs.xsl}">
         <param name="prefix" expression="../../"/>
       </style>
     </target>