Changeset 6376
- Timestamp:
- 09/19/07 15:54:46 (1 year ago)
- Files:
-
- django/trunk/docs/authentication.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/authentication.txt
r6375 r6376 1091 1091 return False 1092 1092 1093 This gives full permissions to user granted access in the above example. Notice1093 This gives full permissions to the user granted access in the above example. Notice 1094 1094 that 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.1095 they also accept the same arguments given to the associated ``User`` functions. 1096 1096 1097 1097 A full authorization implementation can be found in 1098 1098 ``django/contrib/auth/backends.py`` _, which is the default backend and queries 1099 the ``auth_permission`` -table most of the time.1099 the ``auth_permission`` table most of the time. 1100 1100 1101 1101 .. _django/contrib/auth/backends.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/backends.py
