Changeset 151

Show
Ignore:
Timestamp:
04/30/08 09:58:08
Author:
thejimmyg
Message:

Fixed #50 yahoo.com openid signins work with latest Python OpenID now.

Files:

Legend:

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

    r146 r151  
    11Metadata-Version: 1.0 
    22Name: AuthKit 
    3 Version: 0.4.1dev-r145 
     3Version: 0.4.1dev-r150 
    44Summary: An authentication and authorization toolkit for WSGI applications and frameworks 
    55Home-page: http://authkit.org/ 
     
    5353        0.4.1 (**svn**) 
    5454         
     55        * Updated the user/database example, it now works #43 
     56        * Updated user tokens code to fix #17 
     57        * Updated authkit.authenticate.multi so that it should fix #41 and pass 
     58        the WSGI writable from start_response() correctly. 
     59        * Added a form.method option so you can choose GET authentication for 
     60        cases when another piece of middleware has already parsed the form 
     61        variables (eg with repoze?). 
     62        * Fixed bug in form action generation for non-standard ports 
    5563        * Fixed bug reported by Sam Gentle where remote addr is obtained from 
    5664        X_FORWARDED_FOR after multiple proxies. 
  • AuthKit/trunk/AuthKit.egg-info/SOURCES.txt

    r139 r151  
    7878examples/docs/digest.py 
    7979examples/docs/form.py 
     80examples/docs/form2.py 
    8081examples/docs/form_no_user_in_cookie.py 
    8182examples/docs/forward.py 
  • AuthKit/trunk/AuthKit.egg-info/requires.txt

    r139 r151  
    33PasteDeploy>=1.1 
    44PasteScript>=1.1 
    5 python-openid>=2.0.1 
     5python-openid>=2.1.1 
    66elementtree>=1.2,<=1.3 
    77Beaker>=0.7.3 
  • AuthKit/trunk/CHANGELOG.txt

    r150 r151  
    440.4.1 (**svn**) 
    55 
     6* Fixed a bug due to a change in the latest version of Python OpenID 
     7  so that AuthKit OpenID works with Yahoo sign-ins. Phil Kershaw #50 
    68* Updated the user/database example, it now works #43 
    79* Updated user tokens code to fix #17 
  • AuthKit/trunk/authkit/authenticate/open_id.py

    r136 r151  
    360360        params = dict(paste.request.parse_querystring(environ)) 
    361361        oidconsumer = self._get_consumer(environ) 
    362         info = oidconsumer.complete(dict(params)
     362        info = oidconsumer.complete(dict(params), params['openid.return_to']
    363363 
    364364        if info.status == consumer.FAILURE and info.identity_url: 
  • AuthKit/trunk/setup.py

    r135 r151  
    3939    install_requires = [ 
    4040        "Paste>=1.4", "nose>=0.9.2", "PasteDeploy>=1.1",  
    41         "PasteScript>=1.1", "python-openid>=2.0.1",  
     41        "PasteScript>=1.1", "python-openid>=2.1.1",  
    4242        "elementtree>=1.2,<=1.3", "Beaker>=0.7.3", "decorator>=2.1.0", 
    4343    ],