Changeset 143
- Timestamp:
- 11/08/07 12:52:20
- Files:
-
- AuthKit/trunk/CHANGELOG.txt (modified) (1 diff)
- AuthKit/trunk/authkit/authenticate/cookie.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/CHANGELOG.txt
r142 r143 4 4 0.4.1 (**svn**) 5 5 6 * Fixed #38, cookie sign out path should match the path specified in 7 the config file. 6 8 * Fixed #37, missing import of sys in digest authentication 7 9 * Updated SQLAlchemy code to use SQLAlchemyManager. Needs installing AuthKit/trunk/authkit/authenticate/cookie.py
r140 r143 444 444 environ[self.session_middleware].save() 445 445 domain = self.cookie_params.get('domain') 446 path = '/'446 path = self.cookie_params.get('path', '/') 447 447 if not domain: 448 448 cookies = [('Set-Cookie', '%s=""; Path=%s' % (self.cookie_name,
