You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by st...@locus.apache.org on 2000/08/19 00:35:12 UTC

cvs commit: xml-cocoon changes.xml build.sh build.bat

stefano     00/08/18 15:35:11

  Modified:    .        changes.xml build.sh build.bat
  Log:
  preparing 1.8
  
  Revision  Changes    Path
  1.100     +7 -1      xml-cocoon/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/changes.xml,v
  retrieving revision 1.99
  retrieving revision 1.100
  diff -u -r1.99 -r1.100
  --- changes.xml	2000/08/17 22:34:57	1.99
  +++ changes.xml	2000/08/18 22:35:08	1.100
  @@ -4,7 +4,7 @@
   
   <!--
     History of Cocoon changes
  -  $Id: changes.xml,v 1.99 2000/08/17 22:34:57 stefano Exp $
  +  $Id: changes.xml,v 1.100 2000/08/18 22:35:08 stefano Exp $
   -->
   
   <changes title="History of Changes">
  @@ -16,6 +16,12 @@
     </devs>
   
    <release version="@version@" date="@date@">
  +  <action dev="SM" type="add" due-to="Juergen Sonnauer" due-to-email="juergen.sonnauer@t-online.de">
  +   Added java compiler abstraction for XSP compilation (now we can use Jikes to improve XSP compilation speed).
  +  </action>
  +  <action dev="SM" type="fix" due-to="Kevin Sonney" due-to-email="kevin@webslingerz.com">
  +   Patched the cookie XSP taglib and the LDAP processor.
  +  </action>
     <action dev="SM" type="fix" due-to="Mark Washeim" due-to-email="esalon@canuck.com">
      Make Cocoon running better under heavy load.
     </action>
  
  
  
  1.21      +1 -8      xml-cocoon/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/build.sh,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- build.sh	2000/07/22 10:21:34	1.20
  +++ build.sh	2000/08/18 22:35:09	1.21
  @@ -13,14 +13,7 @@
   fi
   
   ANT_HOME=./lib
  -ANT=./lib/ant_1_1.jar
  -JAVAC=$JAVA_HOME/lib/tools.jar
  -XERCES=./lib/xerces_1_1_2.jar
  -XALAN=./lib/xalan_1_1_D01.jar
  -FOP=./lib/fop_0_12_1.jar
  -SERVLETS=./lib/servlet_2_2.jar
  -TURBINE=./lib/turbine-pool.jar
  -LOCALCLASSPATH=$ANT:$JAVAC:$XERCES:$XALAN:$FOP:$SERVLETS:$TURBINE:$CLASSPATH
  +LOCALCLASSPATH=`echo lib/*.jar | tr ' ' ':'`:$JAVA_HOME/lib/tools.jar:$CLASSPATH
   
   echo
   echo Building with classpath $LOCALCLASSPATH
  
  
  
  1.18      +10 -14    xml-cocoon/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/build.bat,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- build.bat	2000/07/22 10:21:33	1.17
  +++ build.bat	2000/08/18 22:35:09	1.18
  @@ -2,19 +2,20 @@
   
   if "%JAVA_HOME%" == "" goto error
   
  +if not "%LIB_HOME%" == "" goto skip
  +
  +set LIB_HOME=.\lib
  +
  +:skip
  +
   echo.
   echo Cocoon Build System
   echo -------------------
   
   set ANT_HOME=.\lib
  -set ANT=.\lib\ant_1_1.jar
  -set JAVAC=%JAVA_HOME%\lib\tools.jar
  -set XERCES=.\lib\xerces_1_1_2.jar
  -set XALAN=.\lib\xalan_1_1_D01.jar
  -set FOP=.\lib\fop_0_12_1.jar
  -set SERVLETS=.\lib\servlet_2_2.jar
  -set TURBINE=.\lib\turbine-pool.jar
  -set LOCALCLASSPATH=%ANT%;%JAVAC%;%XERCES%;%XALAN%;%FOP%;%SERVLETS%;%TURBINE%;%CLASSPATH%
  +
  +set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar
  +for %%i in (%LIB_HOME%\*.jar) do call lcp.bat %%i
   
   echo.
   echo Building with classpath %LOCALCLASSPATH%
  @@ -36,10 +37,5 @@
   :end
   
   set LOCALCLASSPATH=
  -set XERCES=
  -set XALAN=
  -set FOP=
  -set SERVLETS=
  -set ANT=
   set ANT_HOME=
  -set JAVAC=
  +set LIB_HOME=