summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/conf.py2
-rw-r--r--doc/make.bat2
-rw-r--r--doc/usage/configuration.rst2
-rw-r--r--doc/usage/extensions/graphviz.rst2
-rw-r--r--setup.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 8ee97742e..add9e8d61 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -35,7 +35,7 @@ htmlhelp_basename = 'Sphinxdoc'
epub_theme = 'epub'
epub_basename = 'sphinx'
epub_author = 'Georg Brandl'
-epub_publisher = 'http://sphinx-doc.org/'
+epub_publisher = 'https://sphinx-doc.org/'
epub_uid = 'web-site'
epub_scheme = 'url'
epub_identifier = epub_publisher
diff --git a/doc/make.bat b/doc/make.bat
index 4bc6ddb9a..fb183035e 100644
--- a/doc/make.bat
+++ b/doc/make.bat
@@ -19,7 +19,7 @@ if errorlevel 9009 (
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
- echo.http://sphinx-doc.org/
+ echo.https://sphinx-doc.org/
exit /b 1
)
diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst
index cf5282818..7aafbff1f 100644
--- a/doc/usage/configuration.rst
+++ b/doc/usage/configuration.rst
@@ -2596,7 +2596,7 @@ Options for the linkcheck builder
as follows::
linkcheck_ignore = [
- 'http://www.sphinx-doc.org/en/1.7/intro.html#'
+ 'https://www.sphinx-doc.org/en/1.7/intro.html#'
]
.. versionadded:: 1.5
diff --git a/doc/usage/extensions/graphviz.rst b/doc/usage/extensions/graphviz.rst
index 32cfcce30..e90231a1c 100644
--- a/doc/usage/extensions/graphviz.rst
+++ b/doc/usage/extensions/graphviz.rst
@@ -230,7 +230,7 @@ There are also these config values:
.. graphviz::
digraph example {
- a [label="sphinx", href="http://sphinx-doc.org", target="_top"];
+ a [label="sphinx", href="https://sphinx-doc.org", target="_top"];
b [label="other"];
a -> b;
}
diff --git a/setup.py b/setup.py
index b669afc00..2538952e3 100644
--- a/setup.py
+++ b/setup.py
@@ -173,7 +173,7 @@ else:
setup(
name='Sphinx',
version=sphinx.__version__,
- url='http://sphinx-doc.org/',
+ url='https://sphinx-doc.org/',
download_url='https://pypi.org/project/Sphinx/',
license='BSD',
author='Georg Brandl',