Changeset 79
- Timestamp:
- 06/05/07 18:33:57
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/branches/0.4/authkit/authenticate/__init__.py
r77 r79 289 289 290 290 def middleware(app, app_conf=None, global_conf=None, prefix='authkit.', 291 **options):291 handle_httpexception=True, **options): 292 292 """ 293 293 This function sets up the AuthKit authenticate middleware and its use and options … … 331 331 variable in the source code. 332 332 """ 333 app = HTTPExceptionHandler(app) 333 if handle_httpexception: 334 app = HTTPExceptionHandler(app) 334 335 335 336 # Configure the config files
