cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2004-02-19 Thread larryi
larryi 2004/02/19 15:15:11 Modified:src/share/org/apache/tomcat/core Request.java Log: Apply encoding to query string as well to retain prior behavior. This will likely need to change slightly if we want to support configurability of this behavior. Revision ChangesPath

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2003-01-10 Thread billbarker
billbarker2003/01/10 19:00:07 Modified:src/share/org/apache/tomcat/core Request.java Log: Make certain that the session still belong to us before returning it. If the Servlet invalidates the session, and then later requests a new one, it is possible for the one we have to be

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2002-04-20 Thread billbarker
billbarker02/04/20 22:56:11 Modified:src/share/org/apache/tomcat/core Request.java Log: Make get/setAttribute final here. The API is such that you should expect problems with overriding these. Now it will fail at compile time if you try. Revision ChangesPath

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2002-02-25 Thread billbarker
billbarker02/02/25 19:26:55 Modified:src/share/org/apache/tomcat/core Request.java Log: Fix NPE when using AccessLog without having a ROOT context defined. Now we won't attempt to authenticate if we haven't (successfully) done a ContextMap (in line with the servlet spec).

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-08-31 Thread costin
costin 01/08/31 17:57:17 Modified:src/share/org/apache/tomcat/core Request.java Log: Cosmetic - use the factory instead of new for MessageBytes. Revision ChangesPath 1.111 +12 -12jakarta-tomcat/src/share/org/apache/tomcat/core/Request.java Index:

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-08-08 Thread keith
keith 01/08/08 10:19:16 Modified:src/share/org/apache/tomcat/core Request.java Log: Maintain compatibility with TC 3.2 modules. Revision ChangesPath 1.107 +21 -1 jakarta-tomcat/src/share/org/apache/tomcat/core/Request.java Index: Request.java

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java Response.java

2001-08-06 Thread costin
costin 01/08/06 08:45:26 Modified:src/share/org/apache/tomcat/core Request.java Response.java Log: Few fixes in Request, Response: make sure all fields are protected ( some were package ), so it can be extended. Added deprecated on some of the really old methods, and make sure

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-07-13 Thread larryi
larryi 01/07/13 21:26:43 Modified:src/share/org/apache/tomcat/core Request.java Log: Update isUserInRole() to expect DECLINED as the indication that interceptors should continue to be called. Revision ChangesPath 1.104 +1 -1

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-06-24 Thread costin
costin 01/06/24 15:40:35 Modified:src/share/org/apache/tomcat/core Request.java Log: Change from package level to protected few fields, other small fixes to allow it to be better wrapped. Revision ChangesPath 1.103 +4 -4

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-06-19 Thread costin
costin 01/06/19 22:29:28 Modified:src/share/org/apache/tomcat/core Request.java Log: Propagate the encoding ( set it on queryString before processing ). Make sure we set 8859_1, as requested by servlet api, to make sure MessageBytes behave as expected. ( few recent

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-05-26 Thread costin
costin 01/05/26 10:51:15 Modified:src/share/org/apache/tomcat/core Request.java Log: Code for the changes in buf. Use standard name for the default encoding. Added unparsedURIMB - to store the original request URI, to be returned by getRequestURI(). Internally we

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-03-08 Thread costin
costin 01/03/08 06:31:35 Modified:src/share/org/apache/tomcat/core Request.java Log: Ops, wrong directory... Fix the last night's commit - sorry about it. ( the CVS should be closed during night time :-) Revision ChangesPath 1.97 +9 -3

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-02-26 Thread costin
costin 01/02/26 18:47:39 Modified:src/share/org/apache/tomcat/core Request.java Log: 2 more fields converted to MessageBytes ( Ajp13 is setting them on every request - they were implemented as callbacks in standalone so the change was not absolutely needed - and it got

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-02-08 Thread costin
costin 01/02/08 23:47:49 Modified:src/share/org/apache/tomcat/core Request.java Log: Wrong test for POST. Revision ChangesPath 1.90 +2 -2 jakarta-tomcat/src/share/org/apache/tomcat/core/Request.java Index: Request.java

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-02-05 Thread costin
costin 01/02/05 22:29:19 Modified:src/share/org/apache/tomcat/core Request.java Log: Corresponding changes in Request - the parameter representation and handling is now encapsulated in Parameters. The Request and RequestDispatcher will create and manipulate Parameters,

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2001-01-14 Thread larryi
larryi 01/01/14 12:23:08 Modified:src/share/org/apache/tomcat/core Request.java Log: Bug Report #757 User Principal incorrectly Maintained Submitted by: David Winterfeldt ([EMAIL PROTECTED]) Revision ChangesPath 1.87 +1 -0

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2000-12-26 Thread costin
costin 00/12/26 14:56:38 Modified:src/share/org/apache/tomcat/core Request.java Log: - removed ACC and Counters - the code is not used and specific to accounting modules - a note can be used instead. We also want to implement that in module so we can extend it later. - 2

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2000-11-02 Thread costin
costin 00/11/02 13:39:13 Modified:src/share/org/apache/tomcat/core Request.java Log: - Added request "state" - Replaced String with MessageBytes for request components ( uri, method, protocol, etc). ( needed for no-ascii charset support, performance ) - replace