docmatcher: Re-order output to have issues on incorrect information (due removals...
authorSebastian Pipping <sebastian@pipping.org>
Mon, 6 Dec 2010 07:43:27 +0000 (08:43 +0100)
committerSebastian Pipping <sebastian@pipping.org>
Mon, 6 Dec 2010 07:43:27 +0000 (08:43 +0100)
maintenance/docmatcher.py

index 0fb26bc68a22c82f746d5dc24cae4b69c7da1a80..b2949854048360ed4a8fa2cbd5941ddc83744f86 100644 (file)
@@ -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))