From: Sebastian Pipping Date: Thu, 20 Jan 2011 17:31:14 +0000 (+0100) Subject: docmatcher: Re-order output sections for practical reasons X-Git-Tag: v3.4.12~1^2~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f184b664b2d7f77afe64f7393a9bacead8e11bbd;p=genkernel.git docmatcher: Re-order output sections for practical reasons - Lists expected empty to the end - Before that order by importance (ascending) --- diff --git a/maintenance/docmatcher.py b/maintenance/docmatcher.py index 3bc8b4f..c128a5e 100644 --- a/maintenance/docmatcher.py +++ b/maintenance/docmatcher.py @@ -252,21 +252,21 @@ def main(): # Future work (due extensions) - print('Options missing from the *man page*:') - print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_8_txt_long_params)) - - print('Options missing from *--help*:') - print_set(gen_cmdline_sh_parsing_long_params.difference(gen_cmdline_sh_usage_long_params)) + print('Variables missing from *web page*:') + print_set(known_variales.difference(genkernel_xml_variables)) print('Options missing from *web page*:') print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_xml_long_params)) - print('Variables missing from *web page*:') - print_set(known_variales.difference(genkernel_xml_variables)) - print('Variables missing from *genkernel.conf*:') print_set(known_variales.difference(genkernel_conf_variables)) + print('Options missing from the *man page*:') + print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_8_txt_long_params)) + + print('Options missing from *--help*:') + print_set(gen_cmdline_sh_parsing_long_params.difference(gen_cmdline_sh_usage_long_params)) + # Future work (due removal and updates) print('Removed options still mentioned in the *man page*:')