Changeset 2268
- Timestamp:
- 05/11/09 12:20:22
- Files:
-
- trunk/cherrypy/_cptools.py (modified) (2 diffs)
- trunk/cherrypy/lib/auth_basic.py (added)
- trunk/cherrypy/lib/auth_digest.py (added)
- trunk/cherrypy/test/test_auth_basic.py (added)
- trunk/cherrypy/test/test_auth_digest.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cptools.py
r2262 r2268 236 236 from cherrypy.lib import sessions as _sessions, xmlrpc as _xmlrpc 237 237 from cherrypy.lib import caching as _caching, wsgiapp as _wsgiapp 238 from cherrypy.lib import auth_basic, auth_digest 238 239 239 240 … … 501 502 _d.json_in = Tool('before_handler', jsontools.json_in, priority=30) 502 503 _d.json_out = Tool('before_handler', jsontools.json_out, priority=30) 504 _d.auth_basic = Tool('before_handler', auth_basic.basic_auth, priority=1) 505 _d.auth_digest = Tool('before_handler', auth_digest.digest_auth, priority=1) 503 506 504 507 del _d, cptools, encoding, auth, static, tidy

