Lines Matching full:manifest
2 Manifest Revisions Table
6 present in a manifest file.
11 This extension introduces a new directive: ``manifest-projects-table``. It can
14 .. manifest-projects-table::
22 - ``manifest_projects_table_manifest``: Path to the manifest file.
36 from west.manifest import Manifest
42 """Manifest revisions table."""
72 manifest = Manifest.from_file(self.env.config.manifest_projects_table_manifest)
74 for project in manifest.projects:
75 if project.name == "manifest":
79 and manifest.is_active(project)
81 and not manifest.is_active(project)
137 directives.register_directive("manifest-projects-table", ManifestProjectsTable)