From 29aaf20a114060398a48cd9822c796817d3d8b80 Mon Sep 17 00:00:00 2001 From: igo95862 Date: Sun, 16 May 2021 16:12:51 +0300 Subject: [PATCH] doc: Upgraded some of sphinx-doc.org links to HTTPS Seems like that link is used in some tests and code so upgrading it outside documentation might break something --- doc/conf.py | 2 +- doc/make.bat | 2 +- doc/usage/configuration.rst | 2 +- doc/usage/extensions/graphviz.rst | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 8ee97742ede..add9e8d6158 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -35,7 +35,7 @@ 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 4bc6ddb9afb..fb183035edd 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 cf528281836..7aafbff1fb3 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 32cfcce306b..e90231a1c17 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 b669afc00e3..2538952e376 100644 --- a/setup.py +++ b/setup.py @@ -173,7 +173,7 @@ def _run_domain_js(self, domain): 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',