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/07/14 20:46:51 UTC

cvs commit: xml-xalan build.xml

dleslie     00/07/14 11:46:50

  Modified:    .        build.xml
  Log:
  Added utility targets for internal use only.
  
  Revision  Changes    Path
  1.22      +20 -2     xml-xalan/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/build.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- build.xml	2000/06/28 19:28:52	1.21
  +++ build.xml	2000/07/14 18:46:49	1.22
  @@ -56,7 +56,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.21 2000/06/28 19:28:52 dleslie Exp $
  +   $Id: build.xml,v 1.22 2000/07/14 18:46:49 dleslie Exp $
      
   ==================================================================== -->
   
  @@ -270,7 +270,7 @@
     <!-- =================================================================== -->
     <!-- Creates the documentation tree for the org.apache.xml website       -->
     <!-- =================================================================== -->
  -  <target name="site" depends="javadocs">
  +  <target name="site">
    
       <mkdir dir="${site.dir}"/>
       <mkdir dir="${site.dir}/apidocs"/>
  @@ -292,5 +292,23 @@
     <target name="apidocs" depends="javadocs">
     <echo message="apidocs is an alias for the javadocs task -- creates Javadoc..."/>
     </target>
  +  
  +  <!-- =================================================================== -->
  +  <!-- For internal use only                                               -->
  +  <!-- =================================================================== -->
  +  <target name="xalan-c-apidocs-targz">
  +    <tar tarfile="c/build/docs/apidocs/xalan-c-apidocs.tar" basedir="c/build/docs/apidocs" includes="*"/>
  +    <gzip src="c/build/docs/apidocs/xalan-c-apidocs.tar" zipfile="c/build/docs/apidocs/xalan-c-apidocs.tar.gz"/>
  +  </target>
  +  <target name="style-targz">
  +    <tar tarfile="build/holding/xml-site-style.tar" basedir="build/holding"/>
  +    <gzip src="build/holding/xml-site-style.tar" zipfile="build/holding/xml-site-style.tar.gz"/>
  +  </target>
  +  
  +  <target name="notice-draft depends="prepare-src">
  +      <java fork="yes" classname="org.apache.xalan.xslt.Process" classpath="${java.class.path}:${build.dir}/${name}.jar"
  +       args="-parser org.apache.xalan.xpath.xdom.XercesLiaison -text -in ${xdocs.dir}/sources/xalan/notice.xml -xsl
  +       xdocs/style/stylesheets/notice.xsl -out build/site/notice.txt"/>
  +  </target> 
    
   </project>