~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-09 17:04:46 UTC
  • mfrom: (6055.1.3 822571-bzr-home-unicode)
  • Revision ID: pqm@pqm.ubuntu.com-20110809170446-f1wc1a8fhgnxi4cn
(vila) Decode BZR_HOME with fs encoding to allow unicode homes. (Vincent
 Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
from bzrlib.lazy_import import lazy_import
48
48
lazy_import(globals(), """
49
49
from bzrlib import (
 
50
    config,
50
51
    osutils,
51
52
    progress,
52
53
    trace,
145
146
            "This may take some time. Upgrade the repositories to the "
146
147
            "same format for better performance."
147
148
            ),
 
149
        experimental_format_fetch=("Fetching into experimental format "
 
150
            "%(to_format)s.\n"
 
151
            "This format may be unreliable or change in the future "
 
152
            "without an upgrade path.\n"),
148
153
        deprecated_command=(
149
154
            "The command 'bzr %(deprecated_name)s' "
150
155
            "has been deprecated in bzr %(deprecated_in_version)s. "
154
159
            "It is recommended that you upgrade by "
155
160
            "running the command\n"
156
161
            "  bzr upgrade %(basedir)s"),
 
162
        locks_steal_dead=(
 
163
            u"Stole dead lock %(lock_url)s %(other_holder_info)s."),
157
164
        )
158
165
 
159
166
    def __init__(self):
204
211
        """
205
212
        return self.get_boolean(prompt % prompt_kwargs)
206
213
 
207
 
    def get_password(self, prompt='', **kwargs):
 
214
    def get_password(self, prompt=u'', **kwargs):
208
215
        """Prompt the user for a password.
209
216
 
210
 
        :param prompt: The prompt to present the user
 
217
        :param prompt: The prompt to present the user (must be unicode)
211
218
        :param kwargs: Arguments which will be expanded into the prompt.
212
219
                       This lets front ends display different things if
213
220
                       they so choose.
241
248
        """
242
249
        # XXX: is the caller supposed to close the resulting object?
243
250
        if encoding is None:
244
 
            from bzrlib import config
245
 
            encoding = config.GlobalConfig().get_user_option(
246
 
                'output_encoding')
 
251
            encoding = config.GlobalStack().get('output_encoding')
247
252
        if encoding is None:
248
253
            encoding = osutils.get_terminal_encoding(trace=True)
249
254
        if encoding_type is None:
304
309
        try:
305
310
            template = self._user_warning_templates[warning_id]
306
311
        except KeyError:
307
 
            fail = "failed to format warning %r, %r" % (warning_id, message_args)
308
 
            warnings.warn(fail)   # so tests will fail etc
 
312
            fail = "bzr warning: %r, %r" % (warning_id, message_args)
 
313
            warnings.warn("no template for warning: " + fail)   # so tests will fail etc
309
314
            return fail
310
315
        try:
311
316
            return template % message_args
312
317
        except ValueError, e:
313
 
            fail = "failed to format warning %r, %r: %s" % (
 
318
            fail = "bzr unprintable warning: %r, %r, %s" % (
314
319
                warning_id, message_args, e)
315
320
            warnings.warn(fail)   # so tests will fail etc
316
321
            return fail
406
411
        """Show a warning to the user."""
407
412
        raise NotImplementedError(self.show_warning)
408
413
 
409
 
    def warn_cross_format_fetch(self, from_format, to_format):
410
 
        """Warn about a potentially slow cross-format transfer.
411
 
        
412
 
        This is deprecated in favor of show_user_warning, but retained for api
413
 
        compatibility in 2.0 and 2.1.
414
 
        """
415
 
        self.show_user_warning('cross_format_fetch', from_format=from_format,
416
 
            to_format=to_format)
417
 
 
418
 
    def warn_experimental_format_fetch(self, inter):
419
 
        """Warn about fetching into experimental repository formats."""
420
 
        if inter.target._format.experimental:
421
 
            trace.warning("Fetching into experimental format %s.\n"
422
 
                "This format may be unreliable or change in the future "
423
 
                "without an upgrade path.\n" % (inter.target._format,))
424
 
 
425
414
 
426
415
class NoninteractiveUIFactory(UIFactory):
427
416
    """Base class for UIs with no user."""
483
472
    def get_integer(self, prompt):
484
473
        return self.responses.pop(0)
485
474
 
486
 
    def get_password(self, prompt='', **kwargs):
 
475
    def get_password(self, prompt=u'', **kwargs):
487
476
        return self.responses.pop(0)
488
477
 
489
478
    def get_username(self, prompt, **kwargs):