dleslie     01/03/02 07:53:37

  Modified:    java     build.xml
  Log:
  Removed bugs.xml from build. We are now using Bugzilla.
  
  Revision  Changes    Path
  1.87      +6 -9      xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -r1.86 -r1.87
  --- build.xml 2001/03/01 20:09:57     1.86
  +++ build.xml 2001/03/02 15:53:27     1.87
  @@ -22,6 +22,8 @@
       This build file supports the following targets:
       - compile  compiles Xalan-J in ./build/classes.
       - jar      creates ./build/xalan.jar [the default target]
  +    - samples  compiles samples and puts classes in ./build/xalanxamples.jar
  +    - servlet compiles sample servlets and puts classes in 
./build/xalanservlet.jar
       - docs     generates the human-written documentation in ./build/docs
       - javadocs [or apidocs] generates the API documentation in 
./build/docs/apidocs
       - compat.jar compiles compatibility tree and creates 
./build/xalanj1compat.jar
  @@ -46,7 +48,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.86 2001/03/01 20:09:57 dleslie Exp $
  +   $Id: build.xml,v 1.87 2001/03/02 15:53:27 dleslie Exp $
      
   ==================================================================== -->
   
  @@ -103,7 +105,7 @@
     <property name="xdocs.book" value="${xdocs.dir}/sources/xalan-jlocal.xml"/>
     <property name="xdocs.style" value="${xdocs.dir}/style"/>
     <property name="xalanonly-styledocs"
  -            
value="dtd/xsl-html40s.dtd,dtd/spec.dtd,stylesheets/patterns.xsl,stylesheets/notice.xsl,stylesheets/spec.xsl,stylesheets/bugs.xsl,stylesheets/done.xsl,loaderdesign.xml,stylesheets/design2project.xsl,stylesheets/designdoc2html.xsl,stylesheets/xml2fo.xsl"/>
  +            
value="dtd/xsl-html40s.dtd,dtd/spec.dtd,stylesheets/patterns.xsl,stylesheets/notice.xsl,stylesheets/spec.xsl,stylesheets/done.xsl,loaderdesign.xml,stylesheets/design2project.xsl,stylesheets/designdoc2html.xsl,stylesheets/xml2fo.xsl"/>
     <property name="doc.generator" value="org.apache.stylebook.StyleBook"/>
     <property name="doc.generator.styletargz" 
value="${xdocs.dir}/xml-site-style.tar.gz"/>
     <property name="doc.generator.styletar" 
value="${xdocs.dir}/xml-site-style.tar"/>
  @@ -136,12 +138,7 @@
       <java fork="yes" classname="org.apache.xalan.xslt.Process" 
classpath="${java.class.path}:${build.dir}/$xalan.jar">
         <arg line="-in todo.xml -xsl todo.xsl -out ${build.docs}/todo.html"/>
       </java> 
  -    <!-- We use a Notes agent to extract Xalan-Java 2 bugs from our SPR 
database into commits.xml.  The following operation 
  -    transforms bugs.xml (just including open bugs) and puts the result in 
xdocs/sources/xalan for inclusion in the readme.xml -->
  -    <java fork="yes" classname="org.apache.xalan.xslt.Process" 
classpath="${java.class.path}:${build.dir}/$xalan.jar">
  -      <arg line="-in bugs.xml -xsl ${xdocs.style}/stylesheets/bugs.xsl -out 
${xdocs.dir}/sources/xalan/BUGS"/>
  -    </java>      
  -    <!-- We use a Notes agent to extract Xalan-Java 2 commits from our team 
database into bugs.xml.  The following operation 
  +    <!-- We use a Notes agent to extract Xalan-Java 2 commits from our team 
database into commits.xml.  The following operation 
       transforms commits.xml (just including source code commits) and puts the 
result in xdocs/sources/xalan for inclusion in the 
       readme.xml -->      
       <java fork="yes" classname="org.apache.xalan.xslt.Process" 
classpath="${java.class.path}:${build.dir}/$xalan.jar">
  @@ -489,7 +486,7 @@
       <copy file="${build.compat.jar}" todir="${dist.dir}/bin"/>    
   
       <copy todir="${dist.dir}">
  -      <fileset dir="." 
includes="readme.html,KEYS,License,build.xml,build.sh,build.bat,todo.xml,todo.xsl,bugs.xml,commits.xml"/>
  +      <fileset dir="." 
includes="readme.html,KEYS,License,build.xml,build.sh,build.bat,todo.xml,todo.xsl,commits.xml"/>
       </copy>
             
       <zip zipfile="${build.dir}/${dist.file}.zip" basedir="${build.dir}" 
includes="${dist.file}/**"/>
  
  
  

Reply via email to