Changeset 141

Show
Ignore:
Timestamp:
11/08/07 12:01:52
Author:
thejimmyg
Message:

Updated to use the experimental SQLAlchemyManage pacakge

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • AuthKit/trunk/AuthKit.egg-info/PKG-INFO

    r139 r141  
    11Metadata-Version: 1.0 
    22Name: AuthKit 
    3 Version: 0.4.1dev-r133 
     3Version: 0.4.1dev-r139 
    44Summary: An authentication and authorization toolkit for WSGI applications and frameworks 
    55Home-page: http://authkit.org/ 
  • AuthKit/trunk/examples/user/database/app.py

    r137 r141  
    7070        return self._access_granted(start_response, "You are in the <tt>pylons</tt> group.") 
    7171 
    72 from jimmyg.database.sa import SQLAlchemyManager 
     72from sqlalchemymanager import SQLAlchemyManager 
    7373import authkit.users.sqlalchemy_04_driver 
    7474import os 
  • AuthKit/trunk/test/test.py

    r137 r141  
    159159        raise Exception("Could not run the SQLAlchemy tests, not installed") 
    160160    try:  
    161         from jimmyg.database.sa import SQLAlchemyManager 
     161        from sqlalchemymanager import SQLAlchemyManager 
    162162    except ImportError: 
    163         raise Exception("Could not run the SQLAlchemy tests, the jimmyg module containing the SQLAlchemyManager is not installed") 
     163        raise Exception("Could not run the SQLAlchemy tests, SQLAlchemyManager is not installed") 
    164164    if os.path.exists("mydb.db"): 
    165165        os.remove("mydb.db")