Slicer 5.11
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
Loading...
Searching...
No Matches
conf.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2#
3# 3D Slicer documentation build configuration file, created by
4# sphinx-quickstart on Tue Mar 21 03:07:30 2017.
5#
6# This file is execfile()d with the current directory set to its
7# containing dir.
8#
9# Note that not all possible configuration values are present in this
10# autogenerated file.
11#
12# All configuration values have a default; values that are commented out
13# serve to show the default.
14
15# If extensions (or modules to document with autodoc) are in another directory,
16# add these directories to sys.path here. If the directory is relative to the
17# documentation root, use os.path.abspath to make it absolute, like shown here.
18#
19import lxml.etree as ET
20import os
21import re
22import sys
23from datetime import date
24
25sys.path.insert(0, os.path.abspath("../Base/Python"))
26sys.path.insert(0, os.path.abspath("./_ext"))
27
28# -- General configuration ------------------------------------------------
29
30# If your documentation needs a minimal Sphinx version, state it here.
31#
32# needs_sphinx = '1.0'
33
34# Add any Sphinx extension module names here, as strings. They can be
35# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
36# ones.
37extensions = [
38 "sphinx.ext.autodoc",
39 "myst_parser",
40 "sphinx_markdown_tables",
41 "notfound.extension", # Show a better 404 page when an invalid address is entered
42 "sphinx_rtd_theme",
43 "sphinx-jsonschema",
44 "github_alerts",
45 "sphinx_reredirects", # Handle page redirects
46 "sphinx_design", # Tabs, cards, and other design components
47]
48
49# Redirect renamed/moved pages for keeping external links working
50redirects = {
51 "user_guide/extensions_manager.html": "extensions.html#extensions-manager",
52}
53
54suppress_warnings = [
55 # Since we split the "script_repository.md" into smaller documents combined using
56 # the "include" directive, we ignore warnings like "Document headings start at H2, not H1"
57 "myst.header",
58]
59
60autodoc_mock_imports = [
61 "ctk",
62 "qt",
63 "vtk",
64]
65
66myst_enable_extensions = [
67 "attrs_inline", # Enable parsing of inline attributes (see https://myst-parser.readthedocs.io/en/latest/syntax/optional.html#inline-attributes)
68 "colon_fence", # Allow code fence using ::: (see https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html#syntax-colon-fence)
69 "dollarmath", # Support syntax for inline and block math using `$...$` and `$$...$$`
70 # (see https://myst-parser.readthedocs.io/en/latest/syntax/optional.html#dollar-delimited-math)
71 "linkify", # Allow automatic creation of links from URLs (it is sufficient to write https://google.com instead of <https://google.com>)
72]
73
74# Auto-generate header anchors up to level 6, so that it can be referenced like [](file.md#header-anchor).
75# (see https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html#auto-generated-header-anchors)
76myst_heading_anchors = 6
77
78# Allow display (block) math with equation label syntax
79myst_dmath_allow_labels = True
80
81
82def _extract_slicer_xy_version(slicer_src_dir):
83 """
84 Given a Slicer source director, extract <major>.<minor> version
85 from top-level `CMakeLists.txt`.
86
87 Return a dictionary containing `major` and `minor` version components as strings
88 """
89 slicer_src_dir = os.path.abspath(slicer_src_dir)
90 version_patterns = {
91 part: re.compile(rf'set\‍(Slicer_VERSION_{part.upper()} "(\d+)"\‍)')
92 for part in ["major", "minor"]
93 }
94 version_parts = {}
95
96 # Parse the CMakeLists.txt file to extract version components.
97 cmakelists_path = os.path.join(slicer_src_dir, "CMakeLists.txt")
98 with open(cmakelists_path) as cmake_file:
99 for line in cmake_file:
100 for part, pattern in version_patterns.items():
101 match = pattern.match(line.strip())
102 if match is not None:
103 version_parts[part] = match.group(1)
104 if len(version_parts) == len(version_patterns ):
105 break
106
107 if len(version_parts) != len(version_patterns):
108 raise ValueError(f"Failed to extract version from {cmakelists_path}")
109
110 return version_parts
111
112
114 """
115 Determine the Doxygen documentation version to use based on the Slicer version.
116
117 Return Doxygen version identifier (`v<major>.<minor>` for Stable, `main` for Preview)
118 """
119
120 slicer_repo_dir = os.path.dirname(os.path.dirname(__file__))
121 version_parts = _extract_slicer_xy_version(slicer_repo_dir)
122
123 # Determine the documentation branch based on the minor version parity.
124 is_even = int(version_parts["minor"]) % 2 == 0
125 return "v{major}.{minor}".format(**version_parts) if is_even else "main"
126
127
128# Construct the custom URL scheme for Slicer Doxygen documentation links.
129slicerapidocs_url_scheme = "https://apidocs.slicer.org/" + _get_apidocs_doxygen_version() + "/{{path}}#{{fragment}}"
130print(f"Slicer API documentation URL scheme: {slicerapidocs_url_scheme}")
131
132
133# Register custom URL schemes for Markdown processing.
134# These schemes allow linking to external and Slicer-specific resources dynamically.
135myst_url_schemes = {
136 "http": None,
137 "https": None,
138 "mailto": None,
139 "ftp": None,
140 "slicerapidocs": slicerapidocs_url_scheme,
141}
142
143#
144# Add any paths that contain templates here, relative to this directory.
145templates_path = ["_templates"]
146
147# The suffix(es) of source filenames.
148# You can specify multiple suffix as a list of string:
149#
150source_suffix = [".rst", ".md"]
151
152# The master toctree document.
153master_doc = "index"
154
155# General information about the project.
156project = "3D Slicer"
157copyright = f"{date.today().year}, Slicer Community"
158author = "Slicer Community"
159
160# The version info for the project you're documenting, acts as replacement for
161# |version| and |release|, also used in various other places throughout the
162# built documents.
163#
164# The short X.Y version.
165version = ""
166# The full version, including alpha/beta/rc tags.
167release = ""
168
169# List of patterns, relative to source directory, that match files and
170# directories to ignore when looking for source files.
171# This patterns also effect to html_static_path and html_extra_path
172exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "_moduledescriptions"]
173
174# Set EXCLUDE_DEVELOPER_GUIDE=True environment variable to exclude developer guide.
175# It is useful for quicker documentation generation while eiditing user manual.
176if os.environ.get("EXCLUDE_API_REFERENCE", "False") == "True":
177 print("API reference is excluded from documentation.")
178 exclude_patterns.append("developer_guide/vtkTeem.rst")
179 exclude_patterns.append("developer_guide/vtkAddon.rst")
180 exclude_patterns.append("developer_guide/vtkITK.rst")
181 exclude_patterns.append("developer_guide/slicer.rst")
182 exclude_patterns.append("developer_guide/mrml.rst")
183
184# sphinx-notfound-page
185# https://github.com/readthedocs/sphinx-notfound-page
186notfound_context = {
187 "title": "Page Not Found",
188 "body": """
189<h1>Page Not Found</h1>
190<p>Sorry, we couldn't find that page.</p>
191<p>Try using the search box or go to the homepage.</p>
192""",
193}
194
195# The name of the Pygments (syntax highlighting) style to use.
196pygments_style = "sphinx"
197
198# If true, `todo` and `todoList` produce output, else they produce nothing.
199todo_include_todos = False
200
201# A string of reStructuredText that will be included at the beginning of every source file that is read.
202rst_prolog = open("global.rst.in").read()
203
204# If given, this must be the name of an image file (path relative to the configuration directory) that is the logo of the docs.
205# It is placed at the top of the sidebar; its width should therefore not exceed 200 pixels
206html_logo = "_static/images/3D-Slicer-Mark.png"
207
208# -- Options for HTML output ----------------------------------------------
209
210# The theme to use for HTML and HTML Help pages. See the documentation for
211# a list of builtin themes.
212#
213html_theme = "sphinx_rtd_theme"
214
215# Theme options are theme-specific and customize the look and feel of a theme
216# further. For a list of options available for each theme, see the
217# documentation.
218#
219html_theme_options = {
220 # Toc options
221 "includehidden": False,
222}
223
224html_context = {
225 # Enable the "Edit in GitHub link within the header of each page.
226 "display_github": True,
227 # Set the following variables to generate the resulting github URL for each page.
228 # Format Template: https://{{ github_host|default("github.com") }}/{{ github_user }}/{{ github_repo }}
229 # /blob/{{ github_version }}{{ conf_py_path }}{{ pagename }}{{ suffix }}
230 "github_user": "slicer",
231 "github_repo": "slicer",
232 "github_version": "main",
233 "conf_py_path": "/Docs/",
234}
235
236# Add any paths that contain custom static files (such as style sheets) here,
237# relative to this directory. They are copied after the builtin static files,
238# so a file named "default.css" will overwrite the builtin "default.css".
239html_static_path = ["_static"]
240
241# These paths are either relative to html_static_path
242# or fully qualified paths (eg. https://...)
243html_css_files = [
244 "css/custom.css",
245]
246
247# -- Options for HTMLHelp output ------------------------------------------
248
249# Output file base name for HTML help builder.
250htmlhelp_basename = "3DSlicerdoc"
251
252
253# -- Options for LaTeX output ---------------------------------------------
254
255latex_elements = {
256 # The paper size ('letterpaper' or 'a4paper').
257 #
258 # 'papersize': 'letterpaper',
259 # The font size ('10pt', '11pt' or '12pt').
260 #
261 # 'pointsize': '10pt',
262 # Additional stuff for the LaTeX preamble.
263 #
264 # 'preamble': '',
265 # Latex figure (float) alignment
266 #
267 # 'figure_align': 'htbp',
268}
269
270# Grouping the document tree into LaTeX files. List of tuples
271# (source start file, target name, title,
272# author, documentclass [howto, manual, or own class]).
273latex_documents = [
274 (master_doc, "3DSlicer.tex", "3D Slicer Documentation",
275 "Slicer Community", "manual"),
276]
277
278
279# -- Options for manual page output ---------------------------------------
280
281# One entry per manual page. List of tuples
282# (source start file, name, description, authors, manual section).
283man_pages = [
284 (master_doc, "3Dslicer", "3D Slicer Documentation",
285 [author], 1),
286]
287
288
289# -- Options for Texinfo output -------------------------------------------
290
291# Grouping the document tree into Texinfo files. List of tuples
292# (source start file, target name, title, author,
293# dir menu entry, description, category)
294texinfo_documents = [
295 (master_doc, "3DSlicer", "3D Slicer Documentation",
296 author, "3DSlicer", "One line description of project.",
297 "Miscellaneous"),
298]
299
300# -- Convert CLI module descriptions into markdown files ----------------
301
302# Each CLI module descriptor XML file is converted to two markdown files
303# in _moduledescriptions subfolder: *Overview.md and *Parameters.md.
304# Overview file contains the module title and description.
305# Parameters file contains detailed description of module inputs and
306# outputs, contributors, and acknowledgements.
307#
308# These md files are included at the top and bottom of each CLI module
309# documentation file (user_guide\modules\*.md). Custom content, such as
310# tutorials, screenshots, etc. can be added in between these includes.
311#
312# A copy of all CLI module descriptor XML files for modules that are
313# not part of the Slicer repository (e.g., BRAINS toolkit) are stored in
314# _extracli subfolder. Content of this folder must be updated manually
315# whenever they are updated in the original location. The process could
316# be automated with some effort, but since these bundled libraries do
317# not change frequently, manual update takes less work overall.
318
319
320# Documentation root folder (folder of this script).
321docsfolder = os.path.dirname(__file__)
322
323# List of folders that contain CLI module descriptor XML files.
324inputpaths = [
325 os.path.join(docsfolder, "../Modules/CLI"),
326 os.path.join(docsfolder, "_extracli"),
327]
328
329# List of modules to be excluded from documentation generation
330# (for example, testing modules only).
331excludenames = [
332 "CLIROITest.xml",
333 "TestGridTransformRegistration.xml",
334 "DiffusionTensorTest.xml",
335]
336
337# Output folder that contains all generated markdown files.
338outpath = os.path.join(docsfolder, "_moduledescriptions")
339os.makedirs(outpath, exist_ok=True)
340with open(os.path.join(outpath, "_readme_.txt"), "w") as descriptionfile:
341 descriptionfile.write("Content of this folder is automatically generated by Docs/conf.py from CLI module descriptor XML files\n")
342 descriptionfile.write("during documentation build. The folder can be deleted because it is automatically regenerated when needed.")
343
344
345def _generatemd(dom, docsfolder, outpath, xslt, suffix):
346 """Helper function to create markdown file from CLI module description XML file using XSLT"""
347 xsltpath = os.path.join(docsfolder, xslt)
348 transform = ET.XSLT(ET.parse(xsltpath))
349 content = str(transform(dom))
350 with open(os.path.join(outpath, os.path.splitext(name)[0] + suffix + ".md"), "w", encoding="utf8") as outfile:
351 outfile.write(content)
352
353
354for inputpath in inputpaths:
355 for root, dirs, files in os.walk(inputpath):
356 for name in files:
357 if name in excludenames:
358 continue
359 if name.endswith(".xml"):
360 print(f"Generating CLI module documentation from {name}")
361 dom = ET.parse(os.path.join(root, name))
362 _generatemd(dom, docsfolder, outpath, "cli_module_overview_to_md.xsl", "Overview")
363 _generatemd(dom, docsfolder, outpath, "cli_module_parameters_to_md.xsl", "Parameters")
_get_apidocs_doxygen_version()
Definition conf.py:113
_extract_slicer_xy_version(slicer_src_dir)
Definition conf.py:82