Skip to content

Commit 64982cc

Browse files
committed
Updated Wikipedia links to use https
1 parent 18f3d4c commit 64982cc

38 files changed

Lines changed: 66 additions & 66 deletions

django/conf/global_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
ALLOWED_HOSTS = []
3535

3636
# Local time zone for this installation. All choices can be found here:
37-
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name (although not all
37+
# https://en.wikipedia.org/wiki/List_of_tz_zones_by_name (although not all
3838
# systems may support all possibilities). When USE_TZ is True, this is
3939
# interpreted as the default user time zone.
4040
TIME_ZONE = 'America/Chicago'

django/middleware/clickjacking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class XFrameOptionsMiddleware(object):
2424
clickjacking protection techniques should be used if protection in those
2525
browsers is required.
2626
27-
http://en.wikipedia.org/wiki/Clickjacking#Server_and_client
27+
https://en.wikipedia.org/wiki/Clickjacking#Server_and_client
2828
"""
2929
def process_response(self, request, response):
3030
# Don't set it if it's already in the response

django/utils/lru_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def lru_cache(maxsize=100, typed=False):
5858
f.cache_info(). Clear the cache and statistics with f.cache_clear().
5959
Access the underlying function with f.__wrapped__.
6060
61-
See: http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
61+
See: https://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
6262
6363
"""
6464

docs/faq/general.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Django is pronounced **JANG**-oh. Rhymes with FANG-oh. The "D" is silent.
4040

4141
We've also recorded an `audio clip of the pronunciation`_.
4242

43-
.. _Django Reinhardt: http://en.wikipedia.org/wiki/Django_Reinhardt
43+
.. _Django Reinhardt: https://en.wikipedia.org/wiki/Django_Reinhardt
4444
.. _audio clip of the pronunciation: http://red-bean.com/~adrian/django_pronunciation.mp3
4545

4646
Is Django stable?

docs/glossary.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Glossary
3737
`Model-view-controller`__; a software pattern. Django :ref:`follows MVC
3838
to some extent <faq-mtv>`.
3939

40-
__ http://en.wikipedia.org/wiki/Model-view-controller
40+
__ https://en.wikipedia.org/wiki/Model-view-controller
4141

4242
project
4343
A Python package -- i.e. a directory of code -- that contains all the

docs/howto/custom-model-fields.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ something like this::
4848

4949
# ... (other possibly useful methods omitted) ...
5050

51-
.. _Bridge: http://en.wikipedia.org/wiki/Contract_bridge
51+
.. _Bridge: https://en.wikipedia.org/wiki/Contract_bridge
5252

5353
This is just an ordinary Python class, with nothing Django-specific about it.
5454
We'd like to be able to do things like this in our models (we assume the

docs/howto/error-reporting.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ control which information should be filtered out of error reports in a
140140
production environment (that is, where :setting:`DEBUG` is set to ``False``):
141141
:func:`sensitive_variables` and :func:`sensitive_post_parameters`.
142142

143-
.. _`full traceback`: http://en.wikipedia.org/wiki/Stack_trace
144-
.. _`traceback frame`: http://en.wikipedia.org/wiki/Stack_frame
143+
.. _`full traceback`: https://en.wikipedia.org/wiki/Stack_trace
144+
.. _`traceback frame`: https://en.wikipedia.org/wiki/Stack_frame
145145

146146
.. function:: sensitive_variables(*variables)
147147

docs/internals/team.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ team <core-team>`.
8383
as a freelance developer.
8484

8585
.. _luke plant: http://lukeplant.me.uk/
86-
.. _michael meeks: http://en.wikipedia.org/wiki/Michael_Meeks_(software)
86+
.. _michael meeks: https://en.wikipedia.org/wiki/Michael_Meeks_(software)
8787

8888
`Russell Keith-Magee`_
8989
Russell studied physics as an undergraduate, and studied neural networks for
@@ -651,7 +651,7 @@ Joseph Kocherhans
651651

652652
Joseph lives in Chicago, USA.
653653

654-
.. _charango: http://en.wikipedia.org/wiki/Charango
654+
.. _charango: https://en.wikipedia.org/wiki/Charango
655655

656656
`Gary Wilson`_
657657
Gary starting contributing patches to Django in 2006 while developing Web

docs/intro/contributing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ is not very helpful at preventing that bug from reoccurring down the road.
320320

321321
Now for our hands-on example.
322322

323-
__ http://en.wikipedia.org/wiki/Test-driven_development
323+
__ https://en.wikipedia.org/wiki/Test-driven_development
324324

325325
Writing some tests for ticket #24788
326326
------------------------------------

docs/intro/overview.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Although you can use Django without a database, it comes with an
1919
`object-relational mapper`_ in which you describe your database layout in Python
2020
code.
2121

22-
.. _object-relational mapper: http://en.wikipedia.org/wiki/Object-relational_mapping
22+
.. _object-relational mapper: https://en.wikipedia.org/wiki/Object-relational_mapping
2323

2424
The :doc:`data-model syntax </topics/db/models>` offers many rich ways of
2525
representing your models -- so far, it's been solving many years' worth of

0 commit comments

Comments
 (0)