Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1 | # Configuration file for the Sphinx documentation builder. |
| 2 | # |
Andrew Geissler | f034379 | 2020-11-18 10:42:21 -0600 | [diff] [blame] | 3 | # SPDX-License-Identifier: CC-BY-SA-2.0-UK |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 4 | # |
| 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 | # |
| 15 | import os |
| 16 | import sys |
| 17 | import datetime |
| 18 | |
| 19 | current_version = "dev" |
| 20 | |
| 21 | # String used in sidebar |
| 22 | version = 'Version: ' + current_version |
| 23 | if current_version == 'dev': |
| 24 | version = 'Version: Current Development' |
| 25 | # Version seen in documentation_options.js and hence in js switchers code |
| 26 | release = current_version |
| 27 | |
| 28 | |
| 29 | # -- Project information ----------------------------------------------------- |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 30 | project = 'The Yocto Project \xae' |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 31 | copyright = '2010-%s, The Linux Foundation' % datetime.datetime.now().year |
| 32 | author = 'The Linux Foundation' |
| 33 | |
| 34 | # -- General configuration --------------------------------------------------- |
| 35 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 36 | # Prevent building with an outdated version of sphinx |
| 37 | needs_sphinx = "3.1" |
| 38 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 39 | # to load local extension from the folder 'sphinx' |
| 40 | sys.path.insert(0, os.path.abspath('sphinx')) |
| 41 | |
| 42 | # Add any Sphinx extension module names here, as strings. They can be |
| 43 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 44 | # ones. |
| 45 | extensions = [ |
| 46 | 'sphinx.ext.autosectionlabel', |
| 47 | 'sphinx.ext.extlinks', |
| 48 | 'sphinx.ext.intersphinx', |
| 49 | 'yocto-vars' |
| 50 | ] |
| 51 | autosectionlabel_prefix_document = True |
| 52 | |
| 53 | # Add any paths that contain templates here, relative to this directory. |
| 54 | templates_path = ['_templates'] |
| 55 | |
| 56 | # List of patterns, relative to source directory, that match files and |
| 57 | # directories to ignore when looking for source files. |
| 58 | # This pattern also affects html_static_path and html_extra_path. |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 59 | exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'boilerplate.rst'] |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 60 | |
| 61 | # master document name. The default changed from contents to index. so better |
| 62 | # set it ourselves. |
| 63 | master_doc = 'index' |
| 64 | |
| 65 | # create substitution for project configuration variables |
| 66 | rst_prolog = """ |
| 67 | .. |project_name| replace:: %s |
| 68 | .. |copyright| replace:: %s |
| 69 | .. |author| replace:: %s |
| 70 | """ % (project, copyright, author) |
| 71 | |
| 72 | # external links and substitutions |
| 73 | extlinks = { |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 74 | 'yocto_home': ('https://www.yoctoproject.org%s', None), |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 75 | 'yocto_wiki': ('https://wiki.yoctoproject.org/wiki%s', None), |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 76 | 'yocto_dl': ('https://downloads.yoctoproject.org%s', None), |
| 77 | 'yocto_lists': ('https://lists.yoctoproject.org%s', None), |
| 78 | 'yocto_bugs': ('https://bugzilla.yoctoproject.org%s', None), |
| 79 | 'yocto_ab': ('https://autobuilder.yoctoproject.org%s', None), |
| 80 | 'yocto_docs': ('https://docs.yoctoproject.org%s', None), |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 81 | 'yocto_git': ('https://git.yoctoproject.org/cgit/cgit.cgi%s', None), |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 82 | 'oe_home': ('https://www.openembedded.org%s', None), |
| 83 | 'oe_lists': ('https://lists.openembedded.org%s', None), |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 84 | 'oe_git': ('https://git.openembedded.org%s', None), |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 85 | 'oe_wiki': ('https://www.openembedded.org/wiki%s', None), |
| 86 | 'oe_layerindex': ('https://layers.openembedded.org%s', None), |
| 87 | 'oe_layer': ('https://layers.openembedded.org/layerindex/branch/master/layer%s', None), |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | # Intersphinx config to use cross reference with Bitbake user manual |
| 91 | intersphinx_mapping = { |
| 92 | 'bitbake': ('https://docs.yoctoproject.org/bitbake/', None) |
| 93 | } |
| 94 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 95 | # Suppress "WARNING: unknown mimetype for ..." |
| 96 | suppress_warnings = ['epub.unknown_project_files'] |
| 97 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 98 | # -- Options for HTML output ------------------------------------------------- |
| 99 | |
| 100 | # The theme to use for HTML and HTML Help pages. See the documentation for |
| 101 | # a list of builtin themes. |
| 102 | # |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 103 | try: |
| 104 | import sphinx_rtd_theme |
| 105 | html_theme = 'sphinx_rtd_theme' |
| 106 | html_theme_options = { |
| 107 | 'sticky_navigation': False, |
| 108 | } |
| 109 | except ImportError: |
| 110 | sys.stderr.write("The Sphinx sphinx_rtd_theme HTML theme was not found.\ |
| 111 | \nPlease make sure to install the sphinx_rtd_theme python package.\n") |
| 112 | sys.exit(1) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 113 | |
| 114 | html_logo = 'sphinx-static/YoctoProject_Logo_RGB.jpg' |
| 115 | |
| 116 | # Add any paths that contain custom static files (such as style sheets) here, |
| 117 | # relative to this directory. They are copied after the builtin static files, |
| 118 | # so a file named "default.css" will overwrite the builtin "default.css". |
| 119 | html_static_path = ['sphinx-static'] |
| 120 | |
| 121 | html_context = { |
| 122 | 'current_version': current_version, |
| 123 | } |
| 124 | |
| 125 | # Add customm CSS and JS files |
| 126 | html_css_files = ['theme_overrides.css'] |
| 127 | html_js_files = ['switchers.js'] |
| 128 | |
| 129 | # Hide 'Created using Sphinx' text |
| 130 | html_show_sphinx = False |
| 131 | |
| 132 | # Add 'Last updated' on each page |
| 133 | html_last_updated_fmt = '%b %d, %Y' |
| 134 | |
| 135 | # Remove the trailing 'dot' in section numbers |
| 136 | html_secnumber_suffix = " " |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 137 | |
| 138 | latex_elements = { |
| 139 | 'passoptionstopackages': '\PassOptionsToPackage{bookmarksdepth=5}{hyperref}', |
| 140 | 'preamble': '\setcounter{tocdepth}{2}', |
| 141 | } |