/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/shellcomplete.py

  • Committer: John Ferlito
  • Date: 2009-09-02 04:31:45 UTC
  • mto: (4665.7.1 serve-init)
  • mto: This revision was merged to the branch mainline in revision 4913.
  • Revision ID: johnf@inodes.org-20090902043145-gxdsfw03ilcwbyn5
Add a debian init script for bzr --serve

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
17
17
import sys
18
18
 
19
19
 
20
 
def shellcomplete(context=None, outfile=None):
 
20
def shellcomplete(context=None, outfile = None):
21
21
    if outfile is None:
22
22
        outfile = sys.stdout
23
23
    if context is None:
24
 
        shellcomplete_commands(outfile=outfile)
 
24
        shellcomplete_commands(outfile = outfile)
25
25
    else:
26
 
        shellcomplete_on_command(context, outfile=outfile)
 
26
        shellcomplete_on_command(context, outfile = outfile)
27
27
 
28
28
 
29
29
def shellcomplete_on_command(cmdname, outfile=None):
33
33
        outfile = sys.stdout
34
34
 
35
35
    from inspect import getdoc
36
 
    from . import commands
 
36
    import commands
37
37
    cmdobj = commands.get_cmd_object(cmdname)
38
38
 
39
39
    doc = getdoc(cmdobj)
40
40
    if doc is None:
41
 
        raise NotImplementedError(
42
 
            "sorry, no detailed shellcomplete yet for %r" % cmdname)
 
41
        raise NotImplementedError("sorry, no detailed shellcomplete yet for %r" % cmdname)
43
42
 
44
43
    shellcomplete_on_options(cmdobj.options().values(), outfile=outfile)
45
44
    for aname in cmdobj.takes_args:
48
47
 
49
48
def shellcomplete_on_options(options, outfile=None):
50
49
    for opt in options:
51
 
        short_name = opt.short_name()
52
 
        if short_name:
 
50
        if opt.short_name:
53
51
            outfile.write('"(--%s -%s)"{--%s,-%s}\n'
54
 
                          % (opt.name, short_name, opt.name, short_name))
 
52
                    % (opt.name, opt.short_name(), opt.name, opt.short_name()))
55
53
        else:
56
54
            outfile.write('--%s\n' % opt.name)
57
55
 
58
56
 
59
 
def shellcomplete_commands(outfile=None):
 
57
def shellcomplete_commands(outfile = None):
60
58
    """List all commands"""
61
 
    from . import commands
 
59
    import inspect
 
60
    import commands
62
61
    from inspect import getdoc
63
62
 
64
63
    commands.install_bzr_command_hooks()