From: W. Trevor King Date: Mon, 3 Sep 2012 19:18:22 +0000 (-0400) Subject: ui:command_line: display help.TOPICS during `be help`. X-Git-Tag: 1.1.0~86 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a9ab97020028ff294001b333e51349eef1579666;p=be.git ui:command_line: display help.TOPICS during `be help`. --- diff --git a/libbe/ui/command_line.py b/libbe/ui/command_line.py index b96d278..b95972f 100644 --- a/libbe/ui/command_line.py +++ b/libbe/ui/command_line.py @@ -27,6 +27,7 @@ import sys import libbe import libbe.bugdir import libbe.command +import libbe.command.help import libbe.command.util import libbe.storage import libbe.version @@ -262,11 +263,22 @@ class BE (libbe.command.Command): cmdlist.sort() longest_cmd_len = max([len(name) for name,desc in cmdlist]) ret = ['Bugs Everywhere - Distributed bug tracking', - '', 'Supported commands'] + '', 'Commands:'] for name, desc in cmdlist: numExtraSpaces = longest_cmd_len-len(name) ret.append('be {}{} {}'.format(name, ' '*numExtraSpaces, desc)) - ret.extend(['', 'Run', ' be help [command]', 'for more information.']) + + ret.extend(['', 'Topics:']) + topic_list = [ + (name,desc.splitlines()[0]) + for name,desc in sorted(libbe.command.help.TOPICS.items())] + longest_topic_len = max([len(name) for name,desc in topic_list]) + for name,desc in topic_list: + extra_spaces = longest_topic_len - len(name) + ret.append('{}{} {}'.format(name, ' '*extra_spaces, desc)) + + ret.extend(['', 'Run', ' be help [command|topic]', + 'for more information.']) return '\n'.join(ret) def version(self, *args):