Skip to content

Commit

Permalink
Fixed #4668, #4669, #4670, #4671 -- Fixed a group of ReST markup erro…
Browse files Browse the repository at this point in the history
…rs. Thanks, Richard House.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5537 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Jun 25, 2007
1 parent 17145ee commit 85f6f15
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -122,6 +122,7 @@ answer newbie questions, and generally made Django that much better:
Ian Holsman <http://feh.holsman.net/>
Kieran Holland <http://www.kieranholland.com>
Sung-Jin Hong <serialx.net@gmail.com>
Richard House <Richard.House@i-logue.com>
Robert Rock Howard <http://djangomojo.com/>
Jason Huggins <http://www.jrandolph.com/blog/>
Hyun Mi Ae
Expand Down
2 changes: 1 addition & 1 deletion docs/authentication.txt
Expand Up @@ -325,7 +325,7 @@ Manually checking a user's password

If you'd like to manually authenticate a user by comparing a
plain-text password to the hashed password in the database, use the
convenience function `django.contrib.auth.models.check_password`. It
convenience function ``django.contrib.auth.models.check_password``. It
takes two arguments: the plain-text password to check, and the full
value of a user's ``password`` field in the database to check against,
and returns ``True`` if they match, ``False`` otherwise.
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.txt
Expand Up @@ -104,7 +104,7 @@ Lawrence, Kansas, USA.

`Wilson Miner`_
Wilson's design-fu makes us all look like rock stars. By day, he's an
interactive designer for `Apple`. Don't ask him what he's working on, or
interactive designer for `Apple`_. Don't ask him what he's working on, or
he'll have to kill you. He lives in San Francisco.

On IRC, Wilson goes by ``wilsonian``.
Expand Down
4 changes: 2 additions & 2 deletions docs/generic_views.txt
Expand Up @@ -754,10 +754,10 @@ If the results are paginated, the context will contain these extra variables:

* ``previous``: The previous page number, as an integer. This is 1-based.

* `last_on_page`: The number of the
* ``last_on_page``: The number of the
last result on the current page. This is 1-based.

* `first_on_page`: The number of the
* ``first_on_page``: The number of the
first result on the current page. This is 1-based.

* ``pages``: The total number of pages, as an integer.
Expand Down
2 changes: 1 addition & 1 deletion docs/templates_python.txt
Expand Up @@ -342,7 +342,7 @@ If ``TEMPLATE_CONTEXT_PROCESSORS`` contains this processor, every

* ``user`` -- An ``auth.User`` instance representing the currently
logged-in user (or an ``AnonymousUser`` instance, if the client isn't
logged in). See the `user authentication docs`.
logged in). See the `user authentication docs`_.

* ``messages`` -- A list of messages (as strings) for the currently
logged-in user. Behind the scenes, this calls
Expand Down

0 comments on commit 85f6f15

Please sign in to comment.