Filter for disable_import

Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-committed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
This commit is contained in:
2024-06-24 12:35:13 +00:00
committed by zuul
parent 00fd8fd30b
commit cc0c94a163
29 changed files with 46 additions and 1 deletions

View File

@ -12,12 +12,26 @@ def main():
data = otc_metadata.services.Services()
data._sort_data()
docs = data.docs_html_by_category("internal")
# Filter out documents with "disable_import": True
for category, services in docs['categories'].items():
for service in services:
filtered_docs = []
for doc in service['docs']:
# Check if the document doesnt have 'disable_import' on True
if not doc.get('disable_import'):
filtered_docs.append(doc)
service['docs'] = filtered_docs
_yaml = YAML()
_yaml.indent(mapping=2, sequence=4, offset=2)
sys.stdout.write(
"# Auto-generated by otc_metadata.generate_docexports.data\n"
)
_yaml.dump(data.docs_html_by_category("internal"), sys.stdout)
_yaml.dump(docs, sys.stdout)
if __name__ == "__main__":