2014-09-21 06:52:01 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2015-06-04 18:53:26 -04:00
|
|
|
# MicroPython documentation build configuration file, created by
|
2014-09-21 06:52:01 -04:00
|
|
|
# sphinx-quickstart on Sun Sep 21 11:42:03 2014.
|
|
|
|
#
|
|
|
|
# This file is execfile()d with the current directory set to its
|
|
|
|
# containing dir.
|
|
|
|
#
|
|
|
|
# Note that not all possible configuration values are present in this
|
|
|
|
# autogenerated file.
|
|
|
|
#
|
|
|
|
# All configuration values have a default; values that are commented out
|
|
|
|
# serve to show the default.
|
|
|
|
|
2019-07-04 02:19:56 -04:00
|
|
|
import json
|
2020-06-14 14:04:21 -04:00
|
|
|
import logging
|
2014-09-21 06:52:01 -04:00
|
|
|
import os
|
2020-06-14 13:56:22 -04:00
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import urllib.parse
|
2014-09-21 06:52:01 -04:00
|
|
|
|
2020-04-09 09:49:32 -04:00
|
|
|
import recommonmark
|
2016-10-19 13:22:31 -04:00
|
|
|
|
2014-09-21 06:52:01 -04:00
|
|
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
|
|
# add these directories to sys.path here. If the directory is relative to the
|
|
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
2018-02-27 21:08:49 -05:00
|
|
|
sys.path.insert(0, os.path.abspath('docs'))
|
2016-06-11 18:18:13 -04:00
|
|
|
sys.path.insert(0, os.path.abspath('.'))
|
2014-09-21 06:52:01 -04:00
|
|
|
|
2019-07-23 21:49:37 -04:00
|
|
|
import shared_bindings_matrix
|
|
|
|
|
2018-02-20 20:34:59 -05:00
|
|
|
master_doc = 'docs/index'
|
2016-01-03 14:52:49 -05:00
|
|
|
|
2019-07-04 02:19:56 -04:00
|
|
|
# Grab the JSON values to use while building the module support matrix
|
|
|
|
# in 'shared-bindings/index.rst'
|
2019-07-23 21:49:37 -04:00
|
|
|
|
2019-07-27 10:16:06 -04:00
|
|
|
#modules_support_matrix = shared_bindings_matrix.support_matrix_excluded_boards()
|
|
|
|
modules_support_matrix = shared_bindings_matrix.support_matrix_by_board()
|
2019-07-23 21:49:37 -04:00
|
|
|
|
2019-07-04 02:19:56 -04:00
|
|
|
html_context = {
|
|
|
|
'support_matrix': modules_support_matrix
|
|
|
|
}
|
|
|
|
|
2014-09-21 06:52:01 -04:00
|
|
|
# -- General configuration ------------------------------------------------
|
|
|
|
|
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
2016-10-18 20:42:47 -04:00
|
|
|
needs_sphinx = '1.3'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
|
|
# ones.
|
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
'sphinx.ext.doctest',
|
2019-04-16 19:40:16 -04:00
|
|
|
'sphinxcontrib.rsvgconverter',
|
2014-09-21 06:52:01 -04:00
|
|
|
'sphinx.ext.intersphinx',
|
|
|
|
'sphinx.ext.todo',
|
2019-07-04 02:19:56 -04:00
|
|
|
'sphinx.ext.coverage',
|
2019-07-28 16:59:26 -04:00
|
|
|
'rstjinja',
|
2020-04-09 09:49:32 -04:00
|
|
|
'recommonmark',
|
2014-09-21 06:52:01 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
2014-12-20 19:22:49 -05:00
|
|
|
templates_path = ['templates']
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# The suffix of source filenames.
|
2020-04-09 09:49:32 -04:00
|
|
|
source_suffix = {
|
|
|
|
'.rst': 'restructuredtext',
|
|
|
|
'.md': 'markdown',
|
|
|
|
}
|
2016-10-18 20:42:47 -04:00
|
|
|
|
2020-05-18 19:07:07 -04:00
|
|
|
subprocess.check_output(["make", "stubs"])
|
2020-05-12 20:15:28 -04:00
|
|
|
extensions.append('autoapi.extension')
|
|
|
|
|
|
|
|
autoapi_type = 'python'
|
|
|
|
# Uncomment this if debugging autoapi
|
2020-05-14 18:57:35 -04:00
|
|
|
autoapi_keep_files = True
|
|
|
|
autoapi_dirs = [os.path.join('circuitpython-stubs', x) for x in os.listdir('circuitpython-stubs')]
|
2020-05-12 20:15:28 -04:00
|
|
|
autoapi_add_toctree_entry = False
|
|
|
|
autoapi_options = ['members', 'undoc-members', 'private-members', 'show-inheritance', 'special-members', 'show-module-summary']
|
|
|
|
autoapi_template_dir = 'docs/autoapi/templates'
|
2020-05-14 18:57:35 -04:00
|
|
|
autoapi_python_use_implicit_namespaces = True
|
2020-06-14 12:11:44 -04:00
|
|
|
autoapi_root = "shared-bindings"
|
2014-09-21 06:52:01 -04:00
|
|
|
|
2020-06-14 14:04:21 -04:00
|
|
|
redirects_file = 'docs/redirects.txt'
|
|
|
|
|
2014-09-21 06:52:01 -04:00
|
|
|
# The encoding of source files.
|
|
|
|
#source_encoding = 'utf-8-sig'
|
|
|
|
|
|
|
|
# The master toctree document.
|
2015-06-10 17:29:56 -04:00
|
|
|
#master_doc = 'index'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# General information about the project.
|
2017-01-05 19:20:46 -05:00
|
|
|
project = 'Adafruit CircuitPython'
|
2020-05-12 20:15:28 -04:00
|
|
|
copyright = '2014-2020, MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
2017-01-05 19:20:46 -05:00
|
|
|
# These are overwritten on ReadTheDocs.
|
2014-09-21 06:52:01 -04:00
|
|
|
# The version info for the project you're documenting, acts as replacement for
|
|
|
|
# |version| and |release|, also used in various other places throughout the
|
|
|
|
# built documents.
|
|
|
|
#
|
2017-07-02 08:50:22 -04:00
|
|
|
# We don't follow "The short X.Y version" vs "The full version, including alpha/beta/rc tags"
|
|
|
|
# breakdown, so use the same version identifier for both to avoid confusion.
|
2017-08-25 22:17:07 -04:00
|
|
|
version = release = '0.0.0'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
#language = None
|
|
|
|
|
|
|
|
# There are two options for replacing |today|: either, you set today to some
|
|
|
|
# non-false value, then it is used:
|
|
|
|
#today = ''
|
|
|
|
# Else, today_fmt is used as the format for a strftime call.
|
|
|
|
#today_fmt = '%B %d, %Y'
|
|
|
|
|
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
2018-02-27 18:24:16 -05:00
|
|
|
exclude_patterns = ["**/build*",
|
2019-07-16 19:53:36 -04:00
|
|
|
".git",
|
2017-08-25 22:17:07 -04:00
|
|
|
".venv",
|
2018-10-09 07:57:42 -04:00
|
|
|
".direnv",
|
2020-05-12 20:15:28 -04:00
|
|
|
"docs/autoapi",
|
2018-02-20 20:34:59 -05:00
|
|
|
"docs/README.md",
|
2017-01-05 19:20:46 -05:00
|
|
|
"drivers",
|
|
|
|
"examples",
|
|
|
|
"extmod",
|
2017-08-23 17:24:38 -04:00
|
|
|
"frozen",
|
2017-01-05 19:20:46 -05:00
|
|
|
"lib",
|
2018-02-27 18:24:16 -05:00
|
|
|
"main.c",
|
2017-01-05 19:20:46 -05:00
|
|
|
"mpy-cross",
|
2018-02-07 16:07:57 -05:00
|
|
|
"ports/*/*.c",
|
|
|
|
"ports/*/*.h",
|
|
|
|
"ports/*/boards",
|
|
|
|
"ports/*/common-hal",
|
|
|
|
"ports/*/supervisor",
|
|
|
|
"ports/atmel-samd/asf4",
|
|
|
|
"ports/atmel-samd/asf4_conf",
|
2018-02-27 18:24:16 -05:00
|
|
|
"ports/atmel-samd/external_flash",
|
|
|
|
"ports/atmel-samd/freetouch",
|
2018-05-25 21:39:16 -04:00
|
|
|
"ports/atmel-samd/peripherals",
|
2018-02-07 16:07:57 -05:00
|
|
|
"ports/atmel-samd/QTouch",
|
2018-02-27 18:24:16 -05:00
|
|
|
"ports/atmel-samd/tools",
|
2020-01-13 07:33:23 -05:00
|
|
|
"ports/cxd56/mkspk",
|
2019-10-11 02:09:15 -04:00
|
|
|
"ports/cxd56/spresense-exported-sdk",
|
2020-04-17 19:23:28 -04:00
|
|
|
"ports/esp32s2/esp-idf",
|
|
|
|
"ports/esp32s2/peripherals",
|
2020-04-01 13:52:53 -04:00
|
|
|
"ports/litex/hw",
|
2018-02-07 16:07:57 -05:00
|
|
|
"ports/minimal",
|
2019-11-02 11:52:26 -04:00
|
|
|
"ports/mimxrt10xx/peripherals",
|
|
|
|
"ports/mimxrt10xx/sdk",
|
2018-02-08 13:47:17 -05:00
|
|
|
"ports/nrf/device",
|
2018-08-31 15:34:01 -04:00
|
|
|
"ports/nrf/bluetooth",
|
2018-02-07 16:07:57 -05:00
|
|
|
"ports/nrf/modules",
|
2018-06-21 01:33:27 -04:00
|
|
|
"ports/nrf/nrfx",
|
2018-09-01 00:29:36 -04:00
|
|
|
"ports/nrf/peripherals",
|
2018-07-12 04:13:56 -04:00
|
|
|
"ports/nrf/usb",
|
2020-03-12 17:01:14 -04:00
|
|
|
"ports/stm/st_driver",
|
2020-04-01 13:52:53 -04:00
|
|
|
"ports/stm/packages",
|
2020-03-11 18:32:32 -04:00
|
|
|
"ports/stm/peripherals",
|
|
|
|
"ports/stm/ref",
|
2018-02-07 16:07:57 -05:00
|
|
|
"ports/unix",
|
2017-01-05 19:20:46 -05:00
|
|
|
"py",
|
2018-02-20 20:34:59 -05:00
|
|
|
"shared-bindings/util.*",
|
2017-01-05 19:20:46 -05:00
|
|
|
"shared-module",
|
2018-02-27 18:24:16 -05:00
|
|
|
"supervisor",
|
2017-01-05 19:20:46 -05:00
|
|
|
"tests",
|
2018-02-07 16:07:57 -05:00
|
|
|
"tools"]
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# The reST default role (used for this markup: `text`) to use for all
|
|
|
|
# documents.
|
2017-06-24 17:57:44 -04:00
|
|
|
default_role = 'any'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
|
|
|
#add_function_parentheses = True
|
|
|
|
|
|
|
|
# If true, the current module name will be prepended to all description
|
|
|
|
# unit titles (such as .. function::).
|
|
|
|
#add_module_names = True
|
|
|
|
|
|
|
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
|
|
|
# output. They are ignored by default.
|
|
|
|
#show_authors = False
|
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
|
|
|
# A list of ignored prefixes for module index sorting.
|
|
|
|
#modindex_common_prefix = []
|
|
|
|
|
|
|
|
# If true, keep warnings as "system message" paragraphs in the built documents.
|
|
|
|
#keep_warnings = False
|
|
|
|
|
2017-07-02 08:15:31 -04:00
|
|
|
# Global include files. Sphinx docs suggest using rst_epilog in preference
|
|
|
|
# of rst_prolog, so we follow. Absolute paths below mean "from the base
|
|
|
|
# of the doctree".
|
|
|
|
rst_epilog = """
|
2018-02-20 20:34:59 -05:00
|
|
|
.. include:: /docs/templates/replace.inc
|
2017-07-02 08:15:31 -04:00
|
|
|
"""
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# -- Options for HTML output ----------------------------------------------
|
|
|
|
|
2014-11-05 19:14:26 -05:00
|
|
|
# on_rtd is whether we are on readthedocs.org
|
|
|
|
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
|
|
|
|
|
|
|
if not on_rtd: # only import and set the theme if we're building docs locally
|
|
|
|
try:
|
|
|
|
import sphinx_rtd_theme
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
|
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path(), '.']
|
|
|
|
except:
|
|
|
|
html_theme = 'default'
|
|
|
|
html_theme_path = ['.']
|
2014-11-15 16:33:07 -05:00
|
|
|
else:
|
|
|
|
html_theme_path = ['.']
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
|
|
# further. For a list of options available for each theme, see the
|
|
|
|
# documentation.
|
|
|
|
#html_theme_options = {}
|
|
|
|
|
|
|
|
# Add any paths that contain custom themes here, relative to this directory.
|
2014-11-05 19:14:26 -05:00
|
|
|
# html_theme_path = ['.']
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# The name for this set of Sphinx documents. If None, it defaults to
|
|
|
|
# "<project> v<release> documentation".
|
|
|
|
#html_title = None
|
|
|
|
|
|
|
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
|
|
|
#html_short_title = None
|
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top
|
|
|
|
# of the sidebar.
|
2015-05-27 07:59:59 -04:00
|
|
|
#html_logo = '../../logo/trans-logo.png'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# The name of an image file (within the static path) to use as favicon of the
|
|
|
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
|
|
# pixels large.
|
2017-07-31 17:23:43 -04:00
|
|
|
html_favicon = 'docs/static/favicon.ico'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
|
|
# relative to this directory. They are copied after the builtin static files,
|
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
2016-10-18 20:42:47 -04:00
|
|
|
html_static_path = ['docs/static']
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# Add any extra paths that contain custom files (such as robots.txt or
|
|
|
|
# .htaccess) here, relative to this directory. These files are copied
|
|
|
|
# directly to the root of the documentation.
|
|
|
|
#html_extra_path = []
|
|
|
|
|
|
|
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
|
|
# using the given strftime format.
|
2014-11-04 13:51:29 -05:00
|
|
|
html_last_updated_fmt = '%d %b %Y'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
|
|
# typographically correct entities.
|
|
|
|
#html_use_smartypants = True
|
|
|
|
|
|
|
|
# Custom sidebar templates, maps document names to template names.
|
|
|
|
#html_sidebars = {}
|
|
|
|
|
|
|
|
# Additional templates that should be rendered to pages, maps page names to
|
|
|
|
# template names.
|
2016-10-18 20:42:47 -04:00
|
|
|
#html_additional_pages = {"index": "topindex.html"}
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
|
|
|
#html_domain_indices = True
|
|
|
|
|
|
|
|
# If false, no index is generated.
|
|
|
|
#html_use_index = True
|
|
|
|
|
|
|
|
# If true, the index is split into individual pages for each letter.
|
|
|
|
#html_split_index = False
|
|
|
|
|
|
|
|
# If true, links to the reST sources are added to the pages.
|
|
|
|
#html_show_sourcelink = True
|
|
|
|
|
|
|
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
|
|
|
#html_show_sphinx = True
|
|
|
|
|
|
|
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
|
|
|
#html_show_copyright = True
|
|
|
|
|
|
|
|
# If true, an OpenSearch description file will be output, and all pages will
|
|
|
|
# contain a <link> tag referring to it. The value of this option must be the
|
|
|
|
# base URL from which the finished HTML is served.
|
|
|
|
#html_use_opensearch = ''
|
|
|
|
|
|
|
|
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
|
|
|
#html_file_suffix = None
|
|
|
|
|
|
|
|
# Output file base name for HTML help builder.
|
2018-02-05 15:01:57 -05:00
|
|
|
htmlhelp_basename = 'CircuitPythondoc'
|
2014-09-21 06:52:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
# -- Options for LaTeX output ---------------------------------------------
|
|
|
|
|
|
|
|
latex_elements = {
|
|
|
|
# The paper size ('letterpaper' or 'a4paper').
|
|
|
|
#'papersize': 'letterpaper',
|
|
|
|
|
|
|
|
# The font size ('10pt', '11pt' or '12pt').
|
|
|
|
#'pointsize': '10pt',
|
|
|
|
|
|
|
|
# Additional stuff for the LaTeX preamble.
|
|
|
|
#'preamble': '',
|
2017-06-23 17:25:29 -04:00
|
|
|
# Include 3 levels of headers in PDF ToC
|
|
|
|
'preamble': '\setcounter{tocdepth}{2}',
|
2014-09-21 06:52:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
|
|
# (source start file, target name, title,
|
|
|
|
# author, documentclass [howto, manual, or own class]).
|
|
|
|
latex_documents = [
|
2018-02-05 15:01:57 -05:00
|
|
|
(master_doc, 'CircuitPython.tex', 'CircuitPython Documentation',
|
2019-01-09 16:18:52 -05:00
|
|
|
'CircuitPython Contributors', 'manual'),
|
2014-09-21 06:52:01 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top of
|
|
|
|
# the title page.
|
|
|
|
#latex_logo = None
|
|
|
|
|
|
|
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
|
|
# not chapters.
|
|
|
|
#latex_use_parts = False
|
|
|
|
|
|
|
|
# If true, show page references after internal links.
|
|
|
|
#latex_show_pagerefs = False
|
|
|
|
|
|
|
|
# If true, show URL addresses after external links.
|
|
|
|
#latex_show_urls = False
|
|
|
|
|
|
|
|
# Documents to append as an appendix to all manuals.
|
|
|
|
#latex_appendices = []
|
|
|
|
|
|
|
|
# If false, no module index is generated.
|
|
|
|
#latex_domain_indices = True
|
|
|
|
|
|
|
|
|
|
|
|
# -- Options for manual page output ---------------------------------------
|
|
|
|
|
|
|
|
# One entry per manual page. List of tuples
|
|
|
|
# (source start file, name, description, authors, manual section).
|
|
|
|
man_pages = [
|
2018-02-05 15:01:57 -05:00
|
|
|
('index', 'CircuitPython', 'CircuitPython Documentation',
|
2019-01-09 16:18:52 -05:00
|
|
|
['CircuitPython contributors'], 1),
|
2014-09-21 06:52:01 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# If true, show URL addresses after external links.
|
|
|
|
#man_show_urls = False
|
|
|
|
|
|
|
|
|
|
|
|
# -- Options for Texinfo output -------------------------------------------
|
|
|
|
|
|
|
|
# Grouping the document tree into Texinfo files. List of tuples
|
|
|
|
# (source start file, target name, title, author,
|
|
|
|
# dir menu entry, description, category)
|
|
|
|
texinfo_documents = [
|
2018-02-05 15:01:57 -05:00
|
|
|
(master_doc, 'CircuitPython', 'CircuitPython Documentation',
|
2019-01-09 16:18:52 -05:00
|
|
|
'CircuitPython contributors', 'CircuitPython', 'Python for Microcontrollers.',
|
2014-09-21 06:52:01 -04:00
|
|
|
'Miscellaneous'),
|
|
|
|
]
|
|
|
|
|
|
|
|
# Documents to append as an appendix to all manuals.
|
|
|
|
#texinfo_appendices = []
|
|
|
|
|
|
|
|
# If false, no module index is generated.
|
|
|
|
#texinfo_domain_indices = True
|
|
|
|
|
|
|
|
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
|
|
|
#texinfo_show_urls = 'footnote'
|
|
|
|
|
|
|
|
# If true, do not generate a @detailmenu in the "Top" node's menu.
|
|
|
|
#texinfo_no_detailmenu = False
|
|
|
|
|
|
|
|
|
|
|
|
# Example configuration for intersphinx: refer to the Python standard library.
|
2017-06-07 17:39:12 -04:00
|
|
|
intersphinx_mapping = {"cpython": ('https://docs.python.org/3/', None),
|
2018-03-06 19:54:13 -05:00
|
|
|
"bus_device": ('https://circuitpython.readthedocs.io/projects/busdevice/en/latest/', None),
|
2017-06-07 17:39:12 -04:00
|
|
|
"register": ('https://circuitpython.readthedocs.io/projects/register/en/latest/', None)}
|
2019-09-02 19:46:48 -04:00
|
|
|
|
2020-06-14 14:04:21 -04:00
|
|
|
# Adapted from sphinxcontrib-redirects
|
|
|
|
from sphinx.builders import html as builders
|
|
|
|
|
|
|
|
TEMPLATE = """<html>
|
|
|
|
<head><meta http-equiv="refresh" content="0; url=%s"/></head>
|
|
|
|
</html>
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def generate_redirects(app):
|
|
|
|
path = os.path.join(app.srcdir, app.config.redirects_file)
|
|
|
|
if not os.path.exists(path):
|
2020-06-26 16:28:20 -04:00
|
|
|
logging.error("Could not find redirects file at '%s'" % path)
|
2020-06-14 14:04:21 -04:00
|
|
|
return
|
|
|
|
|
2020-06-26 16:23:42 -04:00
|
|
|
if not isinstance(app.builder, builders.StandaloneHTMLBuilder):
|
2020-06-14 14:04:21 -04:00
|
|
|
logging.warn("The 'sphinxcontib-redirects' plugin is only supported "
|
2020-06-26 16:23:42 -04:00
|
|
|
"by the 'html' builder and subclasses. Skipping...")
|
2020-06-26 16:28:20 -04:00
|
|
|
logging.warn(f"Builder is {app.builder.name} ({type(app.builder)})")
|
2020-06-14 14:04:21 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
with open(path) as redirects:
|
|
|
|
for line in redirects.readlines():
|
|
|
|
from_path, to_path = line.rstrip().split(' ')
|
|
|
|
|
|
|
|
logging.debug("Redirecting '%s' to '%s'" % (from_path, to_path))
|
|
|
|
|
|
|
|
from_path = os.path.splitext(from_path)[0] + ".html"
|
|
|
|
to_path_prefix = '..%s' % os.path.sep * (
|
|
|
|
len(from_path.split(os.path.sep)) - 1)
|
|
|
|
to_path = to_path_prefix + to_path
|
|
|
|
|
|
|
|
redirected_filename = os.path.join(app.builder.outdir, from_path)
|
|
|
|
redirected_directory = os.path.dirname(redirected_filename)
|
|
|
|
if not os.path.exists(redirected_directory):
|
|
|
|
os.makedirs(redirected_directory)
|
|
|
|
|
|
|
|
with open(redirected_filename, 'w') as f:
|
|
|
|
f.write(TEMPLATE % urllib.parse.quote(to_path, '#/'))
|
|
|
|
|
2019-09-02 19:46:48 -04:00
|
|
|
def setup(app):
|
2020-04-09 09:47:33 -04:00
|
|
|
app.add_css_file("customstyle.css")
|
2020-06-14 14:04:21 -04:00
|
|
|
app.add_config_value('redirects_file', 'redirects', 'env')
|
|
|
|
app.connect('builder-inited', generate_redirects)
|