Changes between Version 6 and Version 7 of CookBookShortcutsOpenIDAuthentication
- Timestamp:
- Aug 28, 2006, 1:39:18 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBookShortcutsOpenIDAuthentication
v6 v7 16 16 store = openid.store.filestore.FileOpenIDStore (OPENID_DATASTORE_PATH) 17 17 global OID_CONSUMER 18 18 OID_CONSUMER = openid.consumer.consumer.OpenIDConsumer (store) 19 19 20 20 initializeOpenID () … … 32 32 manipulator = OpenIDManipulator () 33 33 errors = dict () 34 if request. POST:34 if request.method == 'POST': 35 35 new_data = request.POST.copy () 36 36 openid_url = request.POST['url'] … … 113 113 114 114 115 A Implementation of this is available [here 115 A Implementation of this is available [here http://svn.zyons.python-hosting.com/trunk/zilbo/common/openid/]