Environment Collector API¶
- class sphinx.environment.collectors.EnvironmentCollector[源代码]¶
An EnvironmentCollector is a specific data collector from each document.
It gathers data and stores
BuildEnvironment
as a database. Examples of specific data would be images, download files, section titles, metadatas, index entries and toctrees, etc.- clear_doc(app: Sphinx, env: sphinx.environment.BuildEnvironment, docname: str) None [源代码]¶
Remove specified data of a document.
This method is called on the removal of the document.
- get_outdated_docs(app: Sphinx, env: sphinx.environment.BuildEnvironment, added: Set[str], changed: Set[str], removed: Set[str]) List[str] [源代码]¶
Return a list of docnames to re-read.
This methods is called before reading the documents.
- get_updated_docs(app: Sphinx, env: sphinx.environment.BuildEnvironment) List[str] [源代码]¶
Return a list of docnames to re-read.
This methods is called after reading the whole of documents (experimental).
- merge_other(app: Sphinx, env: sphinx.environment.BuildEnvironment, docnames: Set[str], other: sphinx.environment.BuildEnvironment) None [源代码]¶
Merge in specified data regarding docnames from a different BuildEnvironment object which coming from a subprocess in parallel builds.