dleslie     00/12/01 08:05:08

  Modified:    java     build.xml
  Log:
  1. Added spec.dtd and spec.xsl to files not to be purged in the
  "clean" target.
  2. Added "todo" target for transforming todo.xml into todo.html.
  
  Revision  Changes    Path
  1.51      +13 -3     xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- build.xml 2000/11/20 13:08:27     1.50
  +++ build.xml 2000/12/01 16:05:06     1.51
  @@ -40,7 +40,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.50 2000/11/20 13:08:27 dleslie Exp $
  +   $Id: build.xml,v 1.51 2000/12/01 16:05:06 dleslie Exp $
      
   ==================================================================== -->
   
  @@ -85,7 +85,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,stylesheets/patterns.xsl,stylesheets/notice.xsl"/>
  +            
value="dtd/xsl-html40s.dtd,dtd/spec.dtd,stylesheets/patterns.xsl,stylesheets/notice.xsl,stylesheets/spec.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"/>
  @@ -309,7 +309,7 @@
             <group title="Xalan Core"
                    
packages="org.apache.xalan.processor:org.apache.xalan.templates:org.apache.xalan.transformer"/>
             <group title="XPath" packages="org.apache.xpath*"/>
  -          <group title="Xalan Other" 
packages="org.apache.xalan.client:org:org.apache.xalan.extensions:org.apache.xalan.res:org.apache.xalan.stree:org.apache.xalan.trace:org.apache.xalan.utils*:org.apache.xalan.xslt"/>
  +          <group title="Xalan Other" 
packages="org.apache.xalan.client:org:org.apache.xalan.extensions:org.apache.xalan.res:org.apache.xalan.stree:org.apache.xalan.trace:org.apache.xml.utils*:org.apache.xalan.xslt"/>
             <group title="Xalan Extensions" packages="org.apache.xalan.lib*"/>
             <group title="Serializers" 
packages="org.apache.serialize*:org.apache.xalan.serialize"/>
             <group title="SAX 2" packages="org.xml.sax*"/>
  @@ -403,5 +403,15 @@
          <fileset dir="${build.apidocs}"/>
        </copy>  
     </target>
  +  
  +  <!-- =================================================================== 
-->
  +  <!-- Creates the todo list for the org.apache.xml website                
-->
  +  <!-- =================================================================== 
-->
  +  <target name="todo">
  +    <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 todo.html"/>
  +    </java>   
  +  </target>  
  +  
      
   </project>
  
  
  

Reply via email to