From 023f5fd7e0c959fe09d26c49c534e966f3e82fb5 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 31 Oct 2014 15:06:00 -0400 Subject: [PATCH] Added note explaning the module tagging --- hacking/module_formatter.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py index 6392c83ac6b..51bea3e1350 100755 --- a/hacking/module_formatter.py +++ b/hacking/module_formatter.py @@ -325,6 +325,11 @@ def process_category(category, categories, options, env, template, outputname): if result != "SKIPPED": category_file.write(" %s - %s <%s_module>\n" % (modstring, result, module)) + category_file.write("""\n\n +.. note:: + - %s: Denotes that this module is not part of core, it can be found in the extras repo + - %s: This marks a module as deprecated, kept for backwards compatibility but use is discouraged +""" % (DEPRECATED, NOTCORE)) category_file.close() # TODO: end a new category file