Django

Code

Changeset 6376

Show
Ignore:
Timestamp:
09/19/07 15:54:46 (1 year ago)
Author:
adrian
Message:

Made some small edits to docs/authentication.txt changes from [6375]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/authentication.txt

    r6375 r6376  
    10911091                return False 
    10921092                 
    1093 This gives full permissions to user granted access in the above example. Notice 
     1093This gives full permissions to the user granted access in the above example. Notice 
    10941094that the backend auth functions all take the user object as an argument, and 
    1095 also accept the same arguments given to the associated ``User`` functions. 
     1095they also accept the same arguments given to the associated ``User`` functions. 
    10961096 
    10971097A full authorization implementation can be found in 
    10981098``django/contrib/auth/backends.py`` _, which is the default backend and queries 
    1099 the ``auth_permission``-table most of the time. 
     1099the ``auth_permission`` table most of the time. 
    11001100 
    11011101.. _django/contrib/auth/backends.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/backends.py