From 5dc51fea740a2e2e2fa3d4462efe719ce0ab02b1 Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Sun, 28 May 2006 23:25:19 +0200 Subject: [PATCH] Classify commands in stg --help output. Commands will be much easier to find out that way. Inspiration mostly comes from pg-help. Signed-off-by: Yann Dirson --- stgit/main.py | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 70 insertions(+), 4 deletions(-) diff --git a/stgit/main.py b/stgit/main.py index df4e1f5..e80bd1a 100644 --- a/stgit/main.py +++ b/stgit/main.py @@ -100,19 +100,85 @@ commands = { 'uncommit': stgit.commands.uncommit, } +# classification: repository, stack, patch, working copy +repocommands = ( + 'branch', + 'clone', + 'id', + 'pull' + ) +stackcommands = ( + 'applied', + 'clean', + 'commit', + 'goto', + 'init', + 'pop', + 'push', + 'series', + 'top', + 'unapplied', + 'uncommit' + ) +patchcommands = ( + 'delete', + 'export', + 'files', + 'fold', + 'import', + 'mail', + 'new', + 'pick', + 'refresh', + 'rename', + 'show' + ) +wccommands = ( + 'add', + 'diff', + 'patches', + 'resolved', + 'rm', + 'status' + ) + +def _print_helpstring(cmd): + print ' ' + cmd + ' ' * (12 - len(cmd)) + commands[cmd].help + def print_help(): print 'usage: %s [options]' % os.path.basename(sys.argv[0]) print - print 'commands:' + print 'Generic commands:' print ' help print the detailed command usage' print ' version display version information' print ' copyright display copyright information' - print - + # unclassified commands if any cmds = commands.keys() cmds.sort() for cmd in cmds: - print ' ' + cmd + ' ' * (12 - len(cmd)) + commands[cmd].help + if not cmd in repocommands and not cmd in stackcommands \ + and not cmd in patchcommands and not cmd in wccommands: + _print_helpstring(cmd) + print + + print 'Repository commands:' + for cmd in repocommands: + _print_helpstring(cmd) + print + + print 'Stack commands:' + for cmd in stackcommands: + _print_helpstring(cmd) + print + + print 'Patch commands:' + for cmd in patchcommands: + _print_helpstring(cmd) + print + + print 'Working-copy commands:' + for cmd in wccommands: + _print_helpstring(cmd) # # The main function (command dispatcher) -- 2.11.0