Commit 67907ed8 authored by Tim Graham's avatar Tim Graham
Browse files

Made identation of default setting docs more consistenct.

parent 37f7ef41
Loading
Loading
Loading
Loading
+30 −18
Original line number Diff line number Diff line
@@ -1297,8 +1297,10 @@ template files and initial SQL data files.

Default::

    ["django.core.files.uploadhandler.MemoryFileUploadHandler",
     "django.core.files.uploadhandler.TemporaryFileUploadHandler"]
    [
        'django.core.files.uploadhandler.MemoryFileUploadHandler',
        'django.core.files.uploadhandler.TemporaryFileUploadHandler',
    ]

A list of handlers to use for uploading. Changing this setting allows complete
customization -- even replacement -- of Django's upload process.
@@ -1796,8 +1798,10 @@ Example: ``"http://media.example.com/"``

Default::

    ['django.middleware.common.CommonMiddleware',
     'django.middleware.csrf.CsrfViewMiddleware']
    [
        'django.middleware.common.CommonMiddleware',
        'django.middleware.csrf.CsrfViewMiddleware',
    ]

A list of middleware classes to use. See :doc:`/topics/http/middleware`.

@@ -2657,13 +2661,17 @@ See :ref:`auth_password_storage`.

Default::

    ['django.contrib.auth.hashers.PBKDF2PasswordHasher',
    [
        'django.contrib.auth.hashers.PBKDF2PasswordHasher',
        'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher',
        'django.contrib.auth.hashers.BCryptSHA256PasswordHasher',
        'django.contrib.auth.hashers.BCryptPasswordHasher',
        'django.contrib.auth.hashers.SHA1PasswordHasher',
        'django.contrib.auth.hashers.MD5PasswordHasher',
        'django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher',
        'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher',
     'django.contrib.auth.hashers.CryptPasswordHasher']
        'django.contrib.auth.hashers.CryptPasswordHasher',
    ]

.. setting:: AUTH_PASSWORD_VALIDATORS

@@ -2736,11 +2744,13 @@ and :setting:`SESSION_COOKIE_HTTPONLY` when setting their cookies.

Default::

    {messages.DEBUG: 'debug',
    {
        messages.DEBUG: 'debug',
        messages.INFO: 'info',
        messages.SUCCESS: 'success',
        messages.WARNING: 'warning',
    messages.ERROR: 'error'}
        messages.ERROR: 'error',
    }

This sets the mapping of message level to message tag, which is typically
rendered as a CSS class in HTML. If you specify a value, it will extend
@@ -3082,8 +3092,10 @@ For an example, see :ref:`staticfiles-from-cdn`.

Default::

    ["django.contrib.staticfiles.finders.FileSystemFinder",
     "django.contrib.staticfiles.finders.AppDirectoriesFinder"]
    [
        'django.contrib.staticfiles.finders.FileSystemFinder',
        'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    ]

The list of finder backends that know how to find static files in
various locations.