Changes between Version 2 and Version 3 of CookBookShortcutsOpenIDAuthentication


Ignore:
Timestamp:
Apr 17, 2006, 10:36:31 AM (18 years ago)
Author:
djangoproject.com@…
Comment:

typo fixing

Legend:

Unmodified
Added
Removed
Modified
  • CookBookShortcutsOpenIDAuthentication

    v2 v3  
    66#!python
    77(r'^openid/$', 'myproject.openid.openid_form'),
    8 (r'^openid/process/(?P<token>.*/$', 'myproject.openid.process'),
     8(r'^openid/process/(?P<token>.*)/$', 'myproject.openid.process'),
    99}}}
    1010
    11 The views need to make use of an OpenID consumer, which I initialize when the views.py file is loaded.  The below makes of an additional setting that I placed into settings.py, a constant to indicate where the OpenID library should store its state information.
     11The views need to make use of an OpenID consumer, which I initialize when the views.py file is loaded.  The below also makes use of an additional setting that I placed into settings.py, a constant to indicate where the OpenID library should store its state information.
    1212
    1313{{{
Back to Top