Some various comments about the new repos, more to likely come.

This commit is contained in:
Michael DeHaan 2014-09-26 17:52:50 -04:00
parent bceb0026a5
commit e8fe306cef
6 changed files with 91 additions and 16 deletions

View file

@ -192,6 +192,7 @@ def process_module(module, options, env, template, outputname, module_map):
print "rendering: %s" % module
fname = module_map[module]
# ignore files with extensions
@ -209,6 +210,13 @@ def process_module(module, options, env, template, outputname, module_map):
if doc is None:
return "SKIPPED"
if "core" in module:
print "CORE"
doc['core'] = True
else:
doc['core'] = False
all_keys = []
if not 'version_added' in doc: