Changeset 162
- Timestamp:
- 11/08/08 20:39:04
- Files:
-
- AuthKit/trunk/AuthKit.egg-info/PKG-INFO (modified) (2 diffs)
- AuthKit/trunk/CHANGELOG.txt (modified) (1 diff)
- AuthKit/trunk/authkit/authenticate/multi.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/AuthKit.egg-info/PKG-INFO
r161 r162 1 1 Metadata-Version: 1.0 2 2 Name: AuthKit 3 Version: 0.4. 23 Version: 0.4.3 4 4 Summary: An authentication and authorization toolkit for WSGI applications and frameworks 5 5 Home-page: http://authkit.org/ … … 50 50 Changes 51 51 ======= 52 53 0.4.3 54 55 * Set the pylons.error_call environment variable on all redirected AuthKit 56 responses 57 * Trigger an error when trying to use server-side password encryption with 58 digest authentication 52 59 53 60 0.4.2 AuthKit/trunk/CHANGELOG.txt
r161 r162 4 4 0.4.3 5 5 6 * Set the pylons.status_code_redirect environment variable on all redirected 7 AuthKit responses 6 8 * Set the pylons.error_call environment variable on all redirected AuthKit 7 9 responses AuthKit/trunk/authkit/authenticate/multi.py
r161 r162 81 81 environ['authkit.multi'] = True 82 82 environ['pylons.error_call'] = 'authkit' 83 environ['pylons.status_code_redirect'] = 'authkit' 83 84 return binding(environ, logging_start_response) 84 85 return None
