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/.
5 from __future__
import absolute_import
, unicode_literals
10 # Set up Python environment to load build system packages.
11 OUR_DIR
= os
.path
.dirname(__file__
)
12 topsrcdir
= os
.path
.normpath(os
.path
.join(OUR_DIR
, ".."))
14 # Escapes $, [, ] and 3 dots in copy button
15 copybutton_prompt_text
= r
">>> |\.\.\. |\$ |In \[\d*\]: | {2,5}\.\.\.: | {5,8}: "
16 copybutton_prompt_is_regexp
= True
19 "layout/tools/reftest",
22 "python/mozversioncontrol",
23 "testing/mozbase/manifestparser",
24 "testing/mozbase/mozfile",
25 "testing/mozbase/mozprocess",
26 "third_party/python/jsmin",
27 "third_party/python/which",
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.
55 "../browser/components/extensions",
56 "../browser/components/uitour",
57 "../browser/components/urlbar",
58 "../remote/marionette",
59 "../testing/mochitest/BrowserTestUtils",
60 "../testing/mochitest/tests/SimpleTest/SimpleTest.js",
61 "../testing/mochitest/tests/SimpleTest/EventUtils.js",
62 "../testing/modules/Assert.sys.mjs",
63 "../testing/modules/TestUtils.sys.mjs",
65 "../toolkit/components/extensions",
66 "../toolkit/components/extensions/parent",
67 "../toolkit/components/featuregates",
68 "../toolkit/mozapps/extensions",
69 "../toolkit/components/prompts/src",
70 "../toolkit/components/pictureinpicture",
71 "../toolkit/components/pictureinpicture/content",
73 root_for_relative_js_paths
= ".."
74 jsdoc_config_path
= "jsdoc.json"
76 templates_path
= ["_templates"]
77 source_suffix
= [".rst", ".md"]
79 project
= "Firefox Source Docs"
80 # Override the search box to use Google instead of
87 html_logo
= os
.path
.join(
88 topsrcdir
, "browser/branding/nightly/content/firefox-wordmark.svg"
90 html_favicon
= os
.path
.join(topsrcdir
, "browser/branding/nightly/firefox.ico")
91 html_js_files
= ["https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.9.1/mermaid.js"]
93 exclude_patterns
= ["_build", "_staging", "_venv"]
94 pygments_style
= "sphinx"
96 # We need to perform some adjustment of the settings and environment
97 # when running on Read The Docs.
98 on_rtd
= os
.environ
.get("READTHEDOCS", None) == "True"
101 # SHELL isn't set on RTD and mach.mixin.process's import raises if a
102 # shell-related environment variable can't be found. Set the variable here
103 # to hack us into working on RTD.
104 assert "SHELL" not in os
.environ
105 os
.environ
["SHELL"] = "/bin/bash"
107 # We only need to set the RTD theme when not on RTD because the RTD
108 # environment handles this otherwise.
109 import sphinx_rtd_theme
111 html_theme
= "sphinx_rtd_theme"
112 html_theme_path
= [sphinx_rtd_theme
.get_html_theme_path()]
115 html_static_path
= ["_static"]
116 htmlhelp_basename
= "FirefoxTreeDocs"
118 moz_project_name
= "main"
120 html_show_copyright
= False
122 # Only run autosection for the page title.
123 # Otherwise, we have a huge number of duplicate links.
124 # For example, the page https://firefox-source-docs.mozilla.org/code-quality/lint/
125 # is called "Linting"
126 # just like https://firefox-source-docs.mozilla.org/remote/CodeStyle.html
127 autosectionlabel_maxdepth
= 1
130 def install_sphinx_panels(app
, pagename
, templatename
, context
, doctree
):
131 if "perfdocs" in pagename
:
132 app
.add_js_file("sphinx_panels.js")
133 app
.add_css_file("sphinx_panels.css")
137 app
.add_css_file("custom_theme.css")
138 app
.connect("html-page-context", install_sphinx_panels
)