Author: markt
Date: Tue Aug 12 06:27:27 2008
New Revision: 685143

URL: http://svn.apache.org/viewvc?rev=685143&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45301
Remove a JDK 1.4 dep for the few users that still run TC4 on 1.3 JDKs

Modified:
    tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt
    tomcat/container/branches/tc4.1.x/catalina/build.xml
    tomcat/current/tc4.1.x/STATUS.txt

Modified: tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt
URL: 
http://svn.apache.org/viewvc/tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt?rev=685143&r1=685142&r2=685143&view=diff
==============================================================================
--- tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt (original)
+++ tomcat/container/branches/tc4.1.x/RELEASE-NOTES-4.1.txt Tue Aug 12 06:27:27 
2008
@@ -2006,6 +2006,8 @@
 [4.1.38] CoyoteConnector
          Add additional checks for URI normalization.
 
+[4.1.38] CoyoteConnector
+         Remove JDK 1.4 dependency.
 
 ----------------
 Jasper Bug Fixes:

Modified: tomcat/container/branches/tc4.1.x/catalina/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/branches/tc4.1.x/catalina/build.xml?rev=685143&r1=685142&r2=685143&view=diff
==============================================================================
--- tomcat/container/branches/tc4.1.x/catalina/build.xml (original)
+++ tomcat/container/branches/tc4.1.x/catalina/build.xml Tue Aug 12 06:27:27 
2008
@@ -714,6 +714,13 @@
              value="" />
     </replace>
 
+    <!-- StringBuffer.append(StringBuffer) is a 1.4 method -->
+    <replace 
file="${tomcat-util.home}/java/org/apache/tomcat/util/http/ServerCookie.java">
+      <replacefilter
+             token="headerBuf.append(buf);"
+             value="headerBuf.append(buf.toString());" />
+    </replace>
+
     <ant dir="${tomcat-util.home}" target="build-main" inheritAll="false" >
        <property name="jmx.jar" value="${jmx.jar}" />
        <property name="puretls.jar" value="${puretls.jar}" />

Modified: tomcat/current/tc4.1.x/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/current/tc4.1.x/STATUS.txt?rev=685143&r1=685142&r2=685143&view=diff
==============================================================================
--- tomcat/current/tc4.1.x/STATUS.txt (original)
+++ tomcat/current/tc4.1.x/STATUS.txt Tue Aug 12 06:27:27 2008
@@ -25,8 +25,4 @@
 PATCHES PROPOSED TO BACKPORT:
   [ New proposals should be added at the end of the list ]
 
-* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45301
-  Remove a JDK 1.4 dep for the few users that still run TC4 on 1.3 JDKs
-  http://people.apache.org/~markt/patches/2008-07-07-bug45301-tc4.patch
-  +1: markt, yoavs, funkman
-  -1: 
+



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to