svn commit: r1194915 - in /tomcat/trunk: java/org/apache/tomcat/util/buf/B2CConverter.java java/org/apache/tomcat/util/buf/ByteChunk.java java/org/apache/tomcat/util/http/Parameters.java test/org/apac

2011-10-29 Thread markt
Author: markt Date: Sat Oct 29 16:11:02 2011 New Revision: 1194915 URL: http://svn.apache.org/viewvc?rev=1194915&view=rev Log: Review comments from kkolinko for parameter parsing improvements Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java tomcat/trunk/java/org/ap

svn commit: r1194917 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/tomcat/util/buf/B2CConverter.java java/org/apache/tomcat/util/buf/ByteChunk.java java/org/apache/tomcat/util/http/Parameters.java te

2011-10-29 Thread markt
Author: markt Date: Sat Oct 29 16:16:18 2011 New Revision: 1194917 URL: http://svn.apache.org/viewvc?rev=1194917&view=rev Log: Review comments from kkolinko for parameter parsing improvements Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/java/org/apache/tomcat/uti

svn commit: r1194919 - /tomcat/tc6.0.x/trunk/STATUS.txt

2011-10-29 Thread markt
Author: markt Date: Sat Oct 29 16:16:53 2011 New Revision: 1194919 URL: http://svn.apache.org/viewvc?rev=1194919&view=rev Log: Update 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.tx

Re: svn commit: r1190720 - /tomcat/tc5.5.x/trunk/STATUS.txt

2011-10-29 Thread Mark Thomas
On 29/10/2011 01:55, kkoli...@apache.org wrote: > Author: kkolinko > Date: Sat Oct 29 00:55:28 2011 > New Revision: 1190720 > > URL: http://svn.apache.org/viewvc?rev=1190720&view=rev > Log: > Add one more patch to Mark's proposal. > Veto and add review comments. Thanks for the comments. Fixes app

svn commit: r1194920 - /tomcat/tc5.5.x/trunk/STATUS.txt

2011-10-29 Thread markt
Author: markt Date: Sat Oct 29 16:18:01 2011 New Revision: 1194920 URL: http://svn.apache.org/viewvc?rev=1194920&view=rev Log: Update proposal 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.tx

Add daemon.sh to bin/ for both trunk and 7.0.x

2011-10-29 Thread Mladen Truk
Hi, As part of Commons daemon that we ship with tomcat there is example daemon launch script which users have started to use for running tomcat under jsvc. I propose we move that script from daemon to tomcat since it belongs here. The script can be found inside each tomcat distribution as bin/com

Re: svn commit: r1190720 - /tomcat/tc5.5.x/trunk/STATUS.txt

2011-10-29 Thread Konstantin Kolinko
2011/10/29 Mark Thomas : >> +      - Maybe "if (paramHashValues.containsKey(key))" can be replaced >> +        with testing whether result of (paramHashValues.containsKey(key)) >> is null. > Hashtable does not permit null keys or values. >> + - Maybe "if (paramHashValues.containsKey(key))" c

Re: svn commit: r1190720 - /tomcat/tc5.5.x/trunk/STATUS.txt

2011-10-29 Thread Mark Thomas
On 29/10/2011 19:08, Konstantin Kolinko wrote: > I mean that there are two hashtable lookup operations in a row: > > a) containsKey(key) > b) get(key) if a) returned true > > It can be replaced by calling b) once and testing whether its result is null. Doh. Got it this time. I'll look at that to