Django

Code

Changeset 5537

Show
Ignore:
Timestamp:
06/25/07 11:11:32 (1 year ago)
Author:
mtredinnick
Message:

Fixed #4668, #4669, #4670, #4671 -- Fixed a group of ReST markup errors. Thanks, Richard House.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/AUTHORS

    r5525 r5537  
    123123    Kieran Holland <http://www.kieranholland.com> 
    124124    Sung-Jin Hong <serialx.net@gmail.com> 
     125    Richard House <Richard.House@i-logue.com> 
    125126    Robert Rock Howard <http://djangomojo.com/> 
    126127    Jason Huggins <http://www.jrandolph.com/blog/> 
  • django/trunk/docs/authentication.txt

    r5490 r5537  
    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, 
  • django/trunk/docs/faq.txt

    r5519 r5537  
    105105`Wilson Miner`_ 
    106106    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, or 
     107    interactive designer for `Apple`_. Don't ask him what he's working on, or 
    108108    he'll have to kill you. He lives in San Francisco. 
    109109 
  • django/trunk/docs/generic_views.txt

    r5406 r5537  
    755755    * ``previous``: The previous page number, as an integer. This is 1-based. 
    756756 
    757     * `last_on_page`: The number of the 
     757    * ``last_on_page``: The number of the 
    758758      last result on the current page. This is 1-based. 
    759759 
    760     * `first_on_page`: The number of the 
     760    * ``first_on_page``: The number of the 
    761761      first result on the current page. This is 1-based. 
    762762 
  • django/trunk/docs/templates_python.txt

    r5511 r5537  
    343343    * ``user`` -- An ``auth.User`` instance representing the currently 
    344344      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`_
    346346 
    347347    * ``messages`` -- A list of messages (as strings) for the currently