You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@locus.apache.org on 2000/09/07 20:48:57 UTC

cvs commit: xml-xalan/java build.xml

dleslie     00/09/07 11:48:56

  Modified:    java     build.xml
  Log:
  Added support for including Scott's TRaX "Patterns Design" in
  the Javadoc (transform patterns.xml and copy trax.gif).
  
  Revision  Changes    Path
  1.12      +10 -2     xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build.xml	2000/08/30 21:07:29	1.11
  +++ build.xml	2000/09/07 18:48:54	1.12
  @@ -40,7 +40,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.11 2000/08/30 21:07:29 curcuru Exp $
  +   $Id: build.xml,v 1.12 2000/09/07 18:48:54 dleslie Exp $
      
   ==================================================================== -->
   
  @@ -237,7 +237,15 @@
     </target>
   
     <target name="autojavadocs">
  -    <echo message="autojavadocs is for automated build process, without dependencies"/>   
  +    <echo message="autojavadocs is for automated build process, without dependencies"/>
  +    
  +    <!-- generate patterns.html, a TRaX "patterns design" document -->
  +    <java fork="yes" classname="org.apache.xalan.xslt.Process" classpath="${java.class.path}:${build.dir}/${xalan.jar}"
  +       args="-in ${src.dir}/trax/patterns.xml 
  +             -xsl ${xdocs.style}/stylesheets/patterns.xsl 
  +             -out ${build.apidocs}/trax/patterns.html"/>  <!-- patterns.html TRaX desing document -->    
  +    <copyfile src="./xdocs/sources/xalan/trax.gif" dest="${build.apidocs}/trax/trax.gif"/>
  +      
       <javadoc
            private="true"
            doclet="xalanjdoc.Standard"