conf.py

  1# -*- coding: utf-8 -*-
  2
  3# Default settings
  4project = 'Test Builds'
  5extensions = [
  6    'sphinx_autorun',
  7]
  8
  9latex_engine = 'xelatex'  # allow us to build Unicode chars
 10
 11
 12# Include all your settings here
 13html_theme = 'sphinx_rtd_theme'
 14
 15
 16
 17
 18###########################################################################
 19#          auto-created readthedocs.org specific configuration            #
 20###########################################################################
 21
 22
 23#
 24# The following code was added during an automated build on readthedocs.org
 25# It is auto created and injected for every build. The result is based on the
 26# conf.py.tmpl file found in the readthedocs.org codebase:
 27# https://github.com/rtfd/readthedocs.org/blob/main/readthedocs/doc_builder/templates/doc_builder/conf.py.tmpl
 28#
 29# Note: this file shouldn't rely on extra dependencies.
 30
 31import importlib
 32import sys
 33import os.path
 34
 35# Borrowed from six.
 36PY3 = sys.version_info[0] == 3
 37string_types = str if PY3 else basestring
 38
 39from sphinx import version_info
 40
 41# Get suffix for proper linking to GitHub
 42# This is deprecated in Sphinx 1.3+,
 43# as each page can have its own suffix
 44if globals().get('source_suffix', False):
 45    if isinstance(source_suffix, string_types):
 46        SUFFIX = source_suffix
 47    elif isinstance(source_suffix, (list, tuple)):
 48        # Sphinx >= 1.3 supports list/tuple to define multiple suffixes
 49        SUFFIX = source_suffix[0]
 50    elif isinstance(source_suffix, dict):
 51        # Sphinx >= 1.8 supports a mapping dictionary for multiple suffixes
 52        SUFFIX = list(source_suffix.keys())[0]  # make a ``list()`` for py2/py3 compatibility
 53    else:
 54        # default to .rst
 55        SUFFIX = '.rst'
 56else:
 57    SUFFIX = '.rst'
 58
 59# Add RTD Static Path. Add to the end because it overwrites previous files.
 60if not 'html_static_path' in globals():
 61    html_static_path = []
 62if os.path.exists('_static'):
 63    html_static_path.append('_static')
 64
 65# Define this variable in case it's not defined by the user.
 66# It defaults to `alabaster` which is the default from Sphinx.
 67# https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_theme
 68html_theme = globals().get('html_theme', 'alabaster')
 69
 70#Add project information to the template context.
 71context = {
 72    'html_theme': html_theme,
 73    'current_version': "latest",
 74    'version_slug': "latest",
 75    'MEDIA_URL': "https://media.readthedocs.org/",
 76    'STATIC_URL': "https://assets.readthedocs.org/static/",
 77    'PRODUCTION_DOMAIN': "readthedocs.org",
 78    'proxied_static_path': "/_/static/",
 79    'versions': [
 80    ("latest", "/en/latest/"),
 81    ("stable", "/en/stable/"),
 82    ("environment-variables", "/en/environment-variables/"),
 83    ],
 84    'downloads': [ 
 85    ],
 86    'subprojects': [ 
 87    ],
 88    'slug': 'test-builds-sv',
 89    'name': u'test-builds-sv',
 90    'rtd_language': u'en',
 91    'programming_language': u'words',
 92    'canonical_url': '',
 93    'analytics_code': 'None',
 94    'single_version': False,
 95    'conf_py_path': '/docs/',
 96    'api_host': 'https://readthedocs.org',
 97    'github_user': 'rtfd',
 98    'proxied_api_host': '/_',
 99    'github_repo': 'test-builds',
100    'github_version': 'master',
101    'display_github': True,
102    'bitbucket_user': 'None',
103    'bitbucket_repo': 'None',
104    'bitbucket_version': 'master',
105    'display_bitbucket': False,
106    'gitlab_user': 'None',
107    'gitlab_repo': 'None',
108    'gitlab_version': 'master',
109    'display_gitlab': False,
110    'READTHEDOCS': True,
111    'using_theme': (html_theme == "default"),
112    'new_theme': (html_theme == "sphinx_rtd_theme"),
113    'source_suffix': SUFFIX,
114    'ad_free': False,
115    'docsearch_disabled': False,
116    'user_analytics_code': '',
117    'global_analytics_code': 'UA-17997319-1',
118    'commit': '88245884',
119}
120
121# For sphinx >=1.8 we can use html_baseurl to set the canonical URL.
122# https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_baseurl
123if version_info >= (1, 8):
124    if not globals().get('html_baseurl'):
125        html_baseurl = context['canonical_url']
126    context['canonical_url'] = None
127
128
129
130
131
132if 'html_context' in globals():
133    for key in context:
134        if key not in html_context:
135            html_context[key] = context[key]
136else:
137    html_context = context
138
139# Add custom RTD extension
140if 'extensions' in globals():
141    # Insert at the beginning because it can interfere
142    # with other extensions.
143    # See https://github.com/rtfd/readthedocs.org/pull/4054
144    extensions.insert(0, "readthedocs_ext.readthedocs")
145else:
146    extensions = ["readthedocs_ext.readthedocs"]
147
148# Add External version warning banner to the external version documentation
149if 'branch' == 'external':
150    extensions.insert(1, "readthedocs_ext.external_version_warning")
151    readthedocs_vcs_url = 'None'
152    readthedocs_build_url = 'https://readthedocs.org/projects/test-builds-sv/builds/22271569/'
153
154project_language = 'en'
155
156# User's Sphinx configurations
157language_user = globals().get('language', None)
158latex_engine_user = globals().get('latex_engine', None)
159latex_elements_user = globals().get('latex_elements', None)
160
161# Remove this once xindy gets installed in Docker image and XINDYOPS
162# env variable is supported
163# https://github.com/rtfd/readthedocs-docker-images/pull/98
164latex_use_xindy = False
165
166chinese = any([
167    language_user in ('zh_CN', 'zh_TW'),
168    project_language in ('zh_CN', 'zh_TW'),
169])
170
171japanese = any([
172    language_user == 'ja',
173    project_language == 'ja',
174])
175
176if chinese:
177    latex_engine = latex_engine_user or 'xelatex'
178
179    latex_elements_rtd = {
180        'preamble': '\\usepackage[UTF8]{ctex}\n',
181    }
182    latex_elements = latex_elements_user or latex_elements_rtd
183elif japanese:
184    latex_engine = latex_engine_user or 'platex'
185
186# Make sure our build directory is always excluded
187exclude_patterns = globals().get('exclude_patterns', [])
188exclude_patterns.extend(['_build'])