comparison util/generate_changelog.py @ 637:7940861ff9bc

cm: Fix categorization of CHANGELOG entries for new commands.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 09 Feb 2016 21:52:17 -0800
parents 442cf576ae25
children
comparison
equal deleted inserted replaced
636:a5910616ee59 637:7940861ff9bc
16 re_clean_code_span = re.compile('([^\s])``([^\s]+)') 16 re_clean_code_span = re.compile('([^\s])``([^\s]+)')
17 17
18 category_commands = [ 18 category_commands = [
19 'chef', 'bake', 'find', 'help', 'import', 'init', 'paths', 'plugin', 19 'chef', 'bake', 'find', 'help', 'import', 'init', 'paths', 'plugin',
20 'plugins', 'prepare', 'purge', 'root', 'routes', 'serve', 20 'plugins', 'prepare', 'purge', 'root', 'routes', 'serve',
21 'showconfig', 'showrecord', 'sources', 'theme', 'themes'] 21 'showconfig', 'showrecord', 'sources', 'theme', 'themes', 'admin',
22 'publish']
22 category_core = [ 23 category_core = [
23 'internal', 'bug', 'templating', 'formatting', 'performance', 24 'internal', 'bug', 'templating', 'formatting', 'performance',
24 'data', 'config', 'rendering', 'render', 'debug', 'reporting', 25 'data', 'config', 'rendering', 'render', 'debug', 'reporting',
25 'linker', 'pagination', 'routing', 'caching'] 26 'linker', 'pagination', 'routing', 'caching', 'cli']
26 category_project = ['build', 'cm', 'docs', 'tests', 'setup'] 27 category_project = ['build', 'cm', 'docs', 'tests', 'setup']
27 categories = [ 28 categories = [
28 ('commands', category_commands), 29 ('commands', category_commands),
29 ('core', category_core), 30 ('core', category_core),
30 ('project', category_project), 31 ('project', category_project),