Changeset 5537
- Timestamp:
- 06/25/07 11:11:32 (1 year ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/docs/authentication.txt (modified) (1 diff)
- django/trunk/docs/faq.txt (modified) (1 diff)
- django/trunk/docs/generic_views.txt (modified) (1 diff)
- django/trunk/docs/templates_python.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r5525 r5537 123 123 Kieran Holland <http://www.kieranholland.com> 124 124 Sung-Jin Hong <serialx.net@gmail.com> 125 Richard House <Richard.House@i-logue.com> 125 126 Robert Rock Howard <http://djangomojo.com/> 126 127 Jason Huggins <http://www.jrandolph.com/blog/> django/trunk/docs/authentication.txt
r5490 r5537 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, django/trunk/docs/faq.txt
r5519 r5537 105 105 `Wilson Miner`_ 106 106 Wilson's design-fu makes us all look like rock stars. By day, he's an 107 interactive designer for `Apple` . Don't ask him what he's working on, or107 interactive designer for `Apple`_. Don't ask him what he's working on, or 108 108 he'll have to kill you. He lives in San Francisco. 109 109 django/trunk/docs/generic_views.txt
r5406 r5537 755 755 * ``previous``: The previous page number, as an integer. This is 1-based. 756 756 757 * ` last_on_page`: The number of the757 * ``last_on_page``: The number of the 758 758 last result on the current page. This is 1-based. 759 759 760 * ` first_on_page`: The number of the760 * ``first_on_page``: The number of the 761 761 first result on the current page. This is 1-based. 762 762 django/trunk/docs/templates_python.txt
r5511 r5537 343 343 * ``user`` -- An ``auth.User`` instance representing the currently 344 344 logged-in user (or an ``AnonymousUser`` instance, if the client isn't 345 logged in). See the `user authentication docs` .345 logged in). See the `user authentication docs`_. 346 346 347 347 * ``messages`` -- A list of messages (as strings) for the currently
