Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-07-17 06:16:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-07-17 06:18:58 +0300
commitbc8a9c47c689b46f20830603b33a1d9041e0ffe3 (patch)
treec0d393339cede0523057bf414e85d526c421671e /doc
parent3d1e5bca88149fb6ce41d0d67174795de36b157b (diff)
PyDoc: minor change to recent workaround
- Isolate workaround in single string and link to issue. - Quiet unused file warning (since it's an include).
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py35
1 files changed, 24 insertions, 11 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 525eebe5790..098e2736ed1 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1630,8 +1630,7 @@ def write_sphinx_conf_py(basepath):
file = open(filepath, "w", encoding="utf-8")
fw = file.write
- fw("import sys, os\n")
- fw("from sphinx.domains.python import PythonDomain\n\n")
+ fw("import sys, os\n\n")
fw("extensions = ['sphinx.ext.intersphinx']\n\n")
fw("intersphinx_mapping = {'blender_manual': ('https://docs.blender.org/manual/en/dev/', None)}\n\n")
fw("project = 'Blender'\n")
@@ -1640,6 +1639,11 @@ def write_sphinx_conf_py(basepath):
fw("version = '%s - API'\n" % BLENDER_VERSION_DOTS)
fw("release = '%s - API'\n" % BLENDER_VERSION_DOTS)
+ # Quiet file not in table-of-contents warnings.
+ fw("exclude_patterns = [\n")
+ fw(" 'include__bmesh.rst',\n")
+ fw("]\n\n")
+
if ARGS.sphinx_theme != 'default':
fw("html_theme = '%s'\n" % ARGS.sphinx_theme)
@@ -1654,21 +1658,30 @@ def write_sphinx_conf_py(basepath):
fw("html_favicon = '__/static/favicon.ico'\n")
fw("html_logo = '__/static/blender_logo.svg'\n\n")
- fw("class PatchedPythonDomain(PythonDomain):\n")
- fw(" def resolve_xref(self, env, fromdocname, builder, typ, target, node, contnode):\n")
- fw(" if 'refspecific' in node:\n")
- fw(" del node['refspecific']\n")
- fw(" return super(PatchedPythonDomain, self).resolve_xref(\n")
- fw(" env, fromdocname, builder, typ, target, node, contnode)\n\n")
- fw("def setup(sphinx):\n")
- fw(" sphinx.override_domain(PatchedPythonDomain)\n\n")
-
# needed for latex, pdf gen
fw("latex_elements = {\n")
fw(" 'papersize': 'a4paper',\n")
fw("}\n\n")
fw("latex_documents = [ ('contents', 'contents.tex', 'Blender Index', 'Blender Foundation', 'manual'), ]\n")
+
+ # Workaround for useless links leading to compile errors
+ # See https://github.com/sphinx-doc/sphinx/issues/3866
+ fw(r"""
+from sphinx.domains.python import PythonDomain
+
+class PatchedPythonDomain(PythonDomain):
+ def resolve_xref(self, env, fromdocname, builder, typ, target, node, contnode):
+ if 'refspecific' in node:
+ del node['refspecific']
+ return super(PatchedPythonDomain, self).resolve_xref(
+ env, fromdocname, builder, typ, target, node, contnode)
+
+def setup(sphinx):
+ sphinx.override_domain(PatchedPythonDomain)
+""")
+ # end workaround
+
file.close()