From: Sebastian Pipping Date: Mon, 6 Dec 2010 07:43:27 +0000 (+0100) Subject: docmatcher: Re-order output to have issues on incorrect information (due removals... X-Git-Tag: v3.4.10.908~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=55b0c75a0dc70a1dee2e9d651b1ae05f2d0a0c43;p=genkernel.git docmatcher: Re-order output to have issues on incorrect information (due removals and updates) come last --- diff --git a/maintenance/docmatcher.py b/maintenance/docmatcher.py index 0fb26bc..b294985 100644 --- a/maintenance/docmatcher.py +++ b/maintenance/docmatcher.py @@ -234,38 +234,36 @@ def main(): print_set(genkernel_conf_variables) - # Future work + # Future work (due extensions) print('Options missing from the *man page*:') print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_8_long_params)) - print('Removed options still mentioned in the *man page*:') - print_set(genkernel_8_long_params.difference(gen_cmdline_sh_parsing_long_params)) - - print('Options missing from *--help*:') print_set(gen_cmdline_sh_parsing_long_params.difference(gen_cmdline_sh_usage_long_params)) - print('Removed options still mentioned in *--help*:') - print_set(gen_cmdline_sh_usage_long_params.difference(gen_cmdline_sh_parsing_long_params)) - - print('Options missing from *web page*:') print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_xml_long_params)) - print('Removed options still mentioned in *web page*:') - print_set(genkernel_xml_long_params.difference(gen_cmdline_sh_parsing_long_params)) - - print('Variables missing from *web page*:') print_set(known_variales.difference(genkernel_xml_variables)) - print('Removed variables still mentioned in *web page*:') - print_set(genkernel_xml_variables.difference(known_variales)) - - print('Variables missing from *genkernel.conf*:') print_set(known_variales.difference(genkernel_conf_variables)) + + # Future work (due removal and updates) + print('Removed options still mentioned in the *man page*:') + print_set(genkernel_8_long_params.difference(gen_cmdline_sh_parsing_long_params)) + + print('Removed options still mentioned in *--help*:') + print_set(gen_cmdline_sh_usage_long_params.difference(gen_cmdline_sh_parsing_long_params)) + + print('Removed options still mentioned in *web page*:') + print_set(genkernel_xml_long_params.difference(gen_cmdline_sh_parsing_long_params)) + + print('Removed variables still mentioned in *web page*:') + print_set(genkernel_xml_variables.difference(known_variales)) + print('Removed variables still mentioned in *genkernel.conf*:') print_set(genkernel_conf_variables.difference(known_variales))