summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-08-08 12:02:32 +0200
committerClaude Paroz <claude@2xlibre.net>2015-08-08 12:02:32 +0200
commit64982cc2fb13ebc45982c64e25fdb7865e6d2499 (patch)
tree06e65f4201fc67665773350457dfa8ee681b22b5 /django
parent18f3d4c1bdb4039b13e0b9445553561651dbfa8f (diff)
Updated Wikipedia links to use https
Diffstat (limited to 'django')
-rw-r--r--django/conf/global_settings.py2
-rw-r--r--django/middleware/clickjacking.py2
-rw-r--r--django/utils/lru_cache.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py
index f0055a9496..280bfeb167 100644
--- a/django/conf/global_settings.py
+++ b/django/conf/global_settings.py
@@ -34,7 +34,7 @@ INTERNAL_IPS = []
ALLOWED_HOSTS = []
# Local time zone for this installation. All choices can be found here:
-# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name (although not all
+# https://en.wikipedia.org/wiki/List_of_tz_zones_by_name (although not all
# systems may support all possibilities). When USE_TZ is True, this is
# interpreted as the default user time zone.
TIME_ZONE = 'America/Chicago'
diff --git a/django/middleware/clickjacking.py b/django/middleware/clickjacking.py
index b9aaa035f1..acd0705703 100644
--- a/django/middleware/clickjacking.py
+++ b/django/middleware/clickjacking.py
@@ -24,7 +24,7 @@ class XFrameOptionsMiddleware(object):
clickjacking protection techniques should be used if protection in those
browsers is required.
- http://en.wikipedia.org/wiki/Clickjacking#Server_and_client
+ https://en.wikipedia.org/wiki/Clickjacking#Server_and_client
"""
def process_response(self, request, response):
# Don't set it if it's already in the response
diff --git a/django/utils/lru_cache.py b/django/utils/lru_cache.py
index 2ad69e66ba..3dae4507fc 100644
--- a/django/utils/lru_cache.py
+++ b/django/utils/lru_cache.py
@@ -58,7 +58,7 @@ except ImportError:
f.cache_info(). Clear the cache and statistics with f.cache_clear().
Access the underlying function with f.__wrapped__.
- See: http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
+ See: https://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
"""