You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bi...@apache.org on 2004/03/01 02:52:59 UTC

cvs commit: jakarta-tomcat README RELEASE-NOTES-3.3.2.txt build.xml

billbarker    2004/02/29 17:52:59

  Modified:    .        README RELEASE-NOTES-3.3.2.txt build.xml
  Log:
  Updating Release-Notes to include changes.
  
  Adding RegExp and commons-modeler to the list of required packages to build.
  
  License build.xml, and allow to build with Ant 1.5.x.
  
  Revision  Changes    Path
  1.21      +15 -6     jakarta-tomcat/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/README,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- README	18 Apr 2002 13:57:59 -0000	1.20
  +++ README	1 Mar 2004 01:52:59 -0000	1.21
  @@ -22,19 +22,28 @@
     ("%JAVA_HOME%\bin" for Windows) to your PATH.  Configure the CLASSPATH
     environment variable as well, if required.
   
  -* Download the latest Ant binary distribution (currently version 1.4.1) from
  -  <http://jakarta.apache.org/site/binindex.html> and install it in the
  +* Download the latest Ant binary distribution (currently version 1.6.1) from
  +  <http://ant.apache.org/bindownload.cgi> and install it in the
     $JAKARTA_HOME directory.  Set an "ANT_HOME" environment variable
     to point to $JAKARTA_HOME/jakarta-ant-<version> where <version> matches
  -  the version of Ant downloaded ($JAKARTA_HOME/jakarta-ant-1.4.1 for
  -  Ant v1.4.1).  If you are using Windows 9x, you should set ANT_HOME using
  +  the version of Ant downloaded ($JAKARTA_HOME/jakarta-ant-1.6.1 for
  +  Ant v1.6.1).  If you are using Windows 9x, you should set ANT_HOME using
     the DOS 8.3 name.  In this case, you may find it convenient to rename
  -  the directory to a name that is within the DOS 8.3 format, such as "ant-141".
  +  the directory to a name that is within the DOS 8.3 format, such as "ant-161".
     Also, add "$ANT_HOME/bin" (%ANT_HOME%/bin for Windows) to your PATH.
   
  +* Download the latest RegExp binary distribution (currently version 1.3.1) from
  +  <http://jakarta.apache.org/site/binindex.cgi> and install it in the
  +  $JAKARTA_HOME directory.  
  +
  +* Download the latest commons-modeler binary distribution 
  +  (currently version 1.1.1) from <http://jakarta.apache.org/site/binindex.cgi>
  +  and install it in the $JAKARTA_HOME directory.  
  +
   * If you want to include SSL support, download the Java Secure Sockets
     Extension (JSSE) implementation (current version number is 1.0.2) from
  -  <http://java.sun.com/products/jsse/> and install it into $JAKARTA_HOME.
  +  <http://java.sun.com/products/jsse/> and install it into $JAKARTA_HOME.  
  +  This step is not necessary if you are using a 1.4.x JVM.
   
   * Obtain the following source distribution(s) either from anonymous CVS (see
     <http://jakarta.apache.org/site/cvsindex.html> for details) or by
  
  
  
  1.22      +8 -2      jakarta-tomcat/RELEASE-NOTES-3.3.2.txt
  
  Index: RELEASE-NOTES-3.3.2.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/RELEASE-NOTES-3.3.2.txt,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- RELEASE-NOTES-3.3.2.txt	26 Oct 2003 01:43:59 -0000	1.21
  +++ RELEASE-NOTES-3.3.2.txt	1 Mar 2004 01:52:59 -0000	1.22
  @@ -78,6 +78,8 @@
   24123    Fix problem where the AccessLog wasn't logging request that produce
            no output.  Also log the Request's content length for PUT requests.
   
  +         Partially update to use commons-logging.
  +
   Jasper:
   
   Bug No.  Description
  @@ -89,10 +91,14 @@
   
   23101    Fix case dependency problem on Windows platforms.
   
  +         Fix high byte chars (xlate to unicode)
  +
  +         Fix a problem when a jsp include another jsp with relative path.
  +
   Configuration:
   
   Bug No.  Description
  -
  +8634     Allow alternative location for modules.xml
   
   
   Connectors:
  
  
  
  1.202     +16 -1     jakarta-tomcat/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/build.xml,v
  retrieving revision 1.201
  retrieving revision 1.202
  diff -u -r1.201 -r1.202
  --- build.xml	20 Feb 2004 03:55:03 -0000	1.201
  +++ build.xml	1 Mar 2004 01:52:59 -0000	1.202
  @@ -1,4 +1,19 @@
   <?xml version="1.0" encoding="UTF-8"?>
  +<!--
  +   Copyright 1999-2004 The Apache Software Foundation
  + 
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  + 
  +       http://www.apache.org/licenses/LICENSE-2.0
  + 
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +-->
   <project name="Tomcat" default="main" basedir=".">
   
     <!-- Compilation properties -->
  @@ -839,7 +854,7 @@
       <copy tofile="${tomcat.build}/webapps/admin/WEB-INF/lib/ant.jar"
             file="${ant.jar}"/>
       <copy tofile="${tomcat.build}/webapps/admin/WEB-INF/lib/ant-launcher.jar"
  -          file="${ant-launcher.jar}"/>
  +          file="${ant-launcher.jar}" failonerror="false" />
       <jar jarfile="${tomcat.build}/webapps/admin/WEB-INF/lib/tomcat_util_test.jar"
            basedir="${tomcat.build}/classes">
         <include name="org/apache/tomcat/util/**"/>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org