Skip to content

Latest commit

 

History

History
105 lines (77 loc) · 8.26 KB

django_openid.markdown

File metadata and controls

105 lines (77 loc) · 8.26 KB

django_openid

for django_openid version 0.2.0

Code for django_openid is online at GitHub: http://github.com/brosner/django-openid/

Online usage documentation


  • Dependencies:

    • django.contrib.auth (optional)
  • Nonce

    • server_url (char 255)
    • timestamp (int)
    • sale (char 40)
  • Association

    • server_url (text 2047)
    • handle (char 255)
    • secret (char 255)
    • issued (int)
    • lifetime (int)
    • assoc_type (text 64)
  • UserOpenidAssociation

    • user (foreign-key -> django.contrib.auth.models.User)
    • openid (char 255)
    • created (datetime)

URL Design

(r'^openid/(.*)', PinaxConsumer()) - used with "account" in Pinax project

Views & Templates

TemplateTags

None

Filters

None

View Decorators

None

Forms

None

Constants

None