Django

Code

Show
Ignore:
Timestamp:
07/01/07 00:55:01 (2 years ago)
Author:
mtredinnick
Message:

unicode: Merged changes from trunk up to [5579].

Files:

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  
    326326If you'd like to manually authenticate a user by comparing a 
    327327plain-text password to the hashed password in the database, use the 
    328 convenience function `django.contrib.auth.models.check_password`. It 
     328convenience function ``django.contrib.auth.models.check_password``. It 
    329329takes two arguments: the plain-text password to check, and the full 
    330330value of a user's ``password`` field in the database to check against, 
     
    462462-------------------- 
    463463 
    464 In addition to the `login` view, the authentication system includes a 
     464In addition to the ``login`` view, the authentication system includes a 
    465465few other useful built-in views: 
    466466