# Copyright (C) 2005-2012 Aaron Bentley # Chris Ball # Gianluca Montecchi # Marien Zwart # Thomas Gerigk # W. Trevor King # # This file is part of Bugs Everywhere. # # Bugs Everywhere is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free # Software Foundation, either version 2 of the License, or (at your option) any # later version. # # Bugs Everywhere is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with # Bugs Everywhere. If not, see . import libbe import libbe.command import libbe.command.util TOPICS = { 'repo': """A BE repository containing child bugdirs BE repositories are stored in an abstract `Storage` instance, which may or may not be versioned. If you're using BE to track bugs in your local software, you'll probably be using an on-disk storage based on the VCS you use to version the storage. See `be help init` for details about automatic VCS-detection. """, ## 'server': """A server for remote BE command execution The usual way for a user to interact with a BE bug tracker for a particular project is to clone the project repository. They can then use their local BE client to browse the repository and make changes, before pushing their changes back upstream. For the average user seeking to file a bug or comment, this can be too much work. One way to simplify the process is to use a command server. The remote server will be running something like: $ be serve-commands --host 123.123.123.123 --port 54321 And the local client can run: $ be --server http://123.123.123.123:54321 list or whichever command they like. The command line arguments are parsed locally, and then POSTed to the command server, where the command is executed. The output of the command is returned to the client for display. """, } class Help (libbe.command.Command): """Print help for given command or topic >>> import sys >>> import libbe.bugdir >>> io = libbe.command.StringInputOutput() >>> io.stdout = sys.stdout >>> ui = libbe.command.UserInterface(io=io) >>> cmd = Help() >>> ret = ui.run(cmd, args=['help']) usage: be help [options] [TOPIC] Options: -h, --help Print a help message. --complete Print a list of possible completions. Print help for specified command/topic or list of all commands. """ name = 'help' def __init__(self, *args, **kwargs): libbe.command.Command.__init__(self, *args, **kwargs) self.args.extend([ libbe.command.Argument( name='topic', metavar='TOPIC', default=None, optional=True, completion_callback=self.complete_topic) ]) def _run(self, **params): if params['topic'] is None: if hasattr(self.ui, 'help'): print(self.ui.help().rstrip('\n'), file=self.stdout) elif params['topic'] in libbe.command.commands(command_names=True): module = libbe.command.get_command(params['topic']) Class = libbe.command.get_command_class(module,params['topic']) c = Class(ui=self.ui) self.ui.setup_command(c) print(c.help().rstrip('\n'), file=self.stdout) elif params['topic'] in TOPICS: print(TOPICS[params['topic']].rstrip('\n'), file=self.stdout) else: raise libbe.command.UserError( '"%s" is neither a command nor topic' % params['topic']) return 0 def _long_help(self): return """ Print help for specified command/topic or list of all commands. """ def complete_topic(self, command, argument, fragment=None): commands = libbe.command.util.complete_command() topics = sorted(TOPICS.keys()) return commands + topics