1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[4.1.x] Fixed docs build with sphinxcontrib-spelling 7.5.0+.

sphinxcontrib-spelling 7.5.0+ includes captions of figures in the set
of nodes for which the text is checked.

Backport of ac90529cc5 from main
This commit is contained in:
Mariusz Felisiak
2022-05-31 07:40:54 +02:00
parent d783ce3d8d
commit 6c0ee61797
31 changed files with 128 additions and 127 deletions

View File

@@ -347,7 +347,7 @@ modify the pattern to work with any algorithm or with a custom user model.
First, we'll add the custom hasher:
.. code-block:: python
:caption: accounts/hashers.py
:caption: ``accounts/hashers.py``
from django.contrib.auth.hashers import (
PBKDF2PasswordHasher, SHA1PasswordHasher,
@@ -367,7 +367,7 @@ First, we'll add the custom hasher:
The data migration might look something like:
.. code-block:: python
:caption: accounts/migrations/0002_migrate_sha1_passwords.py
:caption: ``accounts/migrations/0002_migrate_sha1_passwords.py``
from django.db import migrations
@@ -402,7 +402,7 @@ several thousand users, depending on the speed of your hardware.
Finally, we'll add a :setting:`PASSWORD_HASHERS` setting:
.. code-block:: python
:caption: mysite/settings.py
:caption: ``mysite/settings.py``
PASSWORD_HASHERS = [
'django.contrib.auth.hashers.PBKDF2PasswordHasher',