From 842e4e279dad0176fc0925daf744d4e00d7fab19 Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Fri, 20 Oct 2017 17:34:26 +0300 Subject: [PATCH] [docs] Fix displaying task exporters plugins ref Change-Id: Ic87bda4086ddc77412bc6bfc1bf88ca791b7c42c --- doc/ext/plugin_reference.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/ext/plugin_reference.py b/doc/ext/plugin_reference.py index f3793a49..6bad982f 100644 --- a/doc/ext/plugin_reference.py +++ b/doc/ext/plugin_reference.py @@ -189,16 +189,16 @@ def process_jsonschema(schema): CATEGORIES = { "Common": ["OS Client"], "Deployment": ["Engine", "Provider Factory"], - "Task Component": ["Chart", "Context", "Exporter", "Hook", - "Resource Type", "SLA", "Scenario", "Scenario Runner", - "Trigger"], + "Task Component": ["Chart", "Context", "Hook Action", "Hook Trigger", + "Resource Type", "Task Exporter", "SLA", "Scenario", + "Scenario Runner", "Trigger", "Validator"], "Verification Component": ["Verifier Context", "Verification Reporter", "Verifier Manager"] } # NOTE(andreykurilin): several bases do not have docstings at all, so it is # redundant to display them -IGNORED_BASES = ["Resource Type", "Task Exporter", "OS Client"] +IGNORED_BASES = ["Resource Type", "OS Client", "Exporters"] class PluginsReferenceDirective(rst.Directive):