~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

terminal_width can now returns None.

* bzrlib/win32utils.py:
(get_console_size): Fix typo in comment.

* bzrlib/ui/text.py:
(TextProgressView._show_line): Handle the no terminal present case.

* bzrlib/tests/test_osutils.py:
(TestTerminalWidth): Update tests.

* bzrlib/tests/blackbox/test_too_much.py:
Fix some imports.
(OldTests.test_bzr): Handle the no terminal present case.

* bzrlib/tests/__init__.py:
(VerboseTestResult.report_test_start): Handle the no terminal
present case.

* bzrlib/status.py:
(show_pending_merges): Handle the no terminal present case.
(show_pending_merges.show_log_message): Factor out some
code. Handle the no terminal present case.

* bzrlib/osutils.py:
(terminal_width): Return None if no precise value can be found.

* bzrlib/log.py:
(LineLogFormatter.__init__): Handle the no terminal present case.
(LineLogFormatter.truncate): Accept None as max_len meaning no
truncation.
(LineLogFormatter.log_string): 

* bzrlib/help.py:
(_help_commands_to_text): Handle the no terminal present case.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1543
1543
 
1544
1544
    def __init__(self, *args, **kwargs):
1545
1545
        super(LineLogFormatter, self).__init__(*args, **kwargs)
1546
 
        self._max_chars = terminal_width() - 1
 
1546
        width = terminal_width()
 
1547
        if width is not None:
 
1548
            # we need one extra space for terminals that wrap on last char
 
1549
            width = width - 1
 
1550
        self._max_chars = width
1547
1551
 
1548
1552
    def truncate(self, str, max_len):
1549
 
        if len(str) <= max_len:
 
1553
        if max_len is None or len(str) <= max_len:
1550
1554
            return str
1551
 
        return str[:max_len-3]+'...'
 
1555
        return str[:max_len-3] + '...'
1552
1556
 
1553
1557
    def date_string(self, rev):
1554
1558
        return format_date(rev.timestamp, rev.timezone or 0,