Changeset 64

Show
Ignore:
Timestamp:
03/17/07 15:21:50
Author:
thejimmyg
Message:

Fixes to the new template plugin code

Files:

Legend:

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

    r59 r64  
    11Metadata-Version: 1.0 
    22Name: AuthKit 
    3 Version: 0.4.0 
     3Version: 0.4.0dev-r63 
    44Summary: An authentication and authorization toolkit for WSGI applications and frameworks 
    55Home-page: http://3aims.com/ 
  • AuthKit/branches/0.4/AuthKit.egg-info/SOURCES.txt

    r61 r64  
    2323authkit/authenticate/passurl.py 
    2424authkit/authenticate/redirect.py 
     25authkit/template/__init__.py 
     26authkit/template/authenticate/setup.cfg 
     27authkit/template/authenticate/setup.py_tmpl 
     28authkit/template/authenticate/+package+/__init__.py_tmpl 
     29authkit/template/authenticate/docs/license.txt_tmpl 
     30authkit/template/authenticate/ez_setup/README.txt 
     31authkit/template/authenticate/ez_setup/__init__.py 
    2532docs/community.txt 
    2633docs/download.txt 
  • AuthKit/branches/0.4/AuthKit.egg-info/entry_points.txt

    r59 r64  
    88        redirect=authkit.authenticate.redirect:make_redirect_handler 
    99        cookie=authkit.authenticate.auth_tkt:make_cookie_handler 
     10 
     11        [paste.paster_create_template] 
     12        authenticate_plugin=authkit.template:AuthenticatePlugin 
     13 
     14 
    1015     
  • AuthKit/branches/0.4/AuthKit.egg-info/requires.txt

    r61 r64  
    22nose>=0.9.2,<=1.0 
    33PasteDeploy>=1.1,<=1.4 
     4PasteScript>=1.1,<=1.4 
    45python-openid>=1.1,<=1.2 
    56python-yadis==1.0.1,<=1.1 
  • AuthKit/branches/0.4/authkit/template/__init__.py

    r63 r64  
    33class AuthenticatePlugin(BasicPackage): 
    44    _template_dir = 'authenticate' 
     5    summary = "An AuthKit authenticate middleware plugin" 
    56 
  • AuthKit/branches/0.4/authkit/template/authenticate/+package+/__init__.py_tmpl

    r63 r64  
    1 from authkit.authenticate import middleware 
     1from authkit.authenticate import middleware, AuthKitConfigError, strip_base 
    22from authkit.authenticate.multi import MultiHandler, status_checker 
    33 
     
    1515    app_conf=None, 
    1616    global_conf=None, 
    17     prefix='authkit.method.{{repr(package)}}.',  
     17    prefix='authkit.method.{{package}}.',  
    1818): 
    1919    app = MultiHandler(app) 
  • AuthKit/branches/0.4/authkit/template/authenticate/setup.py_tmpl

    r63 r64  
    2525      # -*- Entry points: -*- 
    2626      [authkit.method] 
    27       {{repr(package)}}={{repr(package)}}:make_handler 
     27      {{package}}={{package}}:make_handler 
    2828      """, 
    2929      ) 
  • AuthKit/branches/0.4/setup.py

    r63 r64  
    9292        redirect=authkit.authenticate.redirect:make_redirect_handler 
    9393        cookie=authkit.authenticate.auth_tkt:make_cookie_handler 
     94 
     95        [paste.paster_create_template] 
     96        authenticate_plugin=authkit.template:AuthenticatePlugin 
     97 
     98 
    9499    """, 
    95100)