Update links in docs to point at stable Django version

pull/5679/head
Pete Andrew 2019-11-26 09:05:25 +00:00 zatwierdzone przez LB
rodzic d65532dd0f
commit abd8320dc3
6 zmienionych plików z 7 dodań i 4 usunięć

Wyświetl plik

@ -14,6 +14,7 @@ Changelog
* Cloudflare frontend cache invalidation requests are now sent in chunks of 30 to fit within API limits (Tom Usher)
* Added `ancestors` field to pages endpoint in admin API (Karl Hobley)
* Removed Django admin management of `Page` & `Site` models (Andreas Bernacca)
* Cleaned up Django docs URLs in documentation (Pete Andrew)
* Fix: Rename documents listing column 'uploaded' to 'created' (LB (Ben Johnston))
* Fix: Submenu items longer then the page height are no longer broken by the submenu footer (Igor van Spengen)
* Fix: Unbundle the l18n library as it was bundled to avoid installation errors which have been resolved (Matt Westcott)

Wyświetl plik

@ -424,6 +424,7 @@ Contributors
* Andrey Smirnov
* Tim Gates
* Timothy Bautista
* Pete Andrew
Translators
===========

Wyświetl plik

@ -298,7 +298,7 @@ These two files should reside in your project directory (``myproject/myproject/`
MANAGERS = ADMINS
# Default to dummy email backend. Configure dev/production/local backend
# as per https://docs.djangoproject.com/en/dev/topics/email/#email-backends
# as per https://docs.djangoproject.com/en/stable/topics/email/#email-backends
EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend'
# Hosts/domain names that are valid for this site; required if DEBUG is False
@ -314,7 +314,7 @@ These two files should reside in your project directory (``myproject/myproject/`
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See https://docs.djangoproject.com/en/dev/topics/logging for
# See https://docs.djangoproject.com/en/stable/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
'version': 1,

Wyświetl plik

@ -85,4 +85,4 @@ Add the wagtail settings to your project to reference the user form additions:
WAGTAIL_USER_CUSTOM_FIELDS = ['country', 'status']
.. _AUTH_USER_MODEL: https://docs.djangoproject.com/en/dev/topics/auth/customizing/#substituting-a-custom-user-model
.. _AUTH_USER_MODEL: https://docs.djangoproject.com/en/stable/topics/auth/customizing/#substituting-a-custom-user-model

Wyświetl plik

@ -162,5 +162,5 @@ Filling in the ``path`` / ``numchild`` / ``depth`` fields is necessary in order
The `Treebeard docs`_ might help in understanding how this works.
.. _dumpdata: https://docs.djangoproject.com/en/2.0/ref/django-admin/#django-admin-dumpdata
.. _dumpdata: https://docs.djangoproject.com/en/stable/ref/django-admin/#django-admin-dumpdata
.. _Treebeard docs: https://django-treebeard.readthedocs.io/en/latest/mp_tree.html

Wyświetl plik

@ -23,6 +23,7 @@ Other features
* Cloudflare frontend cache invalidation requests are now sent in chunks of 30 to fit within API limits (Tom Usher)
* Added ``ancestors`` field to pages endpoint in admin API (Karl Hobley)
* Removed Django admin management of ``Page`` & ``Site`` models (Andreas Bernacca)
* Cleaned up Django docs URLs in documentation (Pete Andrew)
Bug fixes