/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 breezy/help.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-06 02:25:29 UTC
  • mto: This revision was merged to the branch mainline in revision 7150.
  • Revision ID: jelmer@jelmer.uk-20181106022529-qlctdqketvoibpvz
Simplify brz-git, drop imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005-2011 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
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
from __future__ import absolute_import
 
18
 
17
19
# TODO: Some way to get a list of external commands (defined by shell
18
20
# scripts) so that they can be included in the help listing as well.
19
21
# It should be enough to just list the plugin directory and look for
22
24
# TODO: `help commands --all` should show hidden commands
23
25
 
24
26
import sys
25
 
import textwrap
26
27
 
27
 
from bzrlib import (
 
28
from . import (
28
29
    commands as _mod_commands,
29
30
    errors,
30
31
    help_topics,
31
32
    osutils,
32
33
    plugin,
 
34
    ui,
 
35
    utextwrap,
33
36
    )
34
37
 
35
38
 
 
39
class NoHelpTopic(errors.BzrError):
 
40
 
 
41
    _fmt = ("No help could be found for '%(topic)s'. "
 
42
        "Please use 'brz help topics' to obtain a list of topics.")
 
43
 
 
44
    def __init__(self, topic):
 
45
        self.topic = topic
 
46
 
 
47
 
36
48
def help(topic=None, outfile=None):
37
49
    """Write the help for the specific topic to outfile"""
38
50
    if outfile is None:
39
 
        outfile = sys.stdout
 
51
        outfile = ui.ui_factory.make_output_stream()
40
52
 
41
53
    indices = HelpIndices()
42
54
 
44
56
    try:
45
57
        topics = indices.search(topic)
46
58
        shadowed_terms = []
47
 
        for index, topic in topics[1:]:
 
59
        for index, topic_obj in topics[1:]:
48
60
            shadowed_terms.append('%s%s' % (index.prefix,
49
 
                topic.get_help_topic()))
 
61
                topic_obj.get_help_topic()))
50
62
        source = topics[0][1]
51
63
        outfile.write(source.get_help_text(shadowed_terms))
52
 
    except errors.NoHelpTopic:
 
64
    except NoHelpTopic:
53
65
        if alias is None:
54
66
            raise
55
67
 
56
68
    if alias is not None:
57
 
        outfile.write("'bzr %s' is an alias for 'bzr %s'.\n" % (topic,
 
69
        outfile.write("'brz %s' is an alias for 'brz %s'.\n" % (topic,
58
70
            " ".join(alias)))
59
71
 
60
72
 
61
73
def help_commands(outfile=None):
62
74
    """List all commands"""
63
75
    if outfile is None:
64
 
        outfile = sys.stdout
 
76
        outfile = ui.ui_factory.make_output_stream()
65
77
    outfile.write(_help_commands_to_text('commands'))
66
78
 
67
79
 
96
108
        else:
97
109
            firstline = ''
98
110
        helpstring = '%-*s %s%s' % (max_name, cmd_name, firstline, plugin_name)
99
 
        lines = textwrap.wrap(
 
111
        lines = utextwrap.wrap(
100
112
            helpstring, subsequent_indent=indent,
101
113
            width=width,
102
114
            break_long_words=False)
135
147
            help_topics.HelpTopicIndex(),
136
148
            _mod_commands.HelpCommandIndex(),
137
149
            plugin.PluginsHelpIndex(),
 
150
            help_topics.ConfigOptionHelpIndex(),
138
151
            ]
139
152
 
140
153
    def _check_prefix_uniqueness(self):
141
154
        """Ensure that the index collection is able to differentiate safely."""
142
 
        prefixes = {}
 
155
        prefixes = set()
143
156
        for index in self.search_path:
144
 
            prefixes.setdefault(index.prefix, []).append(index)
145
 
        for prefix, indices in prefixes.items():
146
 
            if len(indices) > 1:
 
157
            prefix = index.prefix
 
158
            if prefix in prefixes:
147
159
                raise errors.DuplicateHelpPrefix(prefix)
 
160
            prefixes.add(prefix)
148
161
 
149
162
    def search(self, topic):
150
163
        """Search for topic across the help search path.
158
171
        for index in self.search_path:
159
172
            result.extend([(index, _topic) for _topic in index.get_topics(topic)])
160
173
        if not result:
161
 
            raise errors.NoHelpTopic(topic)
 
174
            raise NoHelpTopic(topic)
162
175
        else:
163
176
            return result