Changeset 244 for oss/httpauthfilter/httpauthfilter.py
- Timestamp:
- 01/26/07 08:42:35 (2 years ago)
- Files:
-
- oss/httpauthfilter/httpauthfilter.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
oss/httpauthfilter/httpauthfilter.py
r172 r244 3 3 __authors__ = ["Sylvain Hellegouarch (sh@defuze.org)"] 4 4 __contributors__ = ['Tiago Cogumbreiro <cogumbreiro@users.sf.net>', 'Peter Russell'] 5 __date__ = "200 6/12/16"5 __date__ = "2007/01/26" 6 6 __copyright__ = """ 7 Copyright (c) 2005, Sylvain Hellegouarch 8 Copyright (c) 2005, Tiago Cogumbreiro <cogumbreiro@users.sf.net> 7 Copyright (c) 2005, 2006, 2007, Sylvain Hellegouarch 9 8 """ 10 9 … … 37 36 38 37 """ 38 26/01/2007 - Added user_name attribute to request object (thanks Peter) 39 39 16/12/2006 - Added Peter Russell patch to support pre-hashed passwords 40 40 so that now you can store hashed values instead of clear text … … 164 164 # yeah the user is authorized 165 165 cherrypy.request.isAuthorized = True 166 cherrypy.request.user_name = ah["username"] 166 167 if method not in ["POST", "PUT"]: 167 168 cherrypy.request.processRequestBody = False
