craigmcc    01/07/19 23:14:10

  Modified:    catalina/src/share/org/apache/catalina Globals.java
               webapps/ROOT index.html
  Added:       .        RELEASE-NOTES-4.0-B7.txt
  Log:
  Prepare for Tomcat 4.0-beta-7.
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat-4.0/RELEASE-NOTES-4.0-B7.txt
  
  Index: RELEASE-NOTES-4.0-B7.txt
  ===================================================================
                    Apache Tomcat Version 4.0 Beta 7
                    =================================
                              Release Notes
                              =============
  
  $Id: RELEASE-NOTES-4.0-B7.txt,v 1.1 2001/07/20 06:14:10 craigmcc Exp $
  
  
  ============
  INTRODUCTION:
  ============
  
  
  This document describes the changes that have been made in the current
  beta release of Apache Tomcat, relative to the previous release.
  
  Bug reports should be entered at the bug reporting system for
  Jakarta projects at:
  
          http://nagoya.apache.org/bugzilla/
  
  Please report bugs and feature requests under product name "Tomcat 4".
  
  
  ----> UPCOMING CHANGE NOTICE:  In a future beta release of Tomcat 4.0, it
  ----> is likely that the default operational mode will be to run Tomcat
  ----> under a security manager (rather than the current default of not
  ----> using one).  This may necessitate editing the policy permissions
  ----> file ($CATALINA_HOME/conf/catalina.policy) if your web applications
  ----> require permissions that are not enabled by default (such as connecting
  ----> to network ports).  You are urged to test your applications with
  ----> Tomcat 4.0-b5 running under the security manager now, so that this
  ----> upcoming change will not be disruptive.  To do so, start Tomcat 4.0
  ----> with the command "$CATALINA_HOME/bin/catalina.sh start -security"
  ----> (Unix) or "%CATALINA_HOME%\bin\catalina start -security" (Windows).
  
  
  ============
  NEW FEATURES:
  ============
  
  
  --------------------
  General New Features:
  --------------------
  
  
  ---------------------
  Catalina New Features:
  ---------------------
  
  
  -------------------
  Jasper New Features:
  -------------------
  
  
  --------------------
  Webapps New Features:
  --------------------
  
  
  ==========================
  BUG FIXES AND IMPROVEMENTS:
  ==========================
  
  
  ------------------
  Catalina Bug Fixes:
  ------------------
  
  
  ----------------
  Jasper Bug Fixes:
  ----------------
  
  
  -----------------
  Webapps Bug Fixes:
  -----------------
  
  
  ============================
  KNOWN ISSUES IN THIS RELEASE:
  ============================
  
  
  --------------------------
  Tomcat 4.0 and XML Parsers:
  --------------------------
  
  Previous versions of Tomcat 4.0 exposed the XML parser used by Jasper (the
  JAXP/1.1 reference implementation) to web applications.  This is no longer
  the case, because Jasper loads its parser with a new class loader instead.
  Keep the following points in mind when considering how to use XML parsers
  in Tomcat 4.0 and your web applications:
  
  * If you wish to make the JAXP/1.1 RI XML parser available to all web
    applications, simply move the "jaxp.jar" and "crimson.jar" files from
    the "$TOMCAT_HOME/jasper" directory to the "$TOMCAT_HOME/lib" directory.
  
  * If you wish to make another XML parser that is JAXP/1.1-compatible
    available to all web applications, install that parser into the
    "$TOMCAT_HOME/lib" directory and remove "jaxp.jar" and "crimson.jar"
    from the "$TOMCAT_HOME/jasper" directory.  It has been reported that
    Xerces 1.3.1 can be used in this fashion, but 2.x alpha releases
    can not be.
  
  * If you wish to use an XML parser (such as Xerces) in the WEB-INF/lib
    directory of your web application, this should now be possible, because
    of the modified JAXP 1.1 parser mentioned below.
  
  WARNING:  Tomcat 4.0 now ships with a modified version of the JAXP/1.1
  (Final) "jaxp.jar" and "crimson.jar" files in the "jasper" subdirectory.
  The "sealed" attribute has been removed from the manifest file for these
  two JARs, to avoid "package sealing violation" errors that were caused by
  them in a JDK 1.3 environment.  You MUST NOT replace these files with a
  different (or later) release of JAXP, unless that later release has had
  the sealed attribute removed, or you will encounter "package sealing violation"
  errors when trying to use a different XML parser in a web application.
  
  
  
  
  
  1.30      +5 -5      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java
  
  Index: Globals.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- Globals.java      2001/07/20 03:20:08     1.29
  +++ Globals.java      2001/07/20 06:14:10     1.30
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java,v 
1.29 2001/07/20 03:20:08 craigmcc Exp $
  - * $Revision: 1.29 $
  - * $Date: 2001/07/20 03:20:08 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Globals.java,v 
1.30 2001/07/20 06:14:10 craigmcc Exp $
  + * $Revision: 1.30 $
  + * $Date: 2001/07/20 06:14:10 $
    *
    * ====================================================================
    *
  @@ -69,7 +69,7 @@
    * Global constants that are applicable to multiple packages within Catalina.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.29 $ $Date: 2001/07/20 03:20:08 $
  + * @version $Revision: 1.30 $ $Date: 2001/07/20 06:14:10 $
    */
   
   public final class Globals {
  @@ -210,7 +210,7 @@
       /**
        * The descriptive information about this server and version.
        */
  -    public static final String SERVER_INFO = "Apache Tomcat/4.0-b6";
  +    public static final String SERVER_INFO = "Apache Tomcat/4.0-b7-dev";
   
   
       /**
  
  
  
  1.21      +2 -2      jakarta-tomcat-4.0/webapps/ROOT/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/ROOT/index.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- index.html        2001/07/20 03:20:09     1.20
  +++ index.html        2001/07/20 06:14:10     1.21
  @@ -4,13 +4,13 @@
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="GENERATOR" content="Mozilla/4.72 [en] (WinNT; U) [Netscape]">
   <meta name="Author" content="Anil K. Vijendran">
  -<title>Tomcat (v4.0-b6)</title>
  +<title>Tomcat (v4.0-b7-dev)</title>
   </head>
   <body bgcolor="#FFFFFF">
   <img SRC="tomcat.gif" height=92 width=130 align=LEFT><b><font face="Arial, 
Helvetica, sans-serif"><font size=+3>Tomcat</font></font></b>
   <br>
   <b><font face="Arial, Helvetica, sans-serif"><font size=-1>Version
  -4.0-b6</font></font></b>
  +4.0-b7-dev</font></font></b>
   <p>This is the default Tomcat home page. This page serves as a quick reference
   guide to related resources and is located at:
   <ul>
  
  
  

Reply via email to