Changeset 124
- Timestamp:
- 09/26/07 22:44:13
- Files:
-
- AuthKit/branches/0.4/authkit/authorize/__init__.py (modified) (1 diff)
- AuthKit/branches/0.4/authkit/authorize/pylons_adaptors.py (moved) (moved from AuthKit/branches/0.4/authkit/authorize/pylons.py)
- AuthKit/branches/0.4/authkit/authorize/wsgi_adaptors.py (moved) (moved from AuthKit/branches/0.4/authkit/authorize/wsgi.py)
- AuthKit/branches/0.4/authkit/pylons_adaptors.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/branches/0.4/authkit/authorize/__init__.py
r122 r124 1 1 """\ 2 Please update your code to use authkit.authorize.wsgi instead of this2 Please update your code to use authkit.authorize.wsgi_adaptors instead of this 3 3 module. 4 4 """ 5 5 6 from authkit.authorize.wsgi import *6 from authkit.authorize.wsgi_adaptors import * AuthKit/branches/0.4/authkit/pylons_adaptors.py
r122 r124 1 1 """\ 2 2 This module is deprecated. Please update your code to use 3 ``authkit.authorize.pylons `` instead of this module.3 ``authkit.authorize.pylons_adaptors`` instead of this module. 4 4 """ 5 5 import warnings … … 9 9 2 10 10 ) 11 from authkit.authorize.pylons import *11 from authkit.authorize.pylons_adaptors import *
