Changes between Version 6 and Version 7 of CookBookShortcutsOpenIDAuthentication


Ignore:
Timestamp:
Aug 28, 2006, 1:39:18 AM (18 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBookShortcutsOpenIDAuthentication

    v6 v7  
    1616    store = openid.store.filestore.FileOpenIDStore (OPENID_DATASTORE_PATH)
    1717    global OID_CONSUMER
    18     OID_CONSUMER = openid.consumer.consumer.OpenIDConsumer (store)
     18    OID_CONSUMER = openid.consumer.consumer.OpenIDConsumer (store)
    1919
    2020initializeOpenID ()
     
    3232    manipulator = OpenIDManipulator ()
    3333    errors = dict ()
    34     if request.POST:
     34    if request.method == 'POST':
    3535        new_data = request.POST.copy ()
    3636        openid_url = request.POST['url']
     
    113113
    114114
    115 A Implementation of this is available [here http://svn.zyons.python-hosting.com/trunk/zilbo/common/openid/]
     115A Implementation of this is available [here http://svn.zyons.python-hosting.com/trunk/zilbo/common/openid/]
Back to Top