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/11 22:31:40 UTC

cvs commit: xml-xalan/java build.bat build.sh build.xml

dleslie     00/09/11 13:31:36

  Modified:    java     build.bat build.sh build.xml
  Log:
  Revised build docs to work with a new version of Stylebook
  that uses Xalan-J 2. The new Stylebook jar is
  stylebook-1.0-b3_xalan-2.jar
  and it is in xml-xalan/java/bin.
  
  Revision  Changes    Path
  1.5       +1 -1      xml-xalan/java/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.bat,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.bat	2000/08/30 21:07:29	1.4
  +++ build.bat	2000/09/11 20:31:23	1.5
  @@ -19,7 +19,7 @@
   set XERCES=bin\xerces.jar
   set BSF=bin\bsf.jar
   set BSFENGINES=bin\bsfengines.jar
  -set DOCGENERATOR=bin\stylebook-1.0-b2.jar
  +set DOCGENERATOR=bin\stylebook-1.0-b3_xalan-2.jar
   set DOCLET=bin\xalanjdoc.jar
   
   rem DOCLET must be on system CLASSPATH for javadocs task to work. Just including it in
  
  
  
  1.3       +1 -1      xml-xalan/java/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.sh	2000/08/21 14:35:55	1.2
  +++ build.sh	2000/09/11 20:31:26	1.3
  @@ -25,7 +25,7 @@
   XERCES=$BINDIR/xerces.jar
   BSF=$BINDIR/bsf.jar
   BSFENGINES=$BINDIR/bsfengines.jar
  -DOCGENERATOR=$BINDIR/stylebook-1.0-b2.jar
  +DOCGENERATOR=$BINDIR/stylebook-1.0-b3_xalan-2.jar
   DOCLET=$BINDIR/xalanjdoc.jar
   
   # Make sure this classpath scheme works. I.e., can javadoc find xalanjdoc.Standard?
  
  
  
  1.14      +3 -8      xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- build.xml	2000/09/07 19:04:55	1.13
  +++ build.xml	2000/09/11 20:31:28	1.14
  @@ -8,7 +8,7 @@
      
        - set the JAVA_HOME environment variable to the JDK root directory
        - To build 'servlet' sample: Include Servlet SDK in your classpath
  -     - To build docs/javadocs: use JDK 1.2.x or higher, and have a xalan1.jar available
  +     - To build docs/javadocs: use JDK 1.2.x or higher
        
      
   Build Instructions:   
  @@ -40,7 +40,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.13 2000/09/07 19:04:55 dleslie Exp $
  +   $Id: build.xml,v 1.14 2000/09/11 20:31:28 dleslie Exp $
      
   ==================================================================== -->
   
  @@ -85,11 +85,6 @@
     <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"/>
  -  <!-- Note: to properly rebuild the normal documentation (i.e. not the javadoc) 
  -       you'll need a copy of a Xalan 1.x jar to do it, since some of the doc tools
  -       we use still are tied to the Xalan 1.x codebase.  This path points to where 
  -       a Xalan 1.x jar would get compiled (since we're in the same tree) -->
  -  <property name="xalan1.jar" value="../build/xalan.jar"/> <!-- still used by StyleBook -->
     
     <property name="site.root" value="./xml-site"/>
     <property name="site.dir" value="${site.root}/target/xalan"/>
  @@ -225,7 +220,7 @@
     
     <target name="autodocs">
       <echo message="autodocs is for automated build process, without dependencies"/>   
  -    <java fork="yes" classname="${doc.generator}" classpath="${java.class.path}:${xalan1.jar}" 
  +    <java fork="yes" classname="${doc.generator}" classpath="${java.class.path}:${xalan.jar}" 
            args="targetDirectory=${build.docs} ${xdocs.book} ${xdocs.style}"/>    
     </target>