summaryrefslogtreecommitdiff
path: root/docs/authentication.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-01-11 00:11:29 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-01-11 00:11:29 +0000
commit786e5477b70e34a502d1b0dd8fbf59926699e480 (patch)
tree2778a2e490ddaff6c5e45de8f4007afe0e953d1c /docs/authentication.txt
parent7573756e18b813a3aa388ff031e3167aa4665c15 (diff)
Removed 'Only in Django development version' messages from the docs, because frozen docs for version 0.90 are now available
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1898 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/authentication.txt')
-rw-r--r--docs/authentication.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 3fdae3adde..b784242f55 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -170,8 +170,8 @@ Change a password with ``set_password()``::
Passwords
---------
-**This only applies to the Django development version.** Previous versions,
-such as Django 0.90, used simple MD5 hashes without password salts.
+Previous versions, such as Django 0.90, used simple MD5 hashes without password
+salts.
The ``password`` field of a ``User`` object is a string in this format::
@@ -314,9 +314,8 @@ Here's the same thing, using Python 2.4's decorator syntax::
Note that ``user_passes_test`` does not automatically check that the ``User``
is not anonymous.
-**New in the Django development version**: ``user_passes_test()`` takes an
-optional ``login_url`` argument, which lets you specify the URL for your login
-page (``/accounts/login/`` by default).
+``user_passes_test()`` takes an optional ``login_url`` argument, which lets you
+specify the URL for your login page (``/accounts/login/`` by default).
Example in Python 2.3 syntax::