Changeset 167
- Timestamp:
- 11/09/08 19:10:34
- Files:
-
- AuthKit/trunk/CHANGELOG.txt (modified) (1 diff)
- AuthKit/trunk/authkit/authenticate/form.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/CHANGELOG.txt
r166 r167 4 4 0.4.3 5 5 6 * Added headers to the form handling for IE. Fixes #54 6 * Removed arabic letters from the form handler. Fixes #40. 7 * Added headers to the form handling for IE. Fixes #54. 7 8 * Adding SQLAlchemy 0.5 support, uses session.add() instead of session.save() 8 9 * The multi handler now handles WSGI applications implemented as iterators, AuthKit/trunk/authkit/authenticate/form.py
r166 r167 1 1 # -*- coding: utf-8 -*- 2 2 3 """Form and cookie based authentication middleware 3 4 … … 15 16 This is so that Safari 3 Beta displays the page rather than trying to 16 17 handle the response itself as a basic or digest authentication. 17 18 The username and password are username2, password2 and الإعلاني, password119 respectively.20 18 """ 21 19
