1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # Set up Python environment to load build system packages.
9 OUR_DIR
= os
.path
.dirname(__file__
)
10 topsrcdir
= os
.path
.normpath(os
.path
.join(OUR_DIR
, ".."))
12 # Escapes $, [, ] and 3 dots in copy button
13 copybutton_prompt_text
= r
">>> |\.\.\. |\$ |In \[\d*\]: | {2,5}\.\.\.: | {5,8}: "
14 copybutton_prompt_is_regexp
= True
17 "layout/tools/reftest",
20 "python/mozversioncontrol",
21 "testing/mozbase/manifestparser",
22 "testing/mozbase/mozfile",
23 "testing/mozbase/mozprocess",
24 "testing/mozbase/moznetwork/moznetwork",
25 "third_party/python/jsmin",
26 "third_party/python/which",
28 "taskcluster/gecko_taskgraph/test",
31 sys
.path
[:0] = [os
.path
.join(topsrcdir
, p
) for p
in EXTRA_PATHS
]
33 sys
.path
.insert(0, OUR_DIR
)
38 "sphinx.ext.autosectionlabel",
40 "sphinx.ext.graphviz",
41 "sphinx.ext.napoleon",
45 "sphinxcontrib.mermaid",
47 "sphinx_markdown_tables",
52 # JSDoc must run successfully for dirs specified, so running
53 # tree-wide (the default) will not work currently.
54 # When adding more paths to this list, please ensure that they are not
55 # excluded from valid-jsdoc in the top-level .eslintrc.js.
57 "../browser/components/extensions",
58 "../browser/components/migration",
59 "../browser/components/migration/content",
60 "../browser/components/uitour",
61 "../browser/components/urlbar",
62 "../remote/marionette",
63 "../testing/mochitest/BrowserTestUtils",
64 "../testing/mochitest/tests/SimpleTest/SimpleTest.js",
65 "../testing/mochitest/tests/SimpleTest/EventUtils.js",
66 "../testing/modules/Assert.sys.mjs",
67 "../testing/modules/TestUtils.sys.mjs",
69 "../toolkit/components/extensions",
70 "../toolkit/components/extensions/parent",
71 "../toolkit/components/featuregates",
72 "../toolkit/mozapps/extensions",
73 "../toolkit/components/prompts/src",
74 "../toolkit/components/pictureinpicture",
75 "../toolkit/components/pictureinpicture/content",
77 root_for_relative_js_paths
= ".."
78 jsdoc_config_path
= "jsdoc.json"
80 templates_path
= ["_templates"]
81 source_suffix
= [".rst", ".md"]
83 project
= "Firefox Source Docs"
85 # Override the search box to use Google instead of
86 # sphinx search on firefox-source-docs.mozilla.org
88 os
.environ
.get("MOZ_SOURCE_DOCS_USE_GOOGLE") == "1"
89 and os
.environ
.get("MOZ_SCM_LEVEL") == "3"
91 templates_path
.append("_search_template")
98 html_logo
= os
.path
.join(
99 topsrcdir
, "browser/branding/nightly/content/firefox-wordmark.svg"
101 html_favicon
= os
.path
.join(topsrcdir
, "browser/branding/nightly/firefox.ico")
103 exclude_patterns
= ["_build", "_staging", "_venv"]
104 pygments_style
= "sphinx"
105 # generate label “slugs” for header anchors so that
106 # we can reference them from markdown links.
107 myst_heading_anchors
= 5
109 # We need to perform some adjustment of the settings and environment
110 # when running on Read The Docs.
111 on_rtd
= os
.environ
.get("READTHEDOCS", None) == "True"
114 # SHELL isn't set on RTD and mach.mixin.process's import raises if a
115 # shell-related environment variable can't be found. Set the variable here
116 # to hack us into working on RTD.
117 assert "SHELL" not in os
.environ
118 os
.environ
["SHELL"] = "/bin/bash"
120 # We only need to set the RTD theme when not on RTD because the RTD
121 # environment handles this otherwise.
122 import sphinx_rtd_theme
124 html_theme
= "sphinx_rtd_theme"
125 html_theme_path
= [sphinx_rtd_theme
.get_html_theme_path()]
128 html_static_path
= ["_static"]
129 htmlhelp_basename
= "FirefoxTreeDocs"
131 moz_project_name
= "main"
133 html_show_copyright
= False
135 # Only run autosection for the page title.
136 # Otherwise, we have a huge number of duplicate links.
137 # For example, the page https://firefox-source-docs.mozilla.org/code-quality/lint/
138 # is called "Linting"
139 # just like https://firefox-source-docs.mozilla.org/remote/CodeStyle.html
140 autosectionlabel_maxdepth
= 1
143 def install_sphinx_design(app
, pagename
, templatename
, context
, doctree
):
144 if "perfdocs" in pagename
:
145 app
.add_js_file("sphinx_design.js")
146 app
.add_css_file("sphinx_design.css")
150 app
.add_css_file("custom_theme.css")
151 app
.connect("html-page-context", install_sphinx_design
)