Lines Matching +full:doxygen +full:- +full:version
2 # SPDX-License-Identifier: Apache-2.0
17 of all APIs. This table will show the API name, version and since which
18 version it is present - all information extracted from Doxygen XML output.
24 api_overview_doxygen_xml_dir: Doxygen xml output directory
25 api_overview_doxygen_base_url: Doxygen base html directory
44 version = since = ""
45 github_uri = "https://github.com/zephyrproject-rtos/zephyr/releases/tag/"
54 elif sect.get_kind() == "version":
55 version = sect.get_para()[0].get_valueOf_()
87 version_node = nodes.Text(version)
88 # Finally, add version and since
118 for header_name in ["API", "Version", "Available in Zephyr Since"]:
140 def sync_contents(app: Sphinx) -> None:
166 def setup(app) -> dict[str, Any]:
167 app.add_config_value("api_overview_doxygen_xml_dir", "html/doxygen/xml", "env")
168 app.add_config_value("api_overview_doxygen_base_url", "../../doxygen/html", "env")
170 app.add_directive("api-overview-table", ApiOverview)
172 app.connect("builder-inited", sync_contents)
175 "version": "0.1",