blob: 3015892d290ef2c438a76c9389d8a36b61598731 [file] [log] [blame]
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001# Configuration file for the Sphinx documentation builder.
2#
Andrew Geisslerf0343792020-11-18 10:42:21 -06003# SPDX-License-Identifier: CC-BY-SA-2.0-UK
Andrew Geisslerc9f78652020-09-18 14:11:35 -05004#
5# This file only contains a selection of the most common options. For a full
6# list see the documentation:
7# https://www.sphinx-doc.org/en/master/usage/configuration.html
8
9# -- Path setup --------------------------------------------------------------
10
11# If extensions (or modules to document with autodoc) are in another directory,
12# add these directories to sys.path here. If the directory is relative to the
13# documentation root, use os.path.abspath to make it absolute, like shown here.
14#
15import os
16import sys
17import datetime
18
19current_version = "dev"
Andrew Geissler595f6302022-01-24 19:11:47 +000020bitbake_version = "" # Leave empty for development branch
Andrew Geisslerc9f78652020-09-18 14:11:35 -050021
22# String used in sidebar
23version = 'Version: ' + current_version
24if current_version == 'dev':
25 version = 'Version: Current Development'
26# Version seen in documentation_options.js and hence in js switchers code
27release = current_version
28
29
30# -- Project information -----------------------------------------------------
Andrew Geisslerc3d88e42020-10-02 09:45:00 -050031project = 'The Yocto Project \xae'
Patrick Williams0ca19cc2021-08-16 14:03:13 -050032copyright = '2010-%s, The Linux Foundation, CC-BY-SA-2.0-UK license' % datetime.datetime.now().year
Andrew Geisslerc9f78652020-09-18 14:11:35 -050033author = 'The Linux Foundation'
34
35# -- General configuration ---------------------------------------------------
36
Andrew Geisslerd1e89492021-02-12 15:35:20 -060037# Prevent building with an outdated version of sphinx
38needs_sphinx = "3.1"
39
Andrew Geisslerc9f78652020-09-18 14:11:35 -050040# to load local extension from the folder 'sphinx'
41sys.path.insert(0, os.path.abspath('sphinx'))
42
43# Add any Sphinx extension module names here, as strings. They can be
44# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
45# ones.
46extensions = [
47 'sphinx.ext.autosectionlabel',
48 'sphinx.ext.extlinks',
49 'sphinx.ext.intersphinx',
50 'yocto-vars'
51]
52autosectionlabel_prefix_document = True
53
54# Add any paths that contain templates here, relative to this directory.
55templates_path = ['_templates']
56
57# List of patterns, relative to source directory, that match files and
58# directories to ignore when looking for source files.
59# This pattern also affects html_static_path and html_extra_path.
Andrew Geissler6ce62a22020-11-30 19:58:47 -060060exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'boilerplate.rst']
Andrew Geisslerc9f78652020-09-18 14:11:35 -050061
62# master document name. The default changed from contents to index. so better
63# set it ourselves.
64master_doc = 'index'
65
66# create substitution for project configuration variables
67rst_prolog = """
68.. |project_name| replace:: %s
69.. |copyright| replace:: %s
70.. |author| replace:: %s
71""" % (project, copyright, author)
72
73# external links and substitutions
74extlinks = {
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000075 'cve': ('https://nvd.nist.gov/vuln/detail/CVE-%s', 'CVE-%s'),
Andrew Geisslerd1e89492021-02-12 15:35:20 -060076 'yocto_home': ('https://www.yoctoproject.org%s', None),
Andrew Geissler09209ee2020-12-13 08:44:15 -060077 'yocto_wiki': ('https://wiki.yoctoproject.org/wiki%s', None),
Andrew Geisslerc9f78652020-09-18 14:11:35 -050078 'yocto_dl': ('https://downloads.yoctoproject.org%s', None),
79 'yocto_lists': ('https://lists.yoctoproject.org%s', None),
80 'yocto_bugs': ('https://bugzilla.yoctoproject.org%s', None),
81 'yocto_ab': ('https://autobuilder.yoctoproject.org%s', None),
82 'yocto_docs': ('https://docs.yoctoproject.org%s', None),
Andrew Geissler09209ee2020-12-13 08:44:15 -060083 'yocto_git': ('https://git.yoctoproject.org/cgit/cgit.cgi%s', None),
Andrew Geisslereff27472021-10-29 15:35:00 -050084 'yocto_sstate': ('http://sstate.yoctoproject.org%s', None),
Andrew Geisslerc9f78652020-09-18 14:11:35 -050085 'oe_home': ('https://www.openembedded.org%s', None),
86 'oe_lists': ('https://lists.openembedded.org%s', None),
Andrew Geissler6ce62a22020-11-30 19:58:47 -060087 'oe_git': ('https://git.openembedded.org%s', None),
Andrew Geisslerd1e89492021-02-12 15:35:20 -060088 'oe_wiki': ('https://www.openembedded.org/wiki%s', None),
89 'oe_layerindex': ('https://layers.openembedded.org%s', None),
90 'oe_layer': ('https://layers.openembedded.org/layerindex/branch/master/layer%s', None),
Andrew Geisslerc9f78652020-09-18 14:11:35 -050091}
92
93# Intersphinx config to use cross reference with Bitbake user manual
94intersphinx_mapping = {
Andrew Geissler595f6302022-01-24 19:11:47 +000095 'bitbake': ('https://docs.yoctoproject.org/bitbake/' + bitbake_version, None)
Andrew Geisslerc9f78652020-09-18 14:11:35 -050096}
97
Andrew Geissler09036742021-06-25 14:25:14 -050098# Suppress "WARNING: unknown mimetype for ..."
99suppress_warnings = ['epub.unknown_project_files']
100
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500101# -- Options for HTML output -------------------------------------------------
102
103# The theme to use for HTML and HTML Help pages. See the documentation for
104# a list of builtin themes.
105#
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500106try:
107 import sphinx_rtd_theme
108 html_theme = 'sphinx_rtd_theme'
109 html_theme_options = {
110 'sticky_navigation': False,
111 }
112except ImportError:
113 sys.stderr.write("The Sphinx sphinx_rtd_theme HTML theme was not found.\
114 \nPlease make sure to install the sphinx_rtd_theme python package.\n")
115 sys.exit(1)
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500116
117html_logo = 'sphinx-static/YoctoProject_Logo_RGB.jpg'
118
119# Add any paths that contain custom static files (such as style sheets) here,
120# relative to this directory. They are copied after the builtin static files,
121# so a file named "default.css" will overwrite the builtin "default.css".
122html_static_path = ['sphinx-static']
123
124html_context = {
125 'current_version': current_version,
126}
127
128# Add customm CSS and JS files
129html_css_files = ['theme_overrides.css']
130html_js_files = ['switchers.js']
131
132# Hide 'Created using Sphinx' text
133html_show_sphinx = False
134
135# Add 'Last updated' on each page
136html_last_updated_fmt = '%b %d, %Y'
137
138# Remove the trailing 'dot' in section numbers
139html_secnumber_suffix = " "
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600140
141latex_elements = {
142 'passoptionstopackages': '\PassOptionsToPackage{bookmarksdepth=5}{hyperref}',
143 'preamble': '\setcounter{tocdepth}{2}',
144}
Andrew Geisslereff27472021-10-29 15:35:00 -0500145
146# Make the EPUB builder prefer PNG to SVG because of issues rendering Inkscape SVG
147from sphinx.builders.epub3 import Epub3Builder
148Epub3Builder.supported_image_types = ['image/png', 'image/gif', 'image/jpeg']