svn commit: r821485 - /tomcat/tc5.5.x/trunk/STATUS.txt
Author: rjung Date: Sun Oct 4 09:20:29 2009 New Revision: 821485 URL: http://svn.apache.org/viewvc?rev=821485&view=rev Log: Vote. Modified: tomcat/tc5.5.x/trunk/STATUS.txt Modified: tomcat/tc5.5.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/STATUS.txt?rev=821485&r1=821484&r2=821485&view=diff == --- tomcat/tc5.5.x/trunk/STATUS.txt (original) +++ tomcat/tc5.5.x/trunk/STATUS.txt Sun Oct 4 09:20:29 2009 @@ -127,14 +127,6 @@ +1: markt -1: -* Clean up native classes (connectors/jni) in TC 5.5: - - Remove all tasks in build.xml except for compile-only -That's the only task used (called) by our top level build.xml - - Remove build.properties.default. All that's needed is in -the top level file - +1: rjung, markt, kkolinko - -1: - * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47878 Return 404's rather than a permanent 500 if a JSP is deleted http://svn.apache.org/viewvc?view=rev&revision=439565 @@ -155,10 +147,10 @@ Correct error in debug message in org.apache.catalina.Bootstrap. Already fixed in TC 6.0. http://svn.apache.org/viewvc?rev=817110&view=rev - +1: kkolinko, markt + +1: kkolinko, markt, rjung -1: * Upgrade to Commons-Pool 1.5.3. 1.5.2 had a leak http://svn.apache.org/viewvc?rev=821412&view=rev - +1: markt, kkolinko + +1: markt, kkolinko, rjung -1: - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821487 - /tomcat/tc6.0.x/trunk/STATUS.txt
Author: rjung Date: Sun Oct 4 09:29:41 2009 New Revision: 821487 URL: http://svn.apache.org/viewvc?rev=821487&view=rev Log: Vote. Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=821487&r1=821486&r2=821487&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Sun Oct 4 09:29:41 2009 @@ -317,7 +317,7 @@ Make maxThreads return consistent. Will still return -1 in many cases but that is better than previously. https://issues.apache.org/bugzilla/attachment.cgi?id=24341&action=edit - +1: markt, kkolinko + +1: markt, kkolinko, rjung -1: kkolinko: (We need to make some decision regarding the following lines in Http11Processor#process(): int threadRatio = (endpoint.getCurrentThreadsBusy() * 100) @@ -327,9 +327,10 @@ cannot be reliably calculated. Besides that, I see no problems with this patch. + rjung: me to (threadRatio <= 75 branch). ) * Upgrade to Commons-Pool 1.5.3. 1.5.2 had a leak http://svn.apache.org/viewvc?rev=821412&view=rev - +1: markt, kkolinko + +1: markt, kkolinko, rjung -1: - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821488 - /tomcat/tc5.5.x/trunk/STATUS.txt
Author: rjung Date: Sun Oct 4 09:31:08 2009 New Revision: 821488 URL: http://svn.apache.org/viewvc?rev=821488&view=rev Log: Recover status entry which got lost by my lost unintentionally voting commit. Modified: tomcat/tc5.5.x/trunk/STATUS.txt Modified: tomcat/tc5.5.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/STATUS.txt?rev=821488&r1=821487&r2=821488&view=diff == --- tomcat/tc5.5.x/trunk/STATUS.txt (original) +++ tomcat/tc5.5.x/trunk/STATUS.txt Sun Oct 4 09:31:08 2009 @@ -127,6 +127,14 @@ +1: markt -1: +* Clean up native classes (connectors/jni) in TC 5.5: + - Remove all tasks in build.xml except for compile-only +That's the only task used (called) by our top level build.xml + - Remove build.properties.default. All that's needed is in +the top level file + +1: rjung, markt, kkolinko + -1: + * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47878 Return 404's rather than a permanent 500 if a JSP is deleted http://svn.apache.org/viewvc?view=rev&revision=439565 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821504 - /tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/realm/JAASRealm.java
Author: rjung Date: Sun Oct 4 10:59:15 2009 New Revision: 821504 URL: http://svn.apache.org/viewvc?rev=821504&view=rev Log: Remove argument from Javadoc, that was erroneously added in r757218. Modified: tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/realm/JAASRealm.java Modified: tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/realm/JAASRealm.java URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/realm/JAASRealm.java?rev=821504&r1=821503&r2=821504&view=diff == --- tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/realm/JAASRealm.java (original) +++ tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/realm/JAASRealm.java Sun Oct 4 10:59:15 2009 @@ -341,7 +341,6 @@ * @param realmName Realm name * @param md5a2 Second MD5 digest used to calculate the digest * MD5(Method + ":" + uri) - * @param authMethodThe authentication scheme in use */ public Principal authenticate(String username, String clientDigest, String nonce, String nc, String cnonce, String qop, - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821505 - /tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/JAASRealm.java
Author: rjung Date: Sun Oct 4 11:02:02 2009 New Revision: 821505 URL: http://svn.apache.org/viewvc?rev=821505&view=rev Log: Remove Javadoc for method argument, that was erroneously added in r692717. Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/JAASRealm.java Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/JAASRealm.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/JAASRealm.java?rev=821505&r1=821504&r2=821505&view=diff == --- tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/JAASRealm.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/JAASRealm.java Sun Oct 4 11:02:02 2009 @@ -338,7 +338,6 @@ * @param realmName Realm name * @param md5a2 Second MD5 digest used to calculate the digest * MD5(Method + ":" + uri) - * @param authMethodThe authentication scheme in use */ public Principal authenticate(String username, String clientDigest, String nonce, String nc, String cnonce, String qop, - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821507 - /tomcat/trunk/java/org/apache/catalina/realm/JAASRealm.java
Author: rjung Date: Sun Oct 4 11:04:37 2009 New Revision: 821507 URL: http://svn.apache.org/viewvc?rev=821507&view=rev Log: Remove Javadoc for method argument, that was erroneously added in r684270. Modified: tomcat/trunk/java/org/apache/catalina/realm/JAASRealm.java Modified: tomcat/trunk/java/org/apache/catalina/realm/JAASRealm.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/realm/JAASRealm.java?rev=821507&r1=821506&r2=821507&view=diff == --- tomcat/trunk/java/org/apache/catalina/realm/JAASRealm.java (original) +++ tomcat/trunk/java/org/apache/catalina/realm/JAASRealm.java Sun Oct 4 11:04:37 2009 @@ -338,7 +338,6 @@ * @param realmName Realm name * @param md5a2 Second MD5 digest used to calculate the digest * MD5(Method + ":" + uri) - * @param authMethodThe authentication scheme in use */ public Principal authenticate(String username, String clientDigest, String nonce, String nc, String cnonce, String qop, - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821515 - /tomcat/tc5.5.x/trunk/connectors/jni/build.xml
Author: rjung Date: Sun Oct 4 11:44:25 2009 New Revision: 821515 URL: http://svn.apache.org/viewvc?rev=821515&view=rev Log: Remove examples and test related build target from TC 5.5 jni build.xml, because those need the native sources, and the tc 5.5 part of jni only contains the Java parts. Modified: tomcat/tc5.5.x/trunk/connectors/jni/build.xml Modified: tomcat/tc5.5.x/trunk/connectors/jni/build.xml URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/connectors/jni/build.xml?rev=821515&r1=821514&r2=821515&view=diff == --- tomcat/tc5.5.x/trunk/connectors/jni/build.xml (original) +++ tomcat/tc5.5.x/trunk/connectors/jni/build.xml Sun Oct 4 11:44:25 2009 @@ -20,10 +20,12 @@ - - + + + + @@ -37,10 +39,6 @@ - - - - @@ -50,9 +48,9 @@ - - + + @@ -61,10 +59,6 @@ - - - - @@ -74,36 +68,12 @@ - - - - - - - - - - - - - - - - - - - - - - + - @@ -181,7 +151,6 @@ - @@ -198,46 +167,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -260,105 +189,4 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821516 - /tomcat/tc5.5.x/trunk/connectors/jni/build.xml
Author: rjung Date: Sun Oct 4 11:45:59 2009 New Revision: 821516 URL: http://svn.apache.org/viewvc?rev=821516&view=rev Log: Fix indentation Modified: tomcat/tc5.5.x/trunk/connectors/jni/build.xml Modified: tomcat/tc5.5.x/trunk/connectors/jni/build.xml URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/connectors/jni/build.xml?rev=821516&r1=821515&r2=821516&view=diff == --- tomcat/tc5.5.x/trunk/connectors/jni/build.xml (original) +++ tomcat/tc5.5.x/trunk/connectors/jni/build.xml Sun Oct 4 11:45:59 2009 @@ -151,21 +151,21 @@ - - - - - - - - + + + + + + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821536 - /tomcat/tc5.5.x/trunk/build/build.xml
Author: rjung Date: Sun Oct 4 13:03:34 2009 New Revision: 821536 URL: http://svn.apache.org/viewvc?rev=821536&view=rev Log: Fix indentation. No functional change. Modified: tomcat/tc5.5.x/trunk/build/build.xml Modified: tomcat/tc5.5.x/trunk/build/build.xml URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/build/build.xml?rev=821536&r1=821535&r2=821536&view=diff == --- tomcat/tc5.5.x/trunk/build/build.xml (original) +++ tomcat/tc5.5.x/trunk/build/build.xml Sun Oct 4 13:03:34 2009 @@ -338,55 +338,55 @@ - -== Building: tomcat-apr - - - - - - - - - - - - - - - - + +== Building: tomcat-apr + + + + + + - + + + + + + + + + - -== Building: tomcat-juli - - - - - - - - - - - - - - + - + +== Building: tomcat-juli - + + + + + + + + + + + + + + + + +
svn commit: r821537 - /tomcat/tc5.5.x/trunk/connectors/jni/build.properties.default
Author: rjung Date: Sun Oct 4 13:07:09 2009 New Revision: 821537 URL: http://svn.apache.org/viewvc?rev=821537&view=rev Log: Remove more obsolete test garbage from jni build.xml in TC 5.5. Modified: tomcat/tc5.5.x/trunk/connectors/jni/build.properties.default Modified: tomcat/tc5.5.x/trunk/connectors/jni/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/connectors/jni/build.properties.default?rev=821537&r1=821536&r2=821537&view=diff == --- tomcat/tc5.5.x/trunk/connectors/jni/build.properties.default (original) +++ tomcat/tc5.5.x/trunk/connectors/jni/build.properties.default Sun Oct 4 13:07:09 2009 @@ -15,16 +15,9 @@ # limitations under the License. # -# - Vesion Control Flags - +# - Version Control Flags - version.major=1 version.minor=1 version.build=17 version.patch=0 version.suffix=-dev - -# The directory containing your binary distribution of JUnit, -# version 3.8 or later -junit.home = /usr/local/java/junit3.8.1 - -# The pathname of the "junit.jar" JAR file -junit.jar = ${junit.home}/junit.jar - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821540 - /tomcat/tc5.5.x/trunk/STATUS.txt
Author: rjung Date: Sun Oct 4 13:42:58 2009 New Revision: 821540 URL: http://svn.apache.org/viewvc?rev=821540&view=rev Log: Mostly done. See seperate list discussion. Modified: tomcat/tc5.5.x/trunk/STATUS.txt Modified: tomcat/tc5.5.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/STATUS.txt?rev=821540&r1=821539&r2=821540&view=diff == --- tomcat/tc5.5.x/trunk/STATUS.txt (original) +++ tomcat/tc5.5.x/trunk/STATUS.txt Sun Oct 4 13:42:58 2009 @@ -127,14 +127,6 @@ +1: markt -1: -* Clean up native classes (connectors/jni) in TC 5.5: - - Remove all tasks in build.xml except for compile-only -That's the only task used (called) by our top level build.xml - - Remove build.properties.default. All that's needed is in -the top level file - +1: rjung, markt, kkolinko - -1: - * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47878 Return 404's rather than a permanent 500 if a JSP is deleted http://svn.apache.org/viewvc?view=rev&revision=439565 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
tcnative in TC5.5: version properties
Hi, while cleaning up the connectors/jni build.xml in TC 5.5 I stumbled over the following: There are two ways to build the Java classes for tcnative in TC 5.5. One way is using the build.xml of TC 5.5. It uses the Java files from the jni source as is, as well as the file apr.properties, compiles and build tomcat-apr.jar. The other way is building inside connectors/jni. The most important difference is, that building from TC 5.5 does not filter the file apr.properties (it contains an ant token to be replaced with the tcnative version) and it also does not contain the Implementation-* and Specification-* attributes in the jar manifest, that the jni local build would include. The whole file apr.properties and the improved manifest are gone in TC 6.0.x and trunk. There are (at least) four options: a) leave as is, we don't care for TC 5.5. b) improve build for TC 5.5 also filtering apr.properties and improving the manifest by leveraging the existing targets in jni build.xml instead of duplicating the effort in the main build.xml (I already have a patch for that) c) remove all version information for the Java side of tcnative from the TC 5.5 copy, as is already the case for TC 6.0 and trunk. d) include the version information also for TC 6.0.x and trunk. Are there any preferences? My personal preference is a), but since I do have a patch for b) I wanted to see other opinions. Regards, Rainer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47467] Deployment of the war file by URL when contextpath is not specified in Manager Application.
https://issues.apache.org/bugzilla/show_bug.cgi?id=47467 --- Comment #11 from Uwe Günther 2009-10-04 07:22:57 PDT --- I need a bit of an advice here from the commiters here. Mark maybe you could give me some infos. But let me first ask the question: If have fixed and tested the deploy method in the ManagerServlet and I am in the process changing the javadoc for the ManagerServlet to what it does. But I think this whole bug/change starts to mushroom in to something bigger the deeper I dig in the code because there are alot of inconsistencies. I just want to list here some of them which needs to be cleaned up in that area: 1.) Go over the Ant DeployTask and remove some deprecated Tasks and make the DeployTask more consistent (&localWar &war mess). There are also some invariants of the params which would cause odd behavior there. 2.) Go over the manager/text/ and remove some deprecated tasks and make it more consistent compared with its subclass HTMLManagerServlet. There are odd things as well, I don't want to list them all here in detail. 3.) Go over the whole manager-howto.xml and describe the behavior we have really at the moment. This is a task where I would need someone whose mother tounge is english to double check the stuff I plan to rewrite. I don't want to do that all in this Bug number, because I think the changes I did to ManagerServlet#deploy(.) and the HTMLManagerServlet already are not that small at all and I do want to get them in first. Possibly I should create 3 new Bugs for 1.) - 3.) and should put all the stuff I fixed in to a patch and attach it to this one so you guys can commit it. What do you mean? BTW: I have done all in the trunk (Tomcat 7). How do you bring this usually back into Tomcat 6.0.x or 5.5.x ? -- Cheers Uwe -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: svn commit: r821438 - in /tomcat: tc5.5.x/trunk/STATUS.txt tc6.0.x/trunk/STATUS.txt
kkoli...@apache.org wrote: > @@ -316,10 +317,19 @@ >Make maxThreads return consistent. Will still return -1 in many cases but > that >is better than previously. >https://issues.apache.org/bugzilla/attachment.cgi?id=24341&action=edit > - +1: markt > - -1: > + +1: markt, kkolinko > + -1: > + kkolinko: (We need to make some decision regarding the following lines in > Http11Processor#process(): > +int threadRatio = (endpoint.getCurrentThreadsBusy() * 100) > +/ endpoint.getMaxThreads(); > +When JIoEndpoint uses an executor this value that was (-100) will now be > (+100). > +I am in favour of using the (threadRatio <= 75) branch when threadRatio > +cannot be reliably calculated. > + > +Besides that, I see no problems with this patch. > + ) That's bad. I'll take another look. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: tcnative in TC5.5: version properties
2009/10/4 Rainer Jung: > b) filtering apr.properties and improving > the manifest A simple question: if you do filter apr.properties, what value you'll put there, and on what grounds? [cite of apr.properties] tcn.info=Tomcat Native/@VERSION@ [/cite] That value cannot be 1.1.something, because these sources are not on /tomcat/native/branches/1.1.x/ Regarding this question: > leveraging the existing targets in jni build.xml instead > of duplicating the effort in the main build.xml If jni build.xml is a copy of one in /tomcat/native/branches/1.1.x/, I would prefer to ignore it (and not use when building TC5.5 release), treating it as some legacy. Maybe even +1 to remove it, to lessen confusion. Regarding the future: I do not know, whether it is hard, and how interdependencies are, but maybe we can build and distribute "tomcat-apr.jar" as a part of the TC-Native release? And use the same pre-built jar for TC 5.5, 6.0 and 7.0 releases. Is it an optional jar, that can be removed by ones that do not have the native dll/so installed? (In TC 6.0 those classes are in tomcat-coyote.jar now). Best regards, Konstantin Kolinko - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821606 - in /tomcat/tc5.5.x/trunk: STATUS.txt container/catalina/src/share/org/apache/catalina/startup/Bootstrap.java container/webapps/docs/changelog.xml
Author: kkolinko Date: Sun Oct 4 20:36:45 2009 New Revision: 821606 URL: http://svn.apache.org/viewvc?rev=821606&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47826 Correct broken debug message Modified: tomcat/tc5.5.x/trunk/STATUS.txt tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/startup/Bootstrap.java tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml Modified: tomcat/tc5.5.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/STATUS.txt?rev=821606&r1=821605&r2=821606&view=diff == --- tomcat/tc5.5.x/trunk/STATUS.txt (original) +++ tomcat/tc5.5.x/trunk/STATUS.txt Sun Oct 4 20:36:45 2009 @@ -143,13 +143,6 @@ +1: rjung -1: -* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47826 - Correct error in debug message in org.apache.catalina.Bootstrap. - Already fixed in TC 6.0. - http://svn.apache.org/viewvc?rev=817110&view=rev - +1: kkolinko, markt, rjung - -1: - * Upgrade to Commons-Pool 1.5.3. 1.5.2 had a leak http://svn.apache.org/viewvc?rev=821412&view=rev +1: markt, kkolinko, rjung Modified: tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/startup/Bootstrap.java URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/startup/Bootstrap.java?rev=821606&r1=821605&r2=821606&view=diff == --- tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/startup/Bootstrap.java (original) +++ tomcat/tc5.5.x/trunk/container/catalina/src/share/org/apache/catalina/startup/Bootstrap.java Sun Oct 4 20:36:45 2009 @@ -148,7 +148,7 @@ } } if (replace && log.isDebugEnabled()) -log.debug("Expanded " + before + " to " + replace); +log.debug("Expanded " + before + " to " + repository); // Check for a JAR URL repository try { Modified: tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml?rev=821606&r1=821605&r2=821606&view=diff == --- tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml (original) +++ tomcat/tc5.5.x/trunk/container/webapps/docs/changelog.xml Sun Oct 4 20:36:45 2009 @@ -66,6 +66,10 @@ old method. Patch provided by Christopher Schultz. (markt) +47826: Correct error in debug message in +org.apache.catalina.Bootstrap (markt) + + Add an additional permission required by JULI when running under newer JDKs and a security manager. (markt) - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47826] a logging statement error in org.apache.catalina.startup.Bootstrap.java
https://issues.apache.org/bugzilla/show_bug.cgi?id=47826 --- Comment #2 from Konstantin Kolinko 2009-10-04 13:41:27 PDT --- Fixed in 5.5 as well, will be in 5.5.29. Thank you for the report. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821627 - /tomcat/taglibs/taglibs-parent/trunk/pom.xml
Author: bayard Date: Sun Oct 4 22:15:42 2009 New Revision: 821627 URL: http://svn.apache.org/viewvc?rev=821627&view=rev Log: Updating to indicate user list is now at Tomcat Modified: tomcat/taglibs/taglibs-parent/trunk/pom.xml Modified: tomcat/taglibs/taglibs-parent/trunk/pom.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/taglibs-parent/trunk/pom.xml?rev=821627&r1=821626&r2=821627&view=diff == --- tomcat/taglibs/taglibs-parent/trunk/pom.xml (original) +++ tomcat/taglibs/taglibs-parent/trunk/pom.xml Sun Oct 4 22:15:42 2009 @@ -55,9 +55,21 @@ Taglibs User List - taglibs-user-subscr...@jakarta.apache.org - taglibs-user-unsubscr...@jakarta.apache.org - taglibs-u...@jakarta.apache.org + taglibs-user-subscr...@tomcat.apache.org + taglibs-user-unsubscr...@tomcat.apache.org + taglibs-u...@tomcat.apache.org + http://mail-archives.apache.org/mod_mbox/tomcat-taglibs-user/ + + + + Old Taglibs User Archive http://mail-archives.apache.org/mod_mbox/jakarta-taglibs-user/ http://markmail.org/list/org.apache.jakarta.taglibs-user/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821648 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt webapps/docs/changelog.xml webapps/manager/sessionDetail.jsp webapps/manager/sessionsList.jsp
Author: kkolinko Date: Mon Oct 5 01:53:42 2009 New Revision: 821648 URL: http://svn.apache.org/viewvc?rev=821648&view=rev Log: Fix display of sessionList and sessionDetail pages in IE 6 and IE 7: do not include ASF License comment into generated output. Because of that large comment that precedes other content those browsers try to display these pages as generic XML, and fail. Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml tomcat/tc6.0.x/trunk/webapps/manager/sessionDetail.jsp tomcat/tc6.0.x/trunk/webapps/manager/sessionsList.jsp Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Oct 5 01:53:42 2009 @@ -1 +1 @@ -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361,820110 Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=821648&r1=821647&r2=821648&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Mon Oct 5 01:53:42 2009 @@ -293,11 +293,6 @@ +1: rjung, pero -1: -* Fix display of sessionList and sessionDetail pages in Internet Explorer - http://svn.apache.org/viewvc?rev=820110&view=rev - +1: kkolinko, rjung, markt - -1: - * Do not reuse sessionsList window to show sessionsDetail http://svn.apache.org/viewvc?rev=820132&view=rev +1: kkolinko, rjung, markt Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=821648&r1=821647&r2=821648&view=diff == --- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Mon
svn commit: r821653 - in /tomcat/taglibs/site/src/site/xdoc/site: dormant.xml sandbox.xml
Author: bayard Date: Mon Oct 5 01:59:30 2009 New Revision: 821653 URL: http://svn.apache.org/viewvc?rev=821653&view=rev Log: Removing dead pages Removed: tomcat/taglibs/site/src/site/xdoc/site/dormant.xml tomcat/taglibs/site/src/site/xdoc/site/sandbox.xml - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821654 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt java/org/apache/catalina/manager/HTMLManagerServlet.java webapps/docs/changelog.xml webapps/manager/sessionsList.jsp
Author: kkolinko Date: Mon Oct 5 01:59:36 2009 New Revision: 821654 URL: http://svn.apache.org/viewvc?rev=821654&view=rev Log: Do not reuse sessionsList window to show sessionsDetail. Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml tomcat/tc6.0.x/trunk/webapps/manager/sessionsList.jsp Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Oct 5 01:59:36 2009 @@ -1 +1 @@ -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361,820110 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361,820110,820132 Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=821654&r1=821653&r2=821654&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Mon Oct 5 01:59:36 2009 @@ -293,11 +293,6 @@ +1: rjung, pero -1: -* Do not reuse sessionsList window to show sessionsDetail - http://svn.apache.org/viewvc?rev=820132&view=rev - +1: kkolinko, rjung, markt - -1: - * Remove tomcat-coyote.jar reference from bootstrap.jar manifest file http://svn.apache.org/viewvc?rev=820874&view=rev +1: kkolinko, rjung, markt Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java?rev=821654&r1=821653&r2=821654&view=diff == --- tomcat/tc6.0.x/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java Mon Oct 5 01:59:36 2009 @@ -981,7 +981,7 @
svn commit: r821655 - /tomcat/taglibs/taglibs-parent/trunk/src/site/site.xml
Author: bayard Date: Mon Oct 5 02:00:01 2009 New Revision: 821655 URL: http://svn.apache.org/viewvc?rev=821655&view=rev Log: Removing download link. With only two taglibs, they can handle their own download links Modified: tomcat/taglibs/taglibs-parent/trunk/src/site/site.xml Modified: tomcat/taglibs/taglibs-parent/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/taglibs-parent/trunk/src/site/site.xml?rev=821655&r1=821654&r2=821655&view=diff == --- tomcat/taglibs/taglibs-parent/trunk/src/site/site.xml (original) +++ tomcat/taglibs/taglibs-parent/trunk/src/site/site.xml Mon Oct 5 02:00:01 2009 @@ -26,7 +26,6 @@ specify /taglibs/news.html etc --> http://tomcat.apache.org/taglibs/index.html"; /> - http://jakarta.apache.org/site/downloads/downloads_taglibs.html"; /> http://tomcat.apache.org/taglibs/site/using.html"; /> http://tomcat.apache.org/taglibs/site/tutorial.html"; /> http://tomcat.apache.org/taglibs/site/news.html"; /> - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821657 - /tomcat/taglibs/standard/trunk/src/site/xdoc/changes.xml
Author: bayard Date: Mon Oct 5 02:01:39 2009 New Revision: 821657 URL: http://svn.apache.org/viewvc?rev=821657&view=rev Log: Basic skeleton for a changes report Added: tomcat/taglibs/standard/trunk/src/site/xdoc/changes.xml (with props) Added: tomcat/taglibs/standard/trunk/src/site/xdoc/changes.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/src/site/xdoc/changes.xml?rev=821657&view=auto == --- tomcat/taglibs/standard/trunk/src/site/xdoc/changes.xml (added) +++ tomcat/taglibs/standard/trunk/src/site/xdoc/changes.xml Mon Oct 5 02:01:39 2009 @@ -0,0 +1,40 @@ + + + + +Apache Standard Taglib Changes + + + + + + + + + + + + + + + + + + + + Propchange: tomcat/taglibs/standard/trunk/src/site/xdoc/changes.xml -- svn:eol-style = native - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821660 - /tomcat/taglibs/taglibs-parent/trunk/pom.xml
Author: bayard Date: Mon Oct 5 02:07:14 2009 New Revision: 821660 URL: http://svn.apache.org/viewvc?rev=821660&view=rev Log: Breaking nabble url as it breaks the xml parsing Modified: tomcat/taglibs/taglibs-parent/trunk/pom.xml Modified: tomcat/taglibs/taglibs-parent/trunk/pom.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/taglibs-parent/trunk/pom.xml?rev=821660&r1=821659&r2=821660&view=diff == --- tomcat/taglibs/taglibs-parent/trunk/pom.xml (original) +++ tomcat/taglibs/taglibs-parent/trunk/pom.xml Mon Oct 5 02:07:14 2009 @@ -62,8 +62,8 @@ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821663 - /tomcat/taglibs/site/src/site/xdoc/index.xml
Author: bayard Date: Mon Oct 5 02:09:34 2009 New Revision: 821663 URL: http://svn.apache.org/viewvc?rev=821663&view=rev Log: Adding a section on formerly being Jakarta Taglibs so older taglibs may be found Modified: tomcat/taglibs/site/src/site/xdoc/index.xml Modified: tomcat/taglibs/site/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/site/src/site/xdoc/index.xml?rev=821663&r1=821662&r2=821663&view=diff == --- tomcat/taglibs/site/src/site/xdoc/index.xml (original) +++ tomcat/taglibs/site/src/site/xdoc/index.xml Mon Oct 5 02:09:34 2009 @@ -33,6 +33,15 @@ + + + Apache Taglibs was originally called Jakarta Taglibs. When the project changed name, and moved over to coexist + with the Tomcat project, many of the original taglibs were retired. See the + http://jakarta.apache.org/site/retired-taglibs.html";>Jakarta Taglibs retirement page for + more on these taglibs. + + + The final version of the http://jcp.org/en/jsr/detail?id=245";>JSP 2.1 specification was released on the 11th of May 2006. The final version of the http://jcp.org/en/jsr/detail?id=53";>JSP 1.2 specification was released on the 25th of September 2001. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821664 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt res/META-INF/bootstrap.jar.manifest webapps/docs/changelog.xml
Author: kkolinko Date: Mon Oct 5 02:09:43 2009 New Revision: 821664 URL: http://svn.apache.org/viewvc?rev=821664&view=rev Log: Remove tomcat-coyote.jar reference from bootstrap.jar manifest file tomcat-coyote.jar (former tomcat-util.jar before rev.389946) is not needed by bootstrap classes Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/res/META-INF/bootstrap.jar.manifest tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Oct 5 02:09:43 2009 @@ -1 +1 @@ -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361,820110,820132 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361,820110,820132,820874 Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=821664&r1=821663&r2=821664&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Mon Oct 5 02:09:43 2009 @@ -293,11 +293,6 @@ +1: rjung, pero -1: -* Remove tomcat-coyote.jar reference from bootstrap.jar manifest file - http://svn.apache.org/viewvc?rev=820874&view=rev - +1: kkolinko, rjung, markt - -1: - * Use file.toURI().toString() to create URLs in VirtualWebappLoader http://svn.apache.org/viewvc?rev=820954&view=rev +1: kkolinko, rjung, markt Modified: tomcat/tc6.0.x/trunk/res/META-INF/bootstrap.jar.manifest URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/res/META-INF/bootstrap.jar.manifest?rev=821664&r1=821663&r2=821664&view=diff == --- tomcat/tc6.0.x/trunk/res/META-INF/bootstrap.jar.manifest (original) +++ tomcat/tc6.0.x/trunk/res/META-INF/bootstrap.jar.manifest Mon Oct 5 02:09:43 2009 @@ -1,5 +1,5 @@ Manifest-Version: 1.0 Main-Class: or
svn commit: r821665 - /tomcat/taglibs/site/src/site/xdoc/index.xml
Author: bayard Date: Mon Oct 5 02:10:36 2009 New Revision: 821665 URL: http://svn.apache.org/viewvc?rev=821665&view=rev Log: Commenting out jsp spec section. Not sure why it's there. Modified: tomcat/taglibs/site/src/site/xdoc/index.xml Modified: tomcat/taglibs/site/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/site/src/site/xdoc/index.xml?rev=821665&r1=821664&r2=821665&view=diff == --- tomcat/taglibs/site/src/site/xdoc/index.xml (original) +++ tomcat/taglibs/site/src/site/xdoc/index.xml Mon Oct 5 02:10:36 2009 @@ -42,10 +42,12 @@ + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r821672 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt java/org/apache/catalina/loader/VirtualWebappLoader.java webapps/docs/changelog.xml
Author: kkolinko Date: Mon Oct 5 03:14:25 2009 New Revision: 821672 URL: http://svn.apache.org/viewvc?rev=821672&view=rev Log: Use proper method to construct an URL string. File.toURI() takes care of absolute paths, trailing slashes in the names of directories, encoding of special characters such as '%'. Based on a suggestion by Rainer Jung. Discussion: http://marc.info/?t=12518257461&r=1&w=2 Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/java/org/apache/catalina/loader/VirtualWebappLoader.java tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Mon Oct 5 03:14:25 2009 @@ -1 +1 @@ -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361,820110,820132,820874 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,677910,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,753039,757335,757774,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770809,770876,776921,776924,776935,776945,77 7464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809603,812125,812137,812432,813001,813013,813866,814180,815972,817442,819339,819361,820110,820132,820874,820954 Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=821672&r1=821671&r2=821672&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Mon Oct 5 03:14:25 2009 @@ -293,11 +293,6 @@ +1: rjung, pero -1: -* Use file.toURI().toString() to create URLs in VirtualWebappLoader - http://svn.apache.org/viewvc?rev=820954&view=rev - +1: kkolinko, rjung, markt - -1: - * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47161 Make maxThreads return consistent. Will still return -1 in many cases but that is better than previously. Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/loader/VirtualWebappLoader.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/loader/VirtualWebappLoader.java?rev=821672&r1=821671&r2=821672&view=diff == -
DO NOT REPLY [Bug 47939] New: Jars added by VirtualWebappLoader are not scanned for TLDs
https://issues.apache.org/bugzilla/show_bug.cgi?id=47939 Summary: Jars added by VirtualWebappLoader are not scanned for TLDs Product: Tomcat 7 Version: trunk Platform: PC OS/Version: Windows XP Status: NEW Severity: regression Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: knst.koli...@gmail.com Created an attachment (id=24342) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24342) WAR that reproduces the issue I was using the attached web application to test recent VirtualWebappLoader patch. It uses VirtualWebappLoader to add jstl.jar and standard.jar from Tomcat examples webapp. Its only page, choose.jsp, is copied from our examples and uses several JSTL tags. This web application works in the current TC 6.0.x, but not in trunk, complaining that "The absolute uri: {..} cannot be resolved". It starts working in trunk if I explicitly bundle a copy of c.tld with it and reference it in web.xml. Thus it is an issue with TLD scanning, not with class loading. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Taglibs [2009/10/04]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | | 6347|New|Nor|2002-02-10|io:param should url encode| | 6390|New|Nor|2002-02-12|valueOf evaluates &'s to & when the & was part| | 6613|New|Nor|2002-02-21|cannot use xtags:style more than one time per page| | 8694|Ver|Maj|2002-05-01|Exception when trying to acces the Map.entry compo| | 8723|Ver|Nor|2002-05-02|use of xsltSystemID does not take effect if xslt a| | 9257|Ver|Nor|2002-05-20|ELParser doesn't parse non-ascii value| | 9581|Ver|Min|2002-06-03|update SQL examples to allow for the inputting of | | 9968|Ver|Maj|2002-06-18|c:url prepends path to page relative URLs | |10175|Ver|Nor|2002-06-24|Welcome file absent from standard-examples.war in | |11217|Unc|Blk|2002-07-26|Custom Tag Library Error: 'Tag library ""not found| |11347|New|Maj|2002-07-31|xtags:if test="position()!=last()" - position() & | |11361|New|Enh|2002-08-01|Allow user to create own URIResolver | |12133|New|Blk|2002-08-28|scrape not work for some urls the request for a co| |12618|New|Maj|2002-09-13|Mode attribute on xtags:template & xtags:applyTemp| |12620|New|Nor|2002-09-13|position() and last() do not work in xtags:templat| |13794|New|Blk|2002-10-20|Unable to list the tag librairies in the custom ta| |13971|New|Maj|2002-10-25|Style tag does not work with Tomcat 4 with xml or | |14214|New|Maj|2002-11-04|[PATCH] io:http - can't invoke POS| |15129|New|Nor|2002-12-06|Distribution of this CTLX is unuseable| |15551|New|Nor|2002-12-19|error: output must have content-handler property | |17211|New|Blk|2003-02-19|FIX: Tomcat 4.1.x taglib pooling causes problems | |18198|New|Nor|2003-03-20|[PATCH] Cache - Overloading CacheUtil methods | |18499|New|Enh|2003-03-30|[cache] per cache entry lifetime | |18716|Inf|Nor|2003-04-04|XTAGS LIBRARY PROBLEM IN 4.1.18 | |19292|New|Enh|2003-04-24|request tag add the ability to store output in pag| |19754|New|Nor|2003-05-08|TLDParser web.xml and errorstag | |20725|New|Nor|2003-06-12|Incorrect property setter signature for Tag handle| |21928|New|Nor|2003-07-28|Extra space added in the return text of xtags | |22765|New|Nor|2003-08-27|Wrong values from position() and last() functions | |23363|New|Maj|2003-09-23|JNDI Taglib does not close context when using | |27323|New|Enh|2004-02-29|Remove useless tag | |27597|New|Nor|2004-03-11|: set Content-Type header | |27717|New|Maj|2004-03-16| very slow in JSTL 1.1 | |27978|New|Nor|2004-03-26|URLTag nesting into BodyTag does not work more the| |28280|New|Nor|2004-04-08|bug in xtags:parse whith using a attribute reader | |28301|New|Nor|2004-04-08|XTags are not working for Tomcat 4.1.18 | |28814|New|Nor|2004-05-06|mt:header are ignored| |28913|New|Maj|2004-05-11|Content-Type not working properly | |29194|New|Nor|2004-05-25|xml-namespaces not supported | |30050|Ass|Maj|2004-07-12|Explicit dependency to Xalan breaks JSTL xml tags | |30427|New|Nor|2004-08-01|Response contents can be truncated prematurely| |31009|New|Nor|2004-09-02|io:http tag caches JSPWriter | |31859|New|Enh|2004-10-23|Add filename based Content-ID to attachments and u| |31869|New|Enh|2004-10-24|Allow DataHandler attachments in the attach tag | |33032|New|Nor|2005-01-11|string() works incorrectly in conjunction with sco| |33934|New|Cri|2005-03-09|[standard] memory leak in jstl c:set tag | |34137|New|Nor|2005-03-22|getAttribute using iterate reuses bodycontent on 2| |34703|New|Maj|2005-05-02|Invalid synchronization in PageData leads to java.| |34786|New|Nor|2005-05-06|Attachments are not cleared in between re-uses of | |34788|New|Nor|2005-05-06|Cannot set the filename of an attachment independe| |34789|New|Nor|2005-05-06|Cannot send multi-part Plain Text and HTML emails | |35780|New|Nor|2005-07-18|Missing attr
Bug report for Tomcat Connectors [2009/10/04]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |24427|New|Enh|2003-11-05|Tomcat mod_jk - Excludes in Redirection | |34526|Opn|Nor|2005-04-19|Truncated content in decompressed requests from mo| |35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName| |36155|Opn|Nor|2005-08-12|tomcat chooses wrong host if using mod_jk | |36169|New|Enh|2005-08-12|[PATCH] Enable chunked encoding for requests in II| |38895|Inf|Nor|2006-03-08|Http headers with an underscore "_" change into hy| |39967|Inf|Nor|2006-07-05|mod_jk gives segmentation fault when apache is sta| |40208|Inf|Nor|2006-08-08|Request-Dump when ErrorDocument in httpd.conf is a| |41170|Inf|Nor|2006-12-13|single crlf in header termination crashes app.| |41430|New|Reg|2007-01-22|JkOptions +ForwardDirectories with Apache's Direct| |41695|New|Maj|2007-02-24|mod_jk with httpd 2.0.58 on Solaris-10 11/06 dumpi| |41923|Opn|Nor|2007-03-21|Tomcat doesnt recognized client abort | |42366|Inf|Nor|2007-05-09|Memory leak in newer mod_jk version when connectio| |42554|Opn|Nor|2007-05-31|mod_ssl + mod_jk with status_worker does not work | |43303|New|Enh|2007-09-04|Versioning under Windows not reported by many conn| |43821|New|Enh|2007-11-08|provide client AJP IP address | |43968|New|Enh|2007-11-26|[patch] support ipv6 with mod_jk | |44290|New|Nor|2008-01-24|mod_jk/1.2.26: retry is not useful for an importan| |44349|New|Maj|2008-02-04|mod_jk/1.2.26 module does not read worker.status.s| |44379|New|Enh|2008-02-07|convert the output of strftime into UTF-8 | |44454|New|Nor|2008-02-19|busy count reported in mod_jk inflated, causes inc| |44571|New|Enh|2008-03-10|Limits busy per worker to a threshold | |45063|New|Nor|2008-05-22|JK-1.2.26 IIS ISAPI filter issue when running diff| |45182|New|Enh|2008-06-10|Add functionality to automate the jkmanager disabl| |45313|New|Nor|2008-06-30|mod_jk 1.2.26 & apache 2.2.9 static compiled on so| |45357|Opn|Enh|2008-07-07|Add property to specify custom maintenance page wh| |45395|New|Min|2008-07-14|MsgAjp dump method does not dump packet when being| |45610|New|Nor|2008-08-11|status-worker: Bug in request parameter parsing fo| |46337|New|Nor|2008-12-04|real worker name is wrong | |46406|New|Enh|2008-12-16|Supporting relative paths in isapi_redirect.proper| |46503|New|Nor|2009-01-09|Garbage characters in cluster domain field| |46632|New|Nor|2009-01-29|mod_jk's sockets close prematurely when the server| |46676|New|Enh|2009-02-09|Configurable test request for Watchdog thread | |46763|New|Enh|2009-02-24|Improve treatment of jk_log_lock. | |46767|New|Enh|2009-02-25|mod_jk to send DECLINED in case no fail-over tomca| |46862|New|Nor|2009-03-16|Status worker Properties output format (worker.wlb| |46893|New|Nor|2009-03-23|mod_jk statically compiled always outputs warning | |47038|New|Enh|2009-04-15|USE_FLOCK_LK redefined compiler warning when using| |47222|New|Nor|2009-05-19|Changes made to ping_timeout via Status Worker not| |47224|New|Nor|2009-05-19|Hostname and Port Changes from Status Worker do no| |47327|New|Enh|2009-06-07|remote_user not logged in apache logfile | |47617|New|Enh|2009-07-31|include time spent doing ajp_get_endpoint() in err| |47678|New|Nor|2009-08-11|Unable to allocate shared memory when using isapi_| |47679|New|Nor|2009-08-11|Not all headers get passed to Tomcat server from i| |47692|New|Blk|2009-08-12|Can not compile mod_jk with apache2.0.63 and tomca| |47714|New|Cri|2009-08-20|Reponse mixed between users | |47750|New|Maj|2009-08-27|Loss of worker settings when changing via jkstatus| |47795|New|Nor|2009-09-07|service sticky_session not being set correctly wit| |47806|New|Blk|2009-09-08|HTTP 500 internal server error| |47840|New|Min|2009-09-14|A broken worker name is written in the log file. | +-+---+---+--+--+ | Total
Bug report for Tomcat 6 [2009/10/04]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |39661|Opn|Enh|2006-05-25|Please document JULI FileHandler configuration pro| |41128|Inf|Enh|2006-12-07|Reference to java Thread name from RequestProcesso| |41679|New|Enh|2007-02-22|SemaphoreValve should be able to filter on url pat| |41791|New|Enh|2007-03-07|Tomcat behaves inconsistently concerning flush-pac| |41883|Ass|Enh|2007-03-18|use abstract wrapper instead of plain X509Certific| |41944|New|Enh|2007-03-25|Start running the RAT tool to see where we're miss| |41992|New|Enh|2007-03-30|Need ability to set OS process title | |42463|New|Enh|2007-05-20|"crossContext" and classloader issues - pls amend | |43001|New|Enh|2007-07-30|JspC lacks setMappedFile and setDie for use in Ant| |43003|New|Enh|2007-07-30|Separate dependent component download and build ta| |43154|New|Enh|2007-08-17|forward port from 5.5.x to 6.x about AccessLogValv| |43400|New|Enh|2007-09-14|enum support for tag libs | |43497|New|Enh|2007-09-26|Add ability to escape rendered output of JSP expre| |43548|Opn|Enh|2007-10-04|xml schema for tomcat-users.xml | |43642|New|Enh|2007-10-17|Add prestartminSpareThreads attribute for Executor| |43682|New|Enh|2007-10-23|JULI: web-inf/classes/logging.properties to suppor| |43742|New|Enh|2007-10-30|.tag compiles performed one at a time -- extremel| |43790|Ass|Enh|2007-11-03|concurrent access issue on TagHandlerPool | |43979|New|Enh|2007-11-27|Add abstraction for Java and Classfile output | |44047|New|Enh|2007-12-10|Provide a way for Tomcat to serve up error pages w| |44106|New|Enh|2007-12-19|autodeploy configures directories which do not con| |44199|New|Enh|2008-01-10|expose current backlog queue size | |44225|New|Enh|2008-01-14|SSL connector tries to load the private keystore f| |44264|New|Enh|2008-01-18|Clustering - Support for disabling multicasting an| |44265|New|Enh|2008-01-18|Improve JspWriterImpl performance with "inline" su| |44284|New|Enh|2008-01-23|Support java.lang.Iterable in c:forEach tag | |44294|New|Enh|2008-01-25|Support for EL functions with varargs | |44299|New|Enh|2008-01-26|Provider manager app with a log out button| |44312|New|Enh|2008-01-28|Warn when overwritting docBase of the default Host| |44409|New|Enh|2008-02-13|Tomcat does not support Windows-My Provider | |44598|New|Enh|2008-03-13|JAASRealm is suppressing Exceptions | |44645|New|Enh|2008-03-20|[Patch] JNDIRealm - Doesn't support JNDI "java.nam| |44787|New|Enh|2008-04-09|provide more error context on "java.lang.IllegalSt| |44818|New|Enh|2008-04-13|tomcat hangs with GET when content-length is defin| |45014|New|Enh|2008-05-15|Request and Response classes should have wrappers | |45255|New|Enh|2008-06-23|support disable jsessionid from url against sessio| |45282|New|Enh|2008-06-25|NioReceiver doesn't close cleanly, leaving sockets| |45283|Opn|Enh|2008-06-25|Allow multiple authenticators to be added to pipel| |45428|New|Enh|2008-07-18|warn if the tomcat stop doesn't complete | |45654|New|Enh|2008-08-19|use static methods and attributes in a direct way!| |45731|New|Enh|2008-09-02|Enhancement request : pluggable httpsession cache | |45794|New|Enh|2008-09-12|Patch causes JNDIRealm to bind with user entered c| |45832|New|Enh|2008-09-18|add DIGEST authentication support to Ant tasks| |45871|New|Enh|2008-09-23|Support for salted and digested patches in DataSou| |45878|New|Enh|2008-09-24|Generated jars do not contain proper manifests or | |45879|Opn|Enh|2008-09-24|Windows installer fails to install NOTICE and RELE| |45931|Opn|Enh|2008-10-01|trimSpaces incorrectly modifies output| |45995|New|Enh|2008-10-13|RFE - MIME type extension not case sensitive | |46173|New|Enh|2008-11-09|Small patch for manager app: Setting an optional c| |46263|New|Enh|2008-11-21|Tomcat reloading of context does not update contex| |46264|New|Enh|2008-11-21|Shutting down tomcat with large number of contexts| |46284|
Bug report for Tomcat 7 [2009/10/04]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |47823|New|Enh|2009-09-11|Inconsistent naming of boolean getters in Standard| |47918|New|Nor|2009-09-30|Wrong description in o.a.c.startup.mbeans-desripto| |47939|New|Reg|2009-10-04|Jars added by VirtualWebappLoader are not scanned | +-+---+---+--+--+ | Total3 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 5 [2009/10/04]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |27122|Opn|Enh|2004-02-20|IE plugins cannot access components through Tomcat| |28039|Opn|Enh|2004-03-30|Cluster Support for SingleSignOn | |29494|Inf|Enh|2004-06-10|No way to set PATH when running as a service on Wi| |33262|Inf|Enh|2005-01-27|Service Manager autostart should check for adminis| |33453|Opn|Enh|2005-02-08|Jasper should recompile JSP files whose datestamps| |33671|Opn|Enh|2005-02-21|Manual Windows service installation with custom na| |34801|New|Enh|2005-05-08|PATCH: CGIServlet does not terminate child after a| |34805|Ass|Enh|2005-05-08|warn about invalid security constraint url pattern| |34868|Ass|Enh|2005-05-11|allow to register a trust store for a session that| |35054|Inf|Enh|2005-05-25|warn if appBase is not existing as a File or direc| |36133|Inf|Enh|2005-08-10|Support JSS SSL implementation| |36362|New|Enh|2005-08-25|missing check for Java reserved keywords in tag fi| |36569|Inf|Enh|2005-09-09|Redirects produce illegal URL's | |36837|Inf|Enh|2005-09-28|Looking for ProxyHandler implementation of Http re| |36922|Inf|Enh|2005-10-04|setup.sh file mis-advertised and missing | |37018|Ass|Enh|2005-10-11|Document how to use tomcat-SSL with a pkcs11 token| |37334|Inf|Enh|2005-11-02|Realm digest property not aligned with the adminis| |37449|Opn|Enh|2005-11-10|Two UserDatabaseRealm break manager user | |37485|Inf|Enh|2005-11-14|I'd like to run init SQL after JDBC Connection cre| |37847|Ass|Enh|2005-12-09|Allow User To Optionally Specify Catalina Output F| |37848|Opn|Trv|2005-12-09|Inappropriate Output From catalina.sh When No Term| |38216|Inf|Enh|2006-01-10|Extend Jmxproxy to allow call of MBean Operations | |38217|Ver|Enh|2006-01-10|mention that private key password and keystore pas| |38268|Inf|Enh|2006-01-13|User friendly: Need submit button on adding/deleti| |38360|Inf|Enh|2006-01-24|Domain for session cookies| |38546|Inf|Enh|2006-02-07|Google bot sends invalid If-Modifed-Since Header, | |38577|Inf|Enh|2006-02-08|Enhance logging of security failures | |38743|New|Min|2006-02-21|when using APR, JKS options are silently ignored | |38797|Opn|Nor|2006-02-27|5.5.12 and 5.5.15 emit different code on | |41007|Opn|Enh|2006-11-20|Can't define customized 503 error page| |41179|New|Enh|2006-12-15|400 Bad Request response during auto re-deployment| |41227|Opn|Enh|2006-12-21|When the jasper compiler fails to compile a JSP, i| |41337|Opn|Enh|2007-01-10|Display an error page if no cert is available on C| |41496|New|Enh|2007-01-30|set a security provider for jsse in a connector co| |41498|New|Enh|2007-01-30|allRolesMode Realm configuration option not docume| |41539|Inf|Enh|2007-02-05|NullPointerException during Embedded tomcat restar| |41673|New|Enh|2007-02-21|Jasper output the message of compiling error using| |41697|Ver|Enh|2007-02-25|make visible in debug output if charset from brows| |41709|Inf|Enh|2007-02-26|When calling the API that relates to the buffer af| |41718|New|Enh|2007-02-27|Status 302 response to GET request has no body whe| |42390|New|Maj|2007-05-11|JSP compilation error with nested tagfile tags wit| |42416|New|Enh|2007-05-14|Tomcat startup hangs and AJP13 connector port 8009| |43423|New|Enh|2007-09-18|catalina.sh -force too fast | |43538|New|Enh|2007-10-02|[patch] Show the hostname and IP address in the ma| |43796|Inf|Enh|2007-11-05|Add MIME type mapping for the "log" extension | |43866|New|Enh|2007-11-14|add support for session attribute propagation with| |43925|Opn|Enh|2007-11-21|org.apache.jasper.runtime.BodyContentImpl causing | |43960|New|Enh|2007-11-26|Expose StandardWrapper unavailable and/or availabl| |43991|New|Enh|2007-11-29|Contributing a URLResourceFactory | |44041|Opn|Cri|2007-12-07|WebappClassLoader duplicate class definition under| |44216|New|Enh|2008-01-11|Don't reuse session ID even if emptySessionPath=tr| |44309|New|Enh|
Bug report for Tomcat Native [2009/10/04]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |38372|Inf|Cri|2006-01-25|tcnative-1.dll response overflow corruption, parti| |41361|New|Nor|2007-01-14|Content lost when read by a slow client. | |42090|New|Cri|2007-04-11|tcnative badly handles some OpenSSL disconnections| |45392|New|Nor|2008-07-14|No OCSP support for client SSL verification | |46041|New|Cri|2008-10-20|Tomcat service is terminated unexpectedly (tcnativ| |46179|New|Maj|2008-11-10|apr ssl client authentication | |46571|New|Nor|2009-01-21|tcnative blocks in APR poll on Solaris| |47319|New|Nor|2009-06-05|With APR, getRemoteHost() returns NULL for unknown| |47851|New|Nor|2009-09-16|thread-safety issues in the TC native Java code | +-+---+---+--+--+ | Total9 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org