[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZopePublication/HTTP - Publication.py:1.1.2.4
Stephan Richter
srichter@cbu.edu
Wed, 27 Mar 2002 17:31:57 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/ZopePublication/HTTP
In directory cvs.zope.org:/tmp/cvs-serv1969/HTTP
Modified Files:
Tag: Zope-3x-branch
Publication.py
Log Message:
This is more of this bug fixing business. I basically started all over again. Atleast so far the tests pass.
=== Zope3/lib/python/Zope/App/ZopePublication/HTTP/Publication.py 1.1.2.3 => 1.1.2.4 ===
class ZopeHTTPPublication(ZopePublication):
"HTTP-specific support"
-
- def afterTraversal(self, request, ob):
- request_get = request.get
- T=get_transaction()
- T.note(request_get('PATH_INFO'))
- auth_user=request_get('AUTHENTICATED_USER',None)
- if auth_user is not None:
- T.setUser(auth_user, request_get('AUTHENTICATION_PATH'))
+ # XXX do we need this?