docs: Replace links to Django 1.11 docs with 2.2 links.

This commit is contained in:
Mateusz Mandera 2020-02-19 20:31:24 +01:00 committed by Tim Abbott
parent b1608a51db
commit 7814f52d45
8 changed files with 10 additions and 10 deletions

View File

@ -5,7 +5,7 @@ line. To help with this, Zulip ships with over 100 command-line tools
implemented using the [Django management commands implemented using the [Django management commands
framework][django-management]. framework][django-management].
[django-management]: https://docs.djangoproject.com/en/1.11/ref/django-admin/#django-admin-and-manage-py [django-management]: https://docs.djangoproject.com/en/2.2/ref/django-admin/#django-admin-and-manage-py
## Running management commands ## Running management commands

View File

@ -179,7 +179,7 @@ a new view:
* The time when the browser was idle again after switching views * The time when the browser was idle again after switching views
(intended to catch issues where we generate a lot of deferred work). (intended to catch issues where we generate a lot of deferred work).
[django-errors]: https://docs.djangoproject.com/en/1.11/howto/error-reporting/ [django-errors]: https://docs.djangoproject.com/en/2.2/howto/error-reporting/
[python-logging]: https://docs.python.org/3/library/logging.html [python-logging]: https://docs.python.org/3/library/logging.html
[django-logging]: https://docs.djangoproject.com/en/1.11/topics/logging/ [django-logging]: https://docs.djangoproject.com/en/2.2/topics/logging/
[sentry]: https://sentry.io [sentry]: https://sentry.io

View File

@ -56,4 +56,4 @@ project.
functions used by the UI are maintained to correctly live-update the functions used by the UI are maintained to correctly live-update the
UI if needed. UI if needed.
[django-docs]: https://docs.djangoproject.com/en/1.11/howto/custom-management-commands/ [django-docs]: https://docs.djangoproject.com/en/2.2/howto/custom-management-commands/

View File

@ -25,7 +25,7 @@ from shareable configuration.
## Server settings ## Server settings
Zulip uses the [Django settings Zulip uses the [Django settings
system](https://docs.djangoproject.com/en/1.11/topics/settings/), which system](https://docs.djangoproject.com/en/2.2/topics/settings/), which
means that the settings files are Python programs that set a lot of means that the settings files are Python programs that set a lot of
variables with all-capital names like EMAIL_GATEWAY_PATTERN. You can variables with all-capital names like EMAIL_GATEWAY_PATTERN. You can
access these anywhere in the Zulip Django code using e.g.: access these anywhere in the Zulip Django code using e.g.:
@ -123,7 +123,7 @@ accessed in initialization of Django (or Zulip) internals
(e.g. `DATABASES`). See the [Django docs on overriding settings in (e.g. `DATABASES`). See the [Django docs on overriding settings in
tests][django-test-settings] for more details. tests][django-test-settings] for more details.
[django-test-settings]: https://docs.djangoproject.com/en/1.11/topics/testing/tools/#overriding-settings [django-test-settings]: https://docs.djangoproject.com/en/2.2/topics/testing/tools/#overriding-settings
## Realm settings ## Realm settings

View File

@ -20,7 +20,7 @@ tests, use Django's tooling.
Zulip's [directory structure](../overview/directory-structure.md) Zulip's [directory structure](../overview/directory-structure.md)
will also be helpful to review when creating a new feature. Many will also be helpful to review when creating a new feature. Many
aspects of the structure will be familiar to Django developers. Visit aspects of the structure will be familiar to Django developers. Visit
[Django's documentation](https://docs.djangoproject.com/en/1.11/#index-first-steps) [Django's documentation](https://docs.djangoproject.com/en/2.2/#index-first-steps)
for more information about how Django projects are typically for more information about how Django projects are typically
organized. And finally, the organized. And finally, the
[message sending](../subsystems/sending-messages.md) documentation on [message sending](../subsystems/sending-messages.md) documentation on

View File

@ -312,7 +312,7 @@ STATSD_HOST = ''
# Configuration for JWT auth. # Configuration for JWT auth.
JWT_AUTH_KEYS = {} # type: Dict[str, str] JWT_AUTH_KEYS = {} # type: Dict[str, str]
# https://docs.djangoproject.com/en/1.11/ref/settings/#std:setting-SERVER_EMAIL # https://docs.djangoproject.com/en/2.2/ref/settings/#std:setting-SERVER_EMAIL
# Django setting for what from address to use in error emails. # Django setting for what from address to use in error emails.
SERVER_EMAIL = ZULIP_ADMINISTRATOR SERVER_EMAIL = ZULIP_ADMINISTRATOR
# Django setting for who receives error emails. # Django setting for who receives error emails.

View File

@ -42,7 +42,7 @@ EXTERNAL_HOST = 'zulip.example.com'
# representing the host/domain names that your users can enter in # representing the host/domain names that your users can enter in
# their browsers to access Zulip. This is a security measure; for # their browsers to access Zulip. This is a security measure; for
# details, see the Django documentation: # details, see the Django documentation:
# https://docs.djangoproject.com/en/1.11/ref/settings/#allowed-hosts # https://docs.djangoproject.com/en/2.2/ref/settings/#allowed-hosts
# #
# Zulip automatically adds to this list 'localhost', '127.0.0.1', and # Zulip automatically adds to this list 'localhost', '127.0.0.1', and
# patterns representing EXTERNAL_HOST and subdomains of it. If you are # patterns representing EXTERNAL_HOST and subdomains of it. If you are

View File

@ -221,7 +221,7 @@ SILENCED_SYSTEM_CHECKS = [
# `unique=True`. For us this is `email`, and it's unique only per-realm. # `unique=True`. For us this is `email`, and it's unique only per-realm.
# Per Django docs, this is perfectly fine so long as our authentication # Per Django docs, this is perfectly fine so long as our authentication
# backends support the username not being unique; and they do. # backends support the username not being unique; and they do.
# See: https://docs.djangoproject.com/en/1.11/topics/auth/customizing/#django.contrib.auth.models.CustomUser.USERNAME_FIELD # See: https://docs.djangoproject.com/en/2.2/topics/auth/customizing/#django.contrib.auth.models.CustomUser.USERNAME_FIELD
"auth.W004", "auth.W004",
# urls.W003 warns against using colons in the name in url(..., name) because colons are used # urls.W003 warns against using colons in the name in url(..., name) because colons are used
# for namespaces. We need to override a url entry in the social: namespace, so we use # for namespaces. We need to override a url entry in the social: namespace, so we use