Changeset 5580 for django/branches/unicode/docs/authentication.txt
- Timestamp:
- 07/01/07 00:55:01 (2 years ago)
- Files:
-
- django/branches/unicode (modified) (1 prop)
- django/branches/unicode/docs/authentication.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/unicode
- Property svnmerge-integrated changed from /django/trunk:1-5530 to /django/trunk:1-5579
django/branches/unicode/docs/authentication.txt
r5531 r5580 326 326 If you'd like to manually authenticate a user by comparing a 327 327 plain-text password to the hashed password in the database, use the 328 convenience function ` django.contrib.auth.models.check_password`. It328 convenience function ``django.contrib.auth.models.check_password``. It 329 329 takes two arguments: the plain-text password to check, and the full 330 330 value of a user's ``password`` field in the database to check against, … … 462 462 -------------------- 463 463 464 In addition to the ` login` view, the authentication system includes a464 In addition to the ``login`` view, the authentication system includes a 465 465 few other useful built-in views: 466 466
