Author: kkolinko
Date: Mon Nov 16 17:16:45 2009
New Revision: 880856
URL: http://svn.apache.org/viewvc?rev=880856&view=rev
Log:
veto
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=880856&r1=880855&r2=880856&view=diff
==============================================================================
--- tomcat/tc5.5.x/trunk/STATUS.txt (original)
+++ tomcat/tc5.5.x/trunk/STATUS.txt Mon Nov 16 17:16:45 2009
@@ -234,10 +234,29 @@
* Single quote should be not be treated as a separator
http://svn.apache.org/viewvc?rev=830999&view=rev
- +1: markt
+ +1: markt, kkolinko
-1:
* Provide an option to allow = in cookie values
http://people.apache.org/~markt/patches/2009-11-15-cookie-allow-equals.patch
+1: markt
- -1:
+ -1: kkolinko: (
+ It does not work.
+ In Cookies.java#processCookieHeader(byte bytes[], int off, int len) line
367:
+ pos = nameEnd = getTokenEndPosition(bytes,pos,end);
+ will parse "a=b=c" cookie as having a name of "a=b=c".
+
+ Go to http://localhost:8080/servlets-examples/servlet/CookieExample
+ Create a cookie with name "foo" and value "bar"
+ Refresh the page. It says:
+Cookie Name: foo=bar
+Cookie Value:
+
+ Also
+ - ALLOW_EQUALS_IN_VALUE declaration in Cookies.java is better to be
+ moved upper. I do not like that it is in between "SEPARATORS" and
+ "separators".
+
+ - A typo in systemprops.xml patch: "default value": "value" is
+ mentioned twice.
+ )
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]