Update of /cvsroot/webware/Webware/WebKit
In directory sc8-pr-cvs1:/tmp/cvs-serv25580
Modified Files:
HTTPRequest.py
Log Message:
added a @@ comment to a docstring I think is incorrect
Index: HTTPRequest.py
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/HTTPRequest.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** HTTPRequest.py 19 Mar 2003 11:39:43 -0000 1.45
--- HTTPRequest.py 23 Mar 2003 01:08:27 -0000 1.46
***************
*** 549,553 ****
def uri(self):
! """ Returns the request URI, which is the entire URL except for the query string. """
return self._environ['REQUEST_URI']
--- 549,558 ----
def uri(self):
! """ Returns the request URI, which is the entire URL except for
! the query string.
!
! @@TR 2003-03-22: I think this docstring is wrong, as REQUEST_URI
! does contain the query string with Apache.
! """
return self._environ['REQUEST_URI']
|