mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +00:00
Cleanup tag filtering code for statementlist:: RST directive
Technically this is fixup for
33931c97fa
but that commit is already merged.
This commit is contained in:
@@ -442,20 +442,13 @@ def domain_factory(domainname, domainlabel, todolist, grammar):
|
|||||||
TableColumn("ref", "Statement"),
|
TableColumn("ref", "Statement"),
|
||||||
TableColumn("short", "Description"),
|
TableColumn("short", "Description"),
|
||||||
]
|
]
|
||||||
table_b = DictToDocutilsTableBuilder(table_header)
|
|
||||||
table_b.append_iterable(
|
|
||||||
sorted(
|
|
||||||
iscconf.list_all(fromdocname),
|
|
||||||
key=lambda x: x["fullname"],
|
|
||||||
)
|
|
||||||
)
|
|
||||||
tag_header = []
|
tag_header = []
|
||||||
|
|
||||||
if len(acceptable_tags) != 1:
|
if len(acceptable_tags) != 1:
|
||||||
# tags column only if tag filter is not applied
|
# tags column only if tag filter is not applied
|
||||||
tag_header = [
|
tag_header = [
|
||||||
TableColumn("tags_txt", "Tags"),
|
TableColumn("tags_txt", "Tags"),
|
||||||
]
|
]
|
||||||
|
|
||||||
table_b = DictToDocutilsTableBuilder(table_header + tag_header)
|
table_b = DictToDocutilsTableBuilder(table_header + tag_header)
|
||||||
table_b.append_iterable(
|
table_b.append_iterable(
|
||||||
sorted(
|
sorted(
|
||||||
|
Reference in New Issue
Block a user