Split tahoe --help options into groups.

This commit is contained in:
david-sarah
2010-01-11 20:39:35 -08:00
parent b94b9af189
commit b079f32da2
2 changed files with 12 additions and 29 deletions

View File

@ -164,9 +164,8 @@ def create_introducer(basedir, config, out=sys.stdout, err=sys.stderr):
subCommands = [ subCommands = [
["create-node", None, CreateNodeOptions, "Create a node that acts as a client, server or both."], ["create-client", None, CreateClientOptions, "Create a client node."],
["create-client", None, CreateClientOptions, "Create a client node (with storage initially disabled)."], ["create-introducer", None, CreateIntroducerOptions, "Create a introducer node."],
["create-introducer", None, CreateIntroducerOptions, "Create an introducer."],
] ]

View File

@ -10,40 +10,24 @@ pkg_resources.require('allmydata-tahoe')
from allmydata.scripts.common import BaseOptions from allmydata.scripts.common import BaseOptions
import debug, create_node, startstop_node, cli, keygen, stats_gatherer import debug, create_node, startstop_node, cli, keygen, stats_gatherer
def group(s): _general_commands = ( create_node.subCommands
return [["\n" + s, None, None, None]]
_commandUsage = ( group("Administration")
+ create_node.subCommands
+ keygen.subCommands + keygen.subCommands
+ stats_gatherer.subCommands + stats_gatherer.subCommands
+ group("Controlling a node")
+ startstop_node.subCommands
+ group("Debugging")
+ debug.subCommands + debug.subCommands
+ group("Using the filesystem")
+ cli.subCommands + cli.subCommands
) )
_subCommands = filter(lambda (a, b, c, d): not a.startswith("\n"), _commandUsage)
_synopsis = "Usage: tahoe <command> [command options]"
class Options(BaseOptions, usage.Options): class Options(BaseOptions, usage.Options):
synopsis = _synopsis synopsis = "Usage: tahoe <command> [command options]"
subCommands = _subCommands
def getUsage(self, **kwargs): subCommands = []
t = _Usage().getUsage(**kwargs) subCommands += _general_commands
return t + "\nPlease run 'tahoe <command> --help' for more details on each command.\n" subCommands += startstop_node.subCommands
def postOptions(self): def postOptions(self):
if not hasattr(self, 'subOptions'): if not hasattr(self, 'subOptions'):
raise usage.UsageError("must specify a command") raise usage.UsageError("must specify a command")
class _Usage(BaseOptions, usage.Options):
synopsis = _synopsis
subCommands = _commandUsage
def runner(argv, def runner(argv,
run_by_human=True, run_by_human=True,
stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr, stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr,