-
Notifications
You must be signed in to change notification settings - Fork 37
/
conf.py
387 lines (326 loc) · 14 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
# http://www.sphinx-doc.org/en/master/config
# -- Path setup --------------------------------------------------------------
# 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.
#
import itertools
import os
import sys
import time
from docutils.parsers.rst import Directive
sys.path.append(os.path.abspath("./_ext"))
sys.path.append(os.path.abspath("./sphinx-multiversion"))
# -- General configuration -------------------------------------------------
# General information about the project.
project = "control.ros.org"
author = "ros2_control Development Team"
copyright = "{}, {}".format(time.strftime("%Y"), author)
# Adjust those to change ros distribution
# you might also need to white list branch (see smv_branch_whitelist)
ros_distro = "rolling"
distro_title = "Rolling"
distro_title_full = "Rolling Ridley"
repos_file_branch = "master" # sets macro REPOS_FILE_BRANCH (will be overridden with multiversion)
# 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.
#
# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
release = "{}".format(time.strftime("%b %Y"))
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = "1.0"
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# The suffix(es) of source filenames.
source_suffix = ".rst"
# The master toctree document.
master_doc = "index"
# 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 = "en"
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
# exclude index.rst files from packages/metapackages for rosdoc2
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store",
"**/CHANGELOG.rst", "**/README.rst",
"doc/ros2_control/ros2_control/**.rst",
"doc/ros2_control/transmission_interface/**.rst",
"doc/realtime_tools/**.rst",
"doc/control_msgs/**.rst",
"doc/control_toolbox/**.rst",
"doc/kinematics_interface/**.rst",
"doc/ros2_controllers/ros2_controllers/**.rst"]
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "sphinx"
# -- Extension configuration -------------------------------------------------
# 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.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.githubpages",
"sphinx_rtd_theme",
"sphinx_multiversion",
"sphinx_copybutton",
"generate_parameter_library",
'sphinx_tabs.tabs',
"sphinx.ext.autosectionlabel"
]
# Make sure the target is unique
autosectionlabel_prefix_document = True
# By default, tabs can be closed by selecting the open tab
sphinx_tabs_disable_tab_closing = True
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True
# -- Options for HTML output -------------------------------------------------
html_baseurl = "https://control.ros.org/" + ros_distro + "/"
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "sphinx_rtd_theme"
templates_path = [
"_templates",
]
# 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 = {
"collapse_navigation": True,
"sticky_navigation": True,
"navigation_depth": -1,
# Only display the logo image, do not display the project name at the top of the sidebar
"logo_only": True,
}
html_js_files = [
('https://plausible.io/js/script.js', {"data-domain": "control.ros.org", "defer": "defer"}),
]
# 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".
html_static_path = ["_static"]
# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
html_css_files = [
'reviewer_stats.css',
]
# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# The default sidebars (for documents that don't match any pattern) are
# defined by theme itself. Builtin themes are using these templates by
# default: ``["localtoc.html", "relations.html", "sourcelink.html",
# "searchbox.html"]``.
#
# html_sidebars = {}
html_context = {
"display_github": True,
"github_user": "ros-controls",
"github_repo": "control.ros.org",
"github_version": repos_file_branch + "/",
"conf_py_path": "/",
"source_suffix": source_suffix,
"favicon": "favicon_ros-controls.ico",
"logo": "logo_ros-controls.png"
}
html_favicon = "images/favicon_ros-controls.ico"
html_logo = "images/logo_ros-controls.png"
github_url = "https://github.com/ros-controls/control.ros.org"
# -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = "ros2ControlDocumentation"
# -- Extension configuration -------------------------------------------------
# copy transmission images to ros2_control/doc/_build/xml/ so that breathe picks them up as artifacts
# shutil.copytree("ros2_control/transmission_interface/images/", "ros2_control/doc/_build/xml/", dirs_exist_ok=True)
# # Copy resources folders
# shutil.copytree("resources/", "_build/html/resources/", dirs_exist_ok=True)
# # generate doxygen documentation
# subprocess.run(["doxygen", "doc/Doxyfile"], cwd="ros2_control")
# # copy doxygen documentation to api subfolder
# shutil.copytree("ros2_control/doc/_build/html", "_build/html/api")
# Drop any source link suffix
html_sourcelink_suffix = ""
# branch from which is started to checkout other branches
# TODO(anyone) use make_help_scripts/deploy_defines.py to set this variable
if os.environ.get('BASE_BRANCH_PR') is not None:
base_branch = os.environ.get('BASE_BRANCH_PR')
elif os.environ.get('BASE_BRANCH') is not None:
base_branch = os.environ.get('BASE_BRANCH')
else:
base_branch = "rolling"
# Add branches you want to whitelist here.
smv_branch_whitelist = r"^(foxy|galactic|humble|iron|jazzy|"+ base_branch + r")$"
smv_released_pattern = r"^refs/(heads|remotes/[^/]+)/(foxy|galactic|humble|iron).*$"
smv_remote_whitelist = r"^(origin)$"
smv_latest_version = "iron"
smv_eol_versions = ["foxy", "galactic"]
distro_full_names = {
"foxy": "Foxy Fitzroy",
"galactic": "Galactic Geochelone",
"humble": "Humble Hawksbill",
"iron": "Iron Irwini",
"jazzy": "Jazzy Jalisco",
"rolling": "Rolling Ridley",
}
# These default values will be overridden when building multiversion
macros = {
"DISTRO": ros_distro,
"DISTRO_TITLE": distro_title,
"DISTRO_TITLE_FULL": distro_title_full,
"REPOS_FILE_BRANCH": repos_file_branch,
}
# Add any paths that contain custom themes here, relative to this directory.
class RedirectFrom(Directive):
has_content = True
template_name = "layout.html"
redirections = {}
@classmethod
def register(cls, app):
app.connect("html-collect-pages", cls.generate)
app.add_directive("redirect-from", cls)
return app
@classmethod
def generate(cls, app):
from sphinx.builders.html import StandaloneHTMLBuilder
if not isinstance(app.builder, StandaloneHTMLBuilder):
return
redirect_html_fragment = """
<link rel="canonical" href="{base_url}/{url}" />
<meta http-equiv="refresh" content="0; url={url}" />
<script>
window.location.href = '{url}';
</script>
"""
redirections = {
os.path.splitext(os.path.relpath(document_path, app.srcdir))[0]: redirect_urls
for document_path, redirect_urls in cls.redirections.items()
}
redirection_conflict = next(
(
(canon_1, canon_2, redirs_1.intersection(redirs_2))
for (canon_1, redirs_1), (canon_2, redirs_2) in itertools.combinations(
redirections.items(), 2
)
if redirs_1.intersection(redirs_2)
),
None,
)
if redirection_conflict:
canonical_url_1, canonical_url_2 = redirection_conflict[:2]
conflicting_redirect_urls = redirection_conflict[-1]
raise RuntimeError(
"Documents {} and {} define conflicting redirects: {}".format(
canonical_url_1, canonical_url_2, conflicting_redirect_urls
)
)
all_canonical_urls = set(redirections.keys())
all_redirect_urls = {
redirect_url
for redirect_urls in redirections.values()
for redirect_url in redirect_urls
}
conflicting_urls = all_canonical_urls.intersection(all_redirect_urls)
if conflicting_urls:
raise RuntimeError(
f"Some redirects conflict with existing documents: {conflicting_urls}"
)
for canonical_url, redirect_urls in redirections.items():
for redirect_url in redirect_urls:
context = {
"canonical_url": os.path.relpath(canonical_url, redirect_url),
"title": os.path.basename(redirect_url),
"metatags": redirect_html_fragment.format(
base_url=app.config.html_baseurl,
url=app.builder.get_relative_uri(redirect_url, canonical_url),
),
}
yield (redirect_url, context, cls.template_name)
def run(self):
document_path = self.state.document.current_source
if document_path not in RedirectFrom.redirections:
RedirectFrom.redirections[document_path] = set()
RedirectFrom.redirections[document_path].update(self.content)
return []
def make_router(origin, destination):
def _missing_reference(app, env, node, contnode):
from docutils import nodes
from sphinx.util import docname_join
doctarget = docname_join(node["refdoc"], node["reftarget"])
if doctarget.startswith(origin):
routed_doctarget = doctarget.replace(origin, destination)
if routed_doctarget in env.all_docs:
newnode = nodes.reference("", contnode.astext(), internal=True)
newnode["refuri"] = app.builder.get_relative_uri(node["refdoc"], routed_doctarget)
return newnode
return _missing_reference
def smv_rewrite_configs(app, config):
# When using Sphinx multiversion, there is no way at initial configuration time
# to determine the distribution we are currently targeting (conf.py is read before
# external defines are setup, and environment variables aren't passed through to
# conf.py). Instead, hook into the 'config-inited' event which is late enough
# to rewrite the various configuration items with the current version.
if app.config.smv_current_version != "":
# this map is used to match branches of control.ros.org to ROS distros, e.g., DISTRO macro
branch_distro = {
base_branch: "rolling",
"jazzy": "jazzy",
"iron": "iron",
"humble": "humble",
"foxy": "foxy",
"galactic": "galactic"
}
# this map is used to match branches of control.ros.org to REPOS_FILE_BRANCH macro
subrepo_branch = {
base_branch: "master",
"jazzy": "master",
"iron": "iron",
"humble": "humble",
"foxy": "foxy",
"galactic": "galactic"
}
# Override default values
branch = subrepo_branch[app.config.smv_current_version]
distro = branch_distro[app.config.smv_current_version]
app.config.macros = {
"DISTRO": distro,
"DISTRO_TITLE": distro.title(),
"DISTRO_TITLE_FULL": distro_full_names[distro],
"REPOS_FILE_BRANCH": branch,
}
app.config.html_baseurl = app.config.html_baseurl + "/" + distro + "/"
app.config.project = "ROS2_Control: " + distro.title()
app.config.html_logo = "images/logo_ros-controls.png"
else:
# If we are not building a multiversion build, default to the rolling logo
app.config.html_logo = "images/logo_ros-controls.png"
def github_link_rewrite_branch(app, pagename, templatename, context, doctree):
if app.config.smv_current_version != "":
context["github_version"] = app.config.smv_current_version + "/"
context["eol_versions"] = app.config.smv_eol_versions
def expand_macros(app, docname, source):
result = source[0]
for key, value in app.config.macros.items():
result = result.replace(f"{{{key}}}", value)
source[0] = result
def setup(app):
app.connect("config-inited", smv_rewrite_configs)
app.connect("html-page-context", github_link_rewrite_branch)
app.connect("source-read", expand_macros)
app.add_config_value("smv_eol_versions", [], "html")
app.add_config_value("macros", {}, True)
RedirectFrom.register(app)