Changeset 151
- Timestamp:
- 04/30/08 09:58:08
- Files:
-
- AuthKit/trunk/AuthKit.egg-info/PKG-INFO (modified) (2 diffs)
- AuthKit/trunk/AuthKit.egg-info/SOURCES.txt (modified) (1 diff)
- AuthKit/trunk/AuthKit.egg-info/requires.txt (modified) (1 diff)
- AuthKit/trunk/CHANGELOG.txt (modified) (1 diff)
- AuthKit/trunk/authkit/authenticate/open_id.py (modified) (1 diff)
- AuthKit/trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/AuthKit.egg-info/PKG-INFO
r146 r151 1 1 Metadata-Version: 1.0 2 2 Name: AuthKit 3 Version: 0.4.1dev-r1 453 Version: 0.4.1dev-r150 4 4 Summary: An authentication and authorization toolkit for WSGI applications and frameworks 5 5 Home-page: http://authkit.org/ … … 53 53 0.4.1 (**svn**) 54 54 55 * Updated the user/database example, it now works #43 56 * Updated user tokens code to fix #17 57 * Updated authkit.authenticate.multi so that it should fix #41 and pass 58 the WSGI writable from start_response() correctly. 59 * Added a form.method option so you can choose GET authentication for 60 cases when another piece of middleware has already parsed the form 61 variables (eg with repoze?). 62 * Fixed bug in form action generation for non-standard ports 55 63 * Fixed bug reported by Sam Gentle where remote addr is obtained from 56 64 X_FORWARDED_FOR after multiple proxies. AuthKit/trunk/AuthKit.egg-info/SOURCES.txt
r139 r151 78 78 examples/docs/digest.py 79 79 examples/docs/form.py 80 examples/docs/form2.py 80 81 examples/docs/form_no_user_in_cookie.py 81 82 examples/docs/forward.py AuthKit/trunk/AuthKit.egg-info/requires.txt
r139 r151 3 3 PasteDeploy>=1.1 4 4 PasteScript>=1.1 5 python-openid>=2. 0.15 python-openid>=2.1.1 6 6 elementtree>=1.2,<=1.3 7 7 Beaker>=0.7.3 AuthKit/trunk/CHANGELOG.txt
r150 r151 4 4 0.4.1 (**svn**) 5 5 6 * Fixed a bug due to a change in the latest version of Python OpenID 7 so that AuthKit OpenID works with Yahoo sign-ins. Phil Kershaw #50 6 8 * Updated the user/database example, it now works #43 7 9 * Updated user tokens code to fix #17 AuthKit/trunk/authkit/authenticate/open_id.py
r136 r151 360 360 params = dict(paste.request.parse_querystring(environ)) 361 361 oidconsumer = self._get_consumer(environ) 362 info = oidconsumer.complete(dict(params) )362 info = oidconsumer.complete(dict(params), params['openid.return_to']) 363 363 364 364 if info.status == consumer.FAILURE and info.identity_url: AuthKit/trunk/setup.py
r135 r151 39 39 install_requires = [ 40 40 "Paste>=1.4", "nose>=0.9.2", "PasteDeploy>=1.1", 41 "PasteScript>=1.1", "python-openid>=2. 0.1",41 "PasteScript>=1.1", "python-openid>=2.1.1", 42 42 "elementtree>=1.2,<=1.3", "Beaker>=0.7.3", "decorator>=2.1.0", 43 43 ],
