mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Fixed #9477 -- Removed and edited a bunch of references to "development
version". Some were replaced with versionadded or versionchanged directives. Other, more minor ones, were removed altogether. Based on a patch from James Bennett. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
06f89325e1
commit
644ad9073f
11 changed files with 30 additions and 61 deletions
|
@ -320,8 +320,10 @@ Hashtype is either ``sha1`` (default), ``md5`` or ``crypt`` -- the algorithm
|
|||
used to perform a one-way hash of the password. Salt is a random string used
|
||||
to salt the raw password to create the hash. Note that the ``crypt`` method is
|
||||
only supported on platforms that have the standard Python ``crypt`` module
|
||||
available, and ``crypt`` support is only available in the Django development
|
||||
version.
|
||||
available.
|
||||
|
||||
.. versionadded:: 1.0
|
||||
Support for the ``crypt`` module is new in Django 1.0.
|
||||
|
||||
For example::
|
||||
|
||||
|
@ -626,7 +628,6 @@ The login_required decorator
|
|||
def my_view(request):
|
||||
# ...
|
||||
|
||||
In the Django development version,
|
||||
:func:`~django.contrib.auth.decorators.login_required` also takes an
|
||||
optional ``redirect_field_name`` parameter. Example::
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue