Changeset 64
- Timestamp:
- 03/17/07 15:21:50
- Files:
-
- AuthKit/branches/0.4/AuthKit.egg-info/PKG-INFO (modified) (1 diff)
- AuthKit/branches/0.4/AuthKit.egg-info/SOURCES.txt (modified) (1 diff)
- AuthKit/branches/0.4/AuthKit.egg-info/entry_points.txt (modified) (1 diff)
- AuthKit/branches/0.4/AuthKit.egg-info/requires.txt (modified) (1 diff)
- AuthKit/branches/0.4/authkit/template/__init__.py (modified) (1 diff)
- AuthKit/branches/0.4/authkit/template/authenticate/+package+/__init__.py_tmpl (modified) (2 diffs)
- AuthKit/branches/0.4/authkit/template/authenticate/setup.py_tmpl (modified) (1 diff)
- AuthKit/branches/0.4/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/branches/0.4/AuthKit.egg-info/PKG-INFO
r59 r64 1 1 Metadata-Version: 1.0 2 2 Name: AuthKit 3 Version: 0.4.0 3 Version: 0.4.0dev-r63 4 4 Summary: An authentication and authorization toolkit for WSGI applications and frameworks 5 5 Home-page: http://3aims.com/ AuthKit/branches/0.4/AuthKit.egg-info/SOURCES.txt
r61 r64 23 23 authkit/authenticate/passurl.py 24 24 authkit/authenticate/redirect.py 25 authkit/template/__init__.py 26 authkit/template/authenticate/setup.cfg 27 authkit/template/authenticate/setup.py_tmpl 28 authkit/template/authenticate/+package+/__init__.py_tmpl 29 authkit/template/authenticate/docs/license.txt_tmpl 30 authkit/template/authenticate/ez_setup/README.txt 31 authkit/template/authenticate/ez_setup/__init__.py 25 32 docs/community.txt 26 33 docs/download.txt AuthKit/branches/0.4/AuthKit.egg-info/entry_points.txt
r59 r64 8 8 redirect=authkit.authenticate.redirect:make_redirect_handler 9 9 cookie=authkit.authenticate.auth_tkt:make_cookie_handler 10 11 [paste.paster_create_template] 12 authenticate_plugin=authkit.template:AuthenticatePlugin 13 14 10 15 AuthKit/branches/0.4/AuthKit.egg-info/requires.txt
r61 r64 2 2 nose>=0.9.2,<=1.0 3 3 PasteDeploy>=1.1,<=1.4 4 PasteScript>=1.1,<=1.4 4 5 python-openid>=1.1,<=1.2 5 6 python-yadis==1.0.1,<=1.1 AuthKit/branches/0.4/authkit/template/__init__.py
r63 r64 3 3 class AuthenticatePlugin(BasicPackage): 4 4 _template_dir = 'authenticate' 5 summary = "An AuthKit authenticate middleware plugin" 5 6 AuthKit/branches/0.4/authkit/template/authenticate/+package+/__init__.py_tmpl
r63 r64 1 from authkit.authenticate import middleware 1 from authkit.authenticate import middleware, AuthKitConfigError, strip_base 2 2 from authkit.authenticate.multi import MultiHandler, status_checker 3 3 … … 15 15 app_conf=None, 16 16 global_conf=None, 17 prefix='authkit.method.{{ repr(package)}}.',17 prefix='authkit.method.{{package}}.', 18 18 ): 19 19 app = MultiHandler(app) AuthKit/branches/0.4/authkit/template/authenticate/setup.py_tmpl
r63 r64 25 25 # -*- Entry points: -*- 26 26 [authkit.method] 27 {{ repr(package)}}={{repr(package)}}:make_handler27 {{package}}={{package}}:make_handler 28 28 """, 29 29 ) AuthKit/branches/0.4/setup.py
r63 r64 92 92 redirect=authkit.authenticate.redirect:make_redirect_handler 93 93 cookie=authkit.authenticate.auth_tkt:make_cookie_handler 94 95 [paste.paster_create_template] 96 authenticate_plugin=authkit.template:AuthenticatePlugin 97 98 94 99 """, 95 100 )
