Lines Matching refs:app
27 def subst_vars_replace(app: Sphinx, docname, source):
33 def yocto_vars_env_get_outdated(app: Sphinx, env, added, changed, removed):
41 poky_cache = Path(app.outdir) / ".poky.yaml.cache"
50 for p in Path(app.srcdir).rglob("*.rst"):
52 p_rel_no_ext = p.relative_to(app.srcdir).parent / p.stem
56 def yocto_vars_build_finished(app: Sphinx, exception):
57 poky_cache = Path(app.outdir) / ".poky.yaml.cache"
65 def setup(app: Sphinx):
78 app.connect('source-read', subst_vars_replace)
79 app.connect('env-get-outdated', yocto_vars_env_get_outdated)
80 app.connect('build-finished', yocto_vars_build_finished)