Skip to content

Commit 0c67c6e

Browse files
committed
changing all django hard references to 2.2 to stable url
1 parent 1a35943 commit 0c67c6e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

content/pages/examples/django/django-apps-config-AppConfig.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ meta: Python code examples for the AppConfig class that is part of Django's djan
88

99

1010
[AppConfig](https://github.com/django/django/blob/master/django/apps/config.py)
11-
([documentation](https://docs.djangoproject.com/en/2.2/ref/applications/#django.apps.AppConfig))
11+
([documentation](https://docs.djangoproject.com/en/stable/ref/applications/#django.apps.AppConfig))
1212
represents an app for a [Django](/django.html) project, including
1313
metadata such as name, label and path.
1414

content/pages/examples/django/django-code-examples.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ and maintained by the developer community group known as
155155
[django-easy-timezones](https://github.com/Miserlou/django-easy-timezones)
156156
([project website](https://www.gun.io/blog/django-easy-timezones))
157157
is a Django
158-
[middleware](https://docs.djangoproject.com/en/2.2/topics/http/middleware/)
158+
[middleware](https://docs.djangoproject.com/en/stable/topics/http/middleware/)
159159
[code library](https://pypi.org/project/django-easy-timezones/)
160160
to simplify handling time data in your applications using
161161
users' geolocation data.

content/pages/examples/django/django-conf-settings-examples.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ file contains all of the configuration for a web application.
1616
[django-easy-timezones](https://github.com/Miserlou/django-easy-timezones)
1717
([project website](https://www.gun.io/blog/django-easy-timezones))
1818
is a [Django](/django.html)
19-
[middleware](https://docs.djangoproject.com/en/2.2/topics/http/middleware/)
19+
[middleware](https://docs.djangoproject.com/en/stable/topics/http/middleware/)
2020
[code library](https://pypi.org/project/django-easy-timezones/)
2121
to simplify handling time data in your applications using
2222
users' geolocation data.

content/pages/examples/django/django-db-operationalerror.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ meta: Python code examples for the OperationalError exception class that is part
88

99

1010
[OperationalError](https://github.com/django/django/blob/master/django/db/utils.py)
11-
([documentation](https://docs.djangoproject.com/en/2.2/ref/exceptions/#django.db.OperationalError))
11+
([documentation](https://docs.djangoproject.com/en/stable/ref/exceptions/#django.db.OperationalError))
1212
is one of many possible
1313
[Python exceptions](https://docs.python.org/3/tutorial/errors.html)
1414
thrown by the [Django](/django.html) [web framework](/web-frameworks.html)

content/pages/examples/django/django-dispatch-dispatcher-signal.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ from .utils import generate_username
8888
[django-easy-timezones](https://github.com/Miserlou/django-easy-timezones)
8989
([project website](https://www.gun.io/blog/django-easy-timezones))
9090
is a [Django](/django.html)
91-
[middleware](https://docs.djangoproject.com/en/2.2/topics/http/middleware/)
91+
[middleware](https://docs.djangoproject.com/en/stable/topics/http/middleware/)
9292
[code library](https://pypi.org/project/django-easy-timezones/)
9393
to simplify handling time data in your applications using
9494
users' geolocation data.

content/pages/examples/django/django-utils-timezone.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class Migration(migrations.Migration):
156156
[django-easy-timezones](https://github.com/Miserlou/django-easy-timezones)
157157
([project website](https://www.gun.io/blog/django-easy-timezones))
158158
is a [Django](/django.html)
159-
[middleware](https://docs.djangoproject.com/en/2.2/topics/http/middleware/)
159+
[middleware](https://docs.djangoproject.com/en/stable/topics/http/middleware/)
160160
[code library](https://pypi.org/project/django-easy-timezones/)
161161
to simplify handling time data in your applications using
162162
users' geolocation data.

0 commit comments

Comments
 (0)