Changeset 141
- Timestamp:
- 11/08/07 12:01:52
- Files:
-
- AuthKit/trunk/AuthKit.egg-info/PKG-INFO (modified) (1 diff)
- AuthKit/trunk/examples/user/database/app.py (modified) (1 diff)
- AuthKit/trunk/test/test.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/AuthKit.egg-info/PKG-INFO
r139 r141 1 1 Metadata-Version: 1.0 2 2 Name: AuthKit 3 Version: 0.4.1dev-r13 33 Version: 0.4.1dev-r139 4 4 Summary: An authentication and authorization toolkit for WSGI applications and frameworks 5 5 Home-page: http://authkit.org/ AuthKit/trunk/examples/user/database/app.py
r137 r141 70 70 return self._access_granted(start_response, "You are in the <tt>pylons</tt> group.") 71 71 72 from jimmyg.database.saimport SQLAlchemyManager72 from sqlalchemymanager import SQLAlchemyManager 73 73 import authkit.users.sqlalchemy_04_driver 74 74 import os AuthKit/trunk/test/test.py
r137 r141 159 159 raise Exception("Could not run the SQLAlchemy tests, not installed") 160 160 try: 161 from jimmyg.database.saimport SQLAlchemyManager161 from sqlalchemymanager import SQLAlchemyManager 162 162 except ImportError: 163 raise Exception("Could not run the SQLAlchemy tests, the jimmyg module containing theSQLAlchemyManager is not installed")163 raise Exception("Could not run the SQLAlchemy tests, SQLAlchemyManager is not installed") 164 164 if os.path.exists("mydb.db"): 165 165 os.remove("mydb.db")
