summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2023-11-28 16:57:48 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-29 11:21:22 +0100
commit272ceb9584a68c7df464e8633c02eb4f997da092 (patch)
tree1435754076ee8c52358e0dc702cf18d63b3dd04d /docs/ref/contrib
parent134cde8415b3a9118262ef4ea34cf798c258be03 (diff)
Refs #25778 -- Updated some links and references to HTTPS.
Diffstat (limited to 'docs/ref/contrib')
-rw-r--r--docs/ref/contrib/gis/gdal.txt2
-rw-r--r--docs/ref/contrib/sitemaps.txt2
-rw-r--r--docs/ref/contrib/sites.txt2
-rw-r--r--docs/ref/contrib/syndication.txt4
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/ref/contrib/gis/gdal.txt b/docs/ref/contrib/gis/gdal.txt
index 2b8f6d29da..c0221a17a9 100644
--- a/docs/ref/contrib/gis/gdal.txt
+++ b/docs/ref/contrib/gis/gdal.txt
@@ -1980,7 +1980,7 @@ For instance:
# Read a raster as a file object from a remote source.
>>> from urllib.request import urlopen
- >>> dat = urlopen("http://example.com/raster.tif").read()
+ >>> dat = urlopen("https://example.com/raster.tif").read()
# Instantiate a raster from the bytes object.
>>> rst = GDALRaster(dat)
# The name starts with /vsimem/, indicating that the raster lives in the
diff --git a/docs/ref/contrib/sitemaps.txt b/docs/ref/contrib/sitemaps.txt
index de8d532180..4f32c06bd9 100644
--- a/docs/ref/contrib/sitemaps.txt
+++ b/docs/ref/contrib/sitemaps.txt
@@ -568,7 +568,7 @@ generate a Google News compatible sitemap:
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
- xmlns:news="http://www.google.com/schemas/sitemap-news/0.9">
+ xmlns:news="https://www.google.com/schemas/sitemap-news/0.9">
{% spaceless %}
{% for url in urlset %}
<url>
diff --git a/docs/ref/contrib/sites.txt b/docs/ref/contrib/sites.txt
index 17f8194814..d69e4c8e81 100644
--- a/docs/ref/contrib/sites.txt
+++ b/docs/ref/contrib/sites.txt
@@ -246,7 +246,7 @@ Getting the current domain for full URLs
Django's ``get_absolute_url()`` convention is nice for getting your objects'
URL without the domain name, but in some cases you might want to display the
-full URL -- with ``http://`` and the domain and everything -- for an object.
+full URL -- with ``https://`` and the domain and everything -- for an object.
To do this, you can use the sites framework. An example:
.. code-block:: pycon
diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt
index a3f678b1f0..d9672c5b00 100644
--- a/docs/ref/contrib/syndication.txt
+++ b/docs/ref/contrib/syndication.txt
@@ -532,7 +532,7 @@ This example illustrates all possible attributes and methods for a
# AUTHOR LINK --One of the following three is optional. The framework
# looks for them in this order. In each case, the URL should include
- # the "http://" and domain name.
+ # the scheme (such as "https://") and domain name.
def author_link(self, obj):
"""
@@ -735,7 +735,7 @@ This example illustrates all possible attributes and methods for a
# ITEM AUTHOR LINK -- One of the following three is optional. The
# framework looks for them in this order. In each case, the URL should
- # include the "http://" and domain name.
+ # include the scheme (such as "https://") and domain name.
#
# If you specify this, you must specify item_author_name.