~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/text.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-17 17:42:03 UTC
  • mfrom: (5035.2.4 nomoreserialiseinv)
  • Revision ID: pqm@pqm.ubuntu.com-20100217174203-bd8elqnhq6w48xb2
(Jelmer) Remove Repository._serialise_inventory_to_{lines,string}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
""")
39
39
 
40
 
from bzrlib.osutils import watch_sigwinch
41
 
 
42
40
from bzrlib.ui import (
43
41
    UIFactory,
44
42
    NullProgressView,
62
60
        self.stderr = stderr
63
61
        # paints progress, network activity, etc
64
62
        self._progress_view = self.make_progress_view()
65
 
        # hook up the signals to watch for terminal size changes
66
 
        watch_sigwinch()
67
 
 
 
63
        
68
64
    def be_quiet(self, state):
69
65
        if state and not self._quiet:
70
66
            self.clear_term()
253
249
    def _progress_all_finished(self):
254
250
        self._progress_view.clear()
255
251
 
256
 
    def show_user_warning(self, warning_id, **message_args):
257
 
        """Show a text message to the user.
258
 
 
259
 
        Explicitly not for warnings about bzr apis, deprecations or internals.
260
 
        """
261
 
        # eventually trace.warning should migrate here, to avoid logging and
262
 
        # be easier to test; that has a lot of test fallout so for now just
263
 
        # new code can call this
264
 
        if warning_id not in self.suppressed_warnings:
265
 
            self.stderr.write(self.format_user_warning(warning_id, message_args) +
266
 
                '\n')
267
 
 
268
252
 
269
253
class TextProgressView(object):
270
254
    """Display of progress bar and other information on a tty.