Changeset 139
- Timestamp:
- 11/06/07 00:40:50
- Files:
-
- AuthKit/trunk/AuthKit.egg-info/PKG-INFO (modified) (2 diffs)
- AuthKit/trunk/AuthKit.egg-info/SOURCES.txt (modified) (3 diffs)
- AuthKit/trunk/AuthKit.egg-info/requires.txt (modified) (2 diffs)
- AuthKit/trunk/CHANGELOG.txt (modified) (2 diffs)
- AuthKit/trunk/authkit/authenticate/form.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/AuthKit.egg-info/PKG-INFO
r133 r139 1 1 Metadata-Version: 1.0 2 2 Name: AuthKit 3 Version: 0.4.1dev-r13 23 Version: 0.4.1dev-r133 4 4 Summary: An authentication and authorization toolkit for WSGI applications and frameworks 5 5 Home-page: http://authkit.org/ … … 56 56 the users object is set up on each request and recieves an environ 57 57 argument. 58 * OpenID middleware now no longer sets up beaker middleware itself. This 59 should now be done manually in the middleware stack. See the example in 60 examples/docs/open_id.py 61 * OpenID support now upgraded to use 2.0 (from Dalius Dobravolskas) 58 62 * Fixed encrypt typo with postgres users driver 63 * The cookie middleware now has a nouserincookie option which forces the 64 middleware to store the username in a Beaker session rather than in plain 65 text in the cookie. See examples/docs/form_no_user_in_cookie.py for an 66 example of its use. 67 * Form authentication method now defaults to 200 OK rather than 401 when 68 the sign in form is displayed so that it works with Safari 3 Beta. 69 * The cookie middleware Bad Ticket page now also uses 200 OK, also to 70 support Safari 3 Beta. 71 * The cookie middleware bad ticket now logs to debug rather than error to 72 avoid the ``No handlers could be found for logger 73 "authkit.authenticate.cookie"`` message you get with a bad cookie if no 74 error logging is specifically set up. 75 * Added a user management api_version attribute and changed the API so that 76 the users object is set up on each request and recieves an environ 77 argument. 78 * Fixed encrypt typo with postgres users driver 79 * Renamed the config_paste option to app_conf in authenticate middleware. If 80 you get an "No authkit.setup.method was specified" error when you are sure 81 it is specified, this might be why. 59 82 60 83 0.4.0 AuthKit/trunk/AuthKit.egg-info/SOURCES.txt
r128 r139 38 38 authkit/users/__init__.py 39 39 authkit/users/postgresql_driver.py 40 authkit/users/sqlalchemy_04_driver.py 40 41 authkit/users/sqlalchemy_driver.py 41 42 docs/community.txt … … 77 78 examples/docs/digest.py 78 79 examples/docs/form.py 80 examples/docs/form_no_user_in_cookie.py 79 81 examples/docs/forward.py 80 82 examples/docs/multi.py … … 84 86 examples/user/database/README.txt 85 87 examples/user/database/app.py 86 examples/user/database/create.py87 examples/user/database/model.py88 88 ez_setup/README.txt 89 89 ez_setup/__init__.py 90 test/model.py91 90 test/test.py 92 91 test/user_file_data.txt AuthKit/trunk/AuthKit.egg-info/requires.txt
r110 r139 3 3 PasteDeploy>=1.1 4 4 PasteScript>=1.1 5 python-openid>=1.1,<=1.2 6 python-yadis==1.0.1,<=1.1 7 python-urljr==1.0.0,<=1.1 5 python-openid>=2.0.1 8 6 elementtree>=1.2,<=1.3 9 7 Beaker>=0.7.3 … … 13 11 pudge==0.1.3 14 12 buildutils==dev 15 pygments ==0.713 pygments>=0.7 16 14 TurboKid==0.9.5 17 15 18 16 [full] 19 17 Pylons>=0.9.5,<=1.0 20 SQLAlchemy>=0.3.6,<=0.4 21 DBUtils>=0.9.2,<=1.0 18 SQLAlchemy>=0.4.0,<=0.4.99 22 19 pudge==0.1.3 23 20 buildutils==dev 24 pygments ==0.721 pygments>=0.7 25 22 TurboKid==0.9.5 26 23 27 24 [pylons] 28 25 Pylons>=0.9.5,<=1.0 29 30 [mysql]31 SQLAlchemy>=0.3.2,<=0.432 DBUtils>=0.9.2,<=1.0AuthKit/trunk/CHANGELOG.txt
r133 r139 1 1 Changes 2 2 ======= 3 3 4 4 0.4.1 (**svn**) 5 5 … … 7 7 the users object is set up on each request and recieves an environ 8 8 argument. 9 * OpenID middleware now no longer sets up beaker middleware itself. This 10 should now be done manually in the middleware stack. See the example in 11 examples/docs/open_id.py 12 * OpenID support now upgraded to use 2.0 (from Dalius Dobravolskas) 9 13 * Fixed encrypt typo with postgres users driver 14 * The cookie middleware now has a nouserincookie option which forces the 15 middleware to store the username in a Beaker session rather than in plain 16 text in the cookie. See examples/docs/form_no_user_in_cookie.py for an 17 example of its use. 18 * Form authentication method now defaults to 200 OK rather than 401 when 19 the sign in form is displayed so that it works with Safari 3 Beta. 20 * The cookie middleware Bad Ticket page now also uses 200 OK, also to 21 support Safari 3 Beta. 22 * The cookie middleware bad ticket now logs to debug rather than error to 23 avoid the ``No handlers could be found for logger 24 "authkit.authenticate.cookie"`` message you get with a bad cookie if no 25 error logging is specifically set up. 26 * Added a user management api_version attribute and changed the API so that 27 the users object is set up on each request and recieves an environ 28 argument. 29 * Fixed encrypt typo with postgres users driver 30 * Renamed the config_paste option to app_conf in authenticate middleware. If 31 you get an "No authkit.setup.method was specified" error when you are sure 32 it is specified, this might be why. 10 33 11 34 0.4.0 AuthKit/trunk/authkit/authenticate/form.py
r116 r139 10 10 because this middleware sets the environ['pylons.error_call'] key so that the 11 11 error documents middleware doesn't intercept the response. 12 13 From AuthKit 0.4.1 using 200 OK when the form is shown is now the default. 14 This is so that Safari 3 Beta displays the page rather than trying to 15 handle the response itself as a basic or digest authentication. 16 17 The username and password are username2, password2 and الإعلاني, password1 18 respectively. 12 19 """ 13 20 … … 46 53 app, 47 54 charset=None, 48 status=" 401 Unauthorized",55 status="200 OK", 49 56 **p 50 57 ):
