Re: [Eclipse+Tomcat6]How to publish modification in a text file ?
b...@umd wrote: > I am developing a webapp with Eclipse 3.4.2 which runs on a Tomcat v6 server. > > When I click on a button of my webapp during runtime, it modifies or > createsa shell script present in my webapp folder. Then, I retrieve this > script (which contains installation instructions) at the startup of a > Virtual Machine. My problem is that this script is not updated/created on my > server whereas it is in my filesystem. (But if I manually refresh webapp on > Eclipse, this script is correctly updated/created.) > > I first thought it was a problem of caching in Tomcat, so I edited the > context.xml file to disable caching like this : > > Then I try to set the development init-param to true in my web.xml like this > > development > true > > > However, it changes nothing. Does anyone have an idea of how i can > automatically "refresh" my webapp folder and synchronize it with my > filesystem ? > This is the Tomcat Developers mailing list. Try asking this question on the Tomcat Users mailing list, you're more likely to get an answer there. p - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Configuring while moving app from iPlanet 4.1 to Tomcat 6
raghu ram srinivas wrote: > I am not sure how can i configure my web.xml in tomcat. can any one help me > regarding this issue? > > Actually i got 3 main config files in iplanet ie.,1. ob.conf, > 2.mime.conf,and 3. magns.conf. After moving my web application from iplanet > to tomcat I am not sure how can I configure it in the Tomcat . > > > Thanks in Advance. > This is the Tomcat Developers mailing list. Try asking this question on the Tomcat Users mailing list, you're more likely to get an answer there. (Unless you don't bother to state the versions and OS you're working with). p - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47224] Hostname and Port Changes from Status Worker do not affect new connections either
https://issues.apache.org/bugzilla/show_bug.cgi?id=47224 --- Comment #2 from Rainer Jung 2009-05-20 04:07:47 PST --- I will investigate. -- 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
DO NOT REPLY [Bug 47222] Changes made to ping_timeout via Status Worker not synced across Apache Children
https://issues.apache.org/bugzilla/show_bug.cgi?id=47222 --- Comment #2 from Rainer Jung 2009-05-20 04:08:02 PST --- I will investigate. -- 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
DO NOT REPLY [Bug 47226] New: Classloader chain broken
https://issues.apache.org/bugzilla/show_bug.cgi?id=47226 Summary: Classloader chain broken Product: Tomcat 6 Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: egar...@stream18.com Created an attachment (id=23698) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=23698) classloader chain broken When we have a library deployed in higher level classloader (System class loader, for instance) that references a class that is loaded by a lower level classloader (web application classloader), catalina fails to load the "lower level class" with an error "java.lang.NoClassDefFoundError" This behaviour is not consistent whith the explanations found on the documentation. This problem can be reproduced using the attached test application (deploy the "external" jar under the catalina lib directory, and deploy the web application. When you access the application the error will arise). -- 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
DO NOT REPLY [Bug 47226] Classloader chain broken
https://issues.apache.org/bugzilla/show_bug.cgi?id=47226 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #1 from Mark Thomas 2009-05-20 06:24:59 PST --- You can't have a library loaded by the common class loader requiring a class that is not visible to the common class loader. Ask on the users list if you need more explanation. -- 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
DO NOT REPLY [Bug 47227] New: Executor "namePrefix" property not working well
https://issues.apache.org/bugzilla/show_bug.cgi?id=47227 Summary: Executor "namePrefix" property not working well Product: Tomcat 6 Version: 6.0.18 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Connectors AssignedTo: dev@tomcat.apache.org ReportedBy: thierry.leve...@vantrix.com When setting a "namePrefix" to an Executor in server.xml, new threads in the pool do not always use the given name prefix. For my tests I used this descriptor: The executor is assigned to my http connector: When I start my server and look with jconsole (or jstack), I can see that the first thread is really using my defined prefix. But most of the subsequent threads use the name "Null_Thread_Name". I said "most" because sometime I see my prefix used again correctly but only when using a large amount of threads (i.e. max 200 min 100). I am using jdk 1.6.012. -- 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: [VOTE] Release build 6.0.20
Remy Maucherat wrote: The candidates binaries are available here: http://people.apache.org/~remm/tomcat-6/v6.0.20/ According to the release process, the 6.0.20 tag is: [ ] Broken [ ] Alpha [ ] Beta [X] Stable Looks OK :-) Cheers Jean-Frederic Rémy - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47226] Classloader chain broken
https://issues.apache.org/bugzilla/show_bug.cgi?id=47226 Danonneus changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INVALID | --- Comment #2 from Danonneus 2009-05-20 07:26:53 PST --- And if you introduce this library in a new classpath (no in the common)?. The behaviour is the same, but in this case is not the common class loader. -- 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
DO NOT REPLY [Bug 47226] Classloader chain broken
https://issues.apache.org/bugzilla/show_bug.cgi?id=47226 Mark Thomas changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution||INVALID --- Comment #3 from Mark Thomas 2009-05-20 07:49:05 PST --- Again, ask on the users list if you need a further explanation. -- 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: [VOTE] Release build 6.0.20
extras/catalina-ws.jar does not have a NOTICE or a LICENSE file. All jars should ideally have N&L files, but they must be present if the jar is published separately, as appears to be the case here. The EXE fails to install the following file: RELEASE-NOTES It also fails to install RUNNING.txt and most of the contents of the bin directory (compared with the zip archive) but those are perhaps not as essential. As noted already, the properties files are corrupt in the tgz version of the source. -1 because of the above problems. On 14/05/2009, Remy Maucherat wrote: > The candidates binaries are available here: > http://people.apache.org/~remm/tomcat-6/v6.0.20/ > > According to the release process, the 6.0.20 tag is: > [ ] Broken > [ ] Alpha > [ ] Beta > [ ] Stable > > Rémy > > > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > > - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release build 6.0.20
[X] Stable Remy Maucherat wrote: The candidates binaries are available here: http://people.apache.org/~remm/tomcat-6/v6.0.20/ According to the release process, the 6.0.20 tag is: [ ] Broken [ ] Alpha [ ] Beta [X] Stable Rémy - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47228] New: Incorrect French translations
https://issues.apache.org/bugzilla/show_bug.cgi?id=47228 Summary: Incorrect French translations Product: Tomcat 6 Version: unspecified Platform: PC OS/Version: Windows XP Status: NEW Severity: normal Priority: P2 Component: Jasper AssignedTo: dev@tomcat.apache.org ReportedBy: s...@apache.org The files jasper/resources/LocalStrings_fr.properties naming/resources/LocalStrings_fr.properties have the words "doit commencé" These should be "doit commencer" -- 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: [VOTE] Release build 6.0.20
On 14.05.2009 01:33, Remy Maucherat wrote: > The candidates binaries are available here: > http://people.apache.org/~remm/tomcat-6/v6.0.20/ > > According to the release process, the 6.0.20 tag is: > [ ] Broken > [ ] Alpha > [ ] Beta > [ ] Stable Please stay tuned, I can test and vote tomorrow. Thanks for RMing. Rainer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release build 6.0.20
[X] Broken On May 20, 2009, at 11:50 AM, sebb wrote: extras/catalina-ws.jar does not have a NOTICE or a LICENSE file. All jars should ideally have N&L files, but they must be present if the jar is published separately, as appears to be the case here. The EXE fails to install the following file: RELEASE-NOTES It also fails to install RUNNING.txt and most of the contents of the bin directory (compared with the zip archive) but those are perhaps not as essential. As noted already, the properties files are corrupt in the tgz version of the source. -1 because of the above problems. On 14/05/2009, Remy Maucherat wrote: The candidates binaries are available here: http://people.apache.org/~remm/tomcat-6/v6.0.20/ According to the release process, the 6.0.20 tag is: [ ] Broken [ ] Alpha [ ] Beta [ ] Stable Rémy - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 45255] support disable jsessionid from url against session fixation attacks
https://issues.apache.org/bugzilla/show_bug.cgi?id=45255 webdev changed: What|Removed |Added CC||web...@blizzard.com -- 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: r776921 - in /tomcat/trunk: build.xml dist.xml
Author: kkolinko Date: Thu May 21 02:07:25 2009 New Revision: 776921 URL: http://svn.apache.org/viewvc?rev=776921&view=rev Log: Build files: Apply explicit encoding to all operations that perform filtering. Those are: 1) , when filtering is used (has filtering="true" or has a nested ), 2) Modified: tomcat/trunk/build.xml tomcat/trunk/dist.xml Modified: tomcat/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=776921&r1=776920&r2=776921&view=diff == --- tomcat/trunk/build.xml (original) +++ tomcat/trunk/build.xml Thu May 21 02:07:25 2009 @@ -298,7 +298,8 @@ + filtering="true" + encoding="ISO-8859-1" /> @@ -318,7 +319,8 @@ + filtering="true" + encoding="ISO-8859-1" /> @@ -338,7 +340,8 @@ + overwrite="yes" + encoding="ISO-8859-1"> - + - + @@ -496,7 +499,7 @@ - + @@ -507,7 +510,7 @@ - + @@ -526,7 +529,7 @@ - + Modified: tomcat/trunk/dist.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/dist.xml?rev=776921&r1=776920&r2=776921&view=diff == --- tomcat/trunk/dist.xml (original) +++ tomcat/trunk/dist.xml Thu May 21 02:07:25 2009 @@ -223,7 +223,7 @@ - + @@ -257,8 +257,8 @@ - - + + @@ -371,7 +371,7 @@ - + @@ -401,15 +401,18 @@ + todir="${tomcat.release}/v${version}" + encoding="ISO-8859-1"> +tofile="${tomcat.release}/v${version}/README.html" +encoding="ISO-8859-1"> +tofile="${tomcat.release}/v${version}/bin/README.html" +encoding="ISO-8859-1"> @@ -466,8 +469,8 @@ - - + + @@ -526,8 +529,8 @@ - + includes="*.txt,LICENSE,NOTICE" eol="lf" encoding="ISO-8859-1" /> + @@ -552,7 +555,7 @@ - + @@ -589,7 +592,7 @@ + eol="lf" encoding="ISO-8859-1" /> - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776924 - /tomcat/trunk/build.properties.default
Author: kkolinko Date: Thu May 21 02:26:21 2009 New Revision: 776924 URL: http://svn.apache.org/viewvc?rev=776924&view=rev Log: Update to NSIS 2.44 Modified: tomcat/trunk/build.properties.default Modified: tomcat/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/trunk/build.properties.default?rev=776924&r1=776923&r2=776924&view=diff == --- tomcat/trunk/build.properties.default (original) +++ tomcat/trunk/build.properties.default Thu May 21 02:26:21 2009 @@ -85,12 +85,12 @@ commons-collections-src.loc=${base-commons.loc}/collections/source/commons-collections-3.2-src.tar.gz # - NSIS, version 2.0 or later - -nsis.home=${base.path}/nsis-2.37 +nsis.home=${base.path}/nsis-2.44 nsis.exe=${nsis.home}/makensis.exe nsis.installoptions.dll=${nsis.home}/Plugins/InstallOptions.dll nsis.nsexec.dll=${nsis.home}/Plugins/nsExec.dll nsis.nsisdl.dll=${nsis.home}/Plugins/NSISdl.dll -nsis.loc=${base-sf.loc}/nsis/nsis-2.37.zip +nsis.loc=${base-sf.loc}/nsis/nsis-2.44.zip # - Commons Daemon, version 1.0-Alpha or later - commons-daemon.home=${base.path}/commons-daemon-1.0.1 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776933 - /tomcat/tc6.0.x/trunk/STATUS.txt
Author: kkolinko Date: Thu May 21 02:30:22 2009 New Revision: 776933 URL: http://svn.apache.org/viewvc?rev=776933&view=rev Log: proposals 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=776933&r1=776932&r2=776933&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Thu May 21 02:30:22 2009 @@ -204,3 +204,13 @@ -0: kkolinko: http://marc.info/?l=tomcat-dev&m=124192105131636&w=2 -1: +* Build files: Apply explicit encoding to all operations that perform filtering. + http://svn.apache.org/viewvc?rev=776921&view=rev + +1: kkolinko + -1: + +* Update to NSIS 2.44 + http://svn.apache.org/viewvc?rev=776924&view=rev + +1: kkolinko + -1: + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776935 - in /tomcat/trunk: build.xml dist.xml extras.xml
Author: kkolinko Date: Thu May 21 02:56:06 2009 New Revision: 776935 URL: http://svn.apache.org/viewvc?rev=776935&view=rev Log: Build files: Calculate current year automatically by using . Modified: tomcat/trunk/build.xml tomcat/trunk/dist.xml tomcat/trunk/extras.xml Modified: tomcat/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=776935&r1=776934&r2=776935&view=diff == --- tomcat/trunk/build.xml (original) +++ tomcat/trunk/build.xml Thu May 21 02:56:06 2009 @@ -30,7 +30,9 @@ - + + + Modified: tomcat/trunk/dist.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/dist.xml?rev=776935&r1=776934&r2=776935&view=diff == --- tomcat/trunk/dist.xml (original) +++ tomcat/trunk/dist.xml Thu May 21 02:56:06 2009 @@ -30,7 +30,9 @@ - + + + Modified: tomcat/trunk/extras.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/extras.xml?rev=776935&r1=776934&r2=776935&view=diff == --- tomcat/trunk/extras.xml (original) +++ tomcat/trunk/extras.xml Thu May 21 02:56:06 2009 @@ -30,7 +30,9 @@ - + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776940 - /tomcat/tc6.0.x/trunk/STATUS.txt
Author: kkolinko Date: Thu May 21 03:21:58 2009 New Revision: 776940 URL: http://svn.apache.org/viewvc?rev=776940&view=rev Log: proposals 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=776940&r1=776939&r2=776940&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Thu May 21 03:21:58 2009 @@ -214,3 +214,29 @@ +1: kkolinko -1: +* Build files: Calculate current year automatically by using . + http://svn.apache.org/viewvc?rev=776935&view=rev + +1: kkolinko + -1: + +* In dist-javadoc target of dist.xml: + 1) use © on the web page, instead of a symbol + 2) use value of ${year} + Patch: +Index: dist.xml +=== +--- dist.xml (revision 776003) dist.xml (working copy) +@@ -260,7 +260,7 @@ + author="true" version="true" + windowtitle="Tomcat API Documentation" + doctitle="Tomcat API" +- bottom="Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved." ++ bottom="Copyright © 2000-${year} Apache Software Foundation. All Rights Reserved." + additionalparam="-breakiterator" + maxmemory="256m" > + + + +1: kkolinko + -1: + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776944 - /tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/JspUtil.java
Author: kkolinko Date: Thu May 21 03:31:35 2009 New Revision: 776944 URL: http://svn.apache.org/viewvc?rev=776944&view=rev Log: Trivial change: fixed Javadoc syntax error. Modified: tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/JspUtil.java Modified: tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/JspUtil.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/JspUtil.java?rev=776944&r1=776943&r2=776944&view=diff == --- tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/JspUtil.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/JspUtil.java Thu May 21 03:31:35 2009 @@ -863,7 +863,7 @@ * the given tag file path * * @deprecated Use {...@link #getTagHandlerClassName(String, String, - * ErrorDispatcher) + * ErrorDispatcher)} * See https://issues.apache.org/bugzilla/show_bug.cgi?id=46471 */ public static String getTagHandlerClassName(String path, - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776945 - /tomcat/trunk/res/confinstall/server_2.xml
Author: kkolinko Date: Thu May 21 04:03:05 2009 New Revision: 776945 URL: http://svn.apache.org/viewvc?rev=776945&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=44943 Reduce copy/paste issues caused by different engine names. Applying the same fix to exe installations of Tomcat. Modified: tomcat/trunk/res/confinstall/server_2.xml Modified: tomcat/trunk/res/confinstall/server_2.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/res/confinstall/server_2.xml?rev=776945&r1=776944&r2=776945&view=diff == --- tomcat/trunk/res/confinstall/server_2.xml (original) +++ tomcat/trunk/res/confinstall/server_2.xml Thu May 21 04:03:05 2009 @@ -29,7 +29,7 @@ Documentation at /docs/config/engine.html --> - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776946 - /tomcat/tc6.0.x/trunk/STATUS.txt
Author: kkolinko Date: Thu May 21 04:11:39 2009 New Revision: 776946 URL: http://svn.apache.org/viewvc?rev=776946&view=rev Log: proposal 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=776946&r1=776945&r2=776946&view=diff == --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Thu May 21 04:11:39 2009 @@ -240,3 +240,10 @@ +1: kkolinko -1: +* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=44943 + For zip/tgz distributives it was already fixed in 6.0.17, 5.5.27. + Now, apply the same fix to exe distributive. + http://svn.apache.org/viewvc?rev=776945&view=rev + +1: kkolinko + -1: + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r776947 - /tomcat/current/tc5.5.x/STATUS.txt
Author: kkolinko Date: Thu May 21 04:33:21 2009 New Revision: 776947 URL: http://svn.apache.org/viewvc?rev=776947&view=rev Log: proposal and votes Modified: tomcat/current/tc5.5.x/STATUS.txt Modified: tomcat/current/tc5.5.x/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=776947&r1=776946&r2=776947&view=diff == --- tomcat/current/tc5.5.x/STATUS.txt (original) +++ tomcat/current/tc5.5.x/STATUS.txt Thu May 21 04:33:21 2009 @@ -229,7 +229,7 @@ ArrayIndexOutOfBoundsException when using org.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true Patch provided by Konstantin Kolinko - +1: markt, rjung + +1: markt, rjung, kkolinko -1: * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=42707 @@ -242,7 +242,7 @@ Handle both relative and absolute search results Patch provided by Brandon DuRette http://svn.apache.org/viewvc?rev=763706&view=rev - +1: markt, rjung + +1: markt, rjung, kkolinko -1: * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=42390 @@ -251,17 +251,17 @@ Patch provided by Konstantin Kolinko http://svn.apache.org/viewvc?rev=763717&view=rev +1: markt - -1: + -1: kkolinko: http://svn.apache.org/viewvc?rev=776523&view=rev * Update native to 1.1.16 http://svn.apache.org/viewvc?view=rev&revision=762868 - +1: markt, rjung + +1: markt, rjung, kkolinko -1: * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47032 http://svn.apache.org/viewvc?rev=751295&view=rev Align mbean with implementation - +1: markt, rjung + +1: markt, rjung, kkolinko -1: * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46384 @@ -272,3 +272,10 @@ -1: +0: rjung rjung: memebrshipMutex -> membershipMutex + +* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=44943 + For zip/tgz distributives it was already fixed in 6.0.17, 5.5.27. + Now, apply the same fix to exe distributive. + http://svn.apache.org/viewvc?rev=776945&view=rev + +1: kkolinko + -1: - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org