]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
docs: Remove crud from conf.py
authorStephen Finucane <stephen@that.guru>
Sat, 27 Oct 2018 00:36:40 +0000 (01:36 +0100)
committerStephen Finucane <stephen@that.guru>
Tue, 29 Jan 2019 09:35:08 +0000 (09:35 +0000)
Most of this was removed in a previous release but there is yet more to
go. These values are all (a) defaults or (b) never triggered. Remove
them.

Signed-off-by: Stephen Finucane <stephen@that.guru>
docs/conf.py

index e0d8a2f7855f6239ceb2838fb58d9d351b394f2e..98c7aa39fd66469567319d5074897dadeb39d318 100644 (file)
@@ -5,12 +5,6 @@
 import os
 import sys
 
-try:
-    import sphinx_rtd_theme
-    has_rtd_theme = True
-except ImportError:
-    has_rtd_theme = False
-
 PATCHWORK_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
 sys.path.insert(0, PATCHWORK_DIR)
 
@@ -28,17 +22,8 @@ needs_sphinx = '1.5'
 # ones.
 extensions = ['sphinx.ext.todo', 'reno.sphinxext']
 
-if has_rtd_theme:
-    html_theme = 'sphinx_rtd_theme'
-
-# Add any paths that contain templates here, relative to this directory.
-templates_path = []
-
-# The suffix(es) of source filenames.
-# You can specify multiple suffix as a list of string:
-#
-# source_suffix = ['.rst', '.md']
-source_suffix = '.rst'
+# The theme to use for HTML and HTML Help pages.
+html_theme = 'sphinx_rtd_theme'
 
 # The master toctree document.
 master_doc = 'index'
@@ -57,18 +42,6 @@ version = '.'.join((str(x) for x in VERSION[:3]))
 # The full version, including alpha/beta/rc tags.
 release = '.'.join((str(x) for x in VERSION))
 
-# The language for content autogenerated by Sphinx. Refer to documentation
-# for a list of supported languages.
-#
-# This is also used if you do content translation via gettext catalogs.
-# Usually you set "language" from the command line for these cases.
-language = None
-
-# List of patterns, relative to source directory, that match files and
-# directories to ignore when looking for source files.
-# This patterns also effect to html_static_path and html_extra_path
-exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
-
 # The name of the Pygments (syntax highlighting) style to use.
 pygments_style = 'sphinx'