Mozilla Source Tree Documentation¶
- SSL Error Reporting
- Firefox
- Telemetry Experiments
- Build System
- WebIDL
- Graphics
- Firefox for Android
- Indices and tables
- Localization
- mach
- CloudSync
- TaskCluster Task-Graph Generation
- Crash Manager
- Telemetry
- Crash Reporter
- Supbrocess Module
- Toolkit modules
- Add-on Manager
- Linting
- Indices and tables
- Mozilla ESLint Plugin
Python Packages¶
- mach package
- mozbuild package
- Subpackages
- Submodules
- mozbuild.android_version_code module
- mozbuild.artifacts module
- mozbuild.base module
- mozbuild.config_status module
- mozbuild.doctor module
- mozbuild.dotproperties module
- mozbuild.html_build_viewer module
- mozbuild.jar module
- mozbuild.mach_commands module
- mozbuild.makeutil module
- mozbuild.milestone module
- mozbuild.mozconfig module
- mozbuild.mozinfo module
- mozbuild.preprocessor module
- mozbuild.pythonutil module
- mozbuild.shellutil module
- mozbuild.sphinx module
- mozbuild.testing module
- mozbuild.util module
- mozbuild.virtualenv module
- Module contents
- mozlint package
- mozpack package
- mozversioncontrol package
- mozwebidlcodegen package
Managing Documentation¶
This documentation is generated via the Sphinx tool from sources in the tree.
To build the documentation, run mach doc. Run
mach help doc to see configurable options.
Adding Documentation¶
To add new documentation, define the SPHINX_TREES and
SPHINX_PYTHON_PACKAGE_DIRS variables in moz.build files in
the tree and documentation will automatically get picked up.
Say you have a directory featureX you would like to write some
documentation for. Here are the steps to create Sphinx documentation
for it:
- Create a directory for the docs. This is typically
docs. e.g.featureX/docs. - Create an
index.rstfile in this directory. Theindex.rstfile is the root documentation for that section. Seebuild/docs/index.rstfor an example file. - In a
moz.buildfile (typically the one in the parent directory of thedocsdirectory), defineSPHINX_TREESto hook up the plumbing. e.g.SPHINX_TREES['featureX'] = 'docs'. This says the ``docs`` directory under the current directory should be installed into the Sphinx documentation tree under ``/featureX``. - If you have Python packages you would like to generate Python API
documentation for, you can use
SPHINX_PYTHON_PACKAGE_DIRSto declare directories containing Python packages. e.g.SPHINX_PYTHON_PACKAGE_DIRS += ['mozpackage'].