~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to terminal.py

  • Committer: Aaron Bentley
  • Date: 2007-06-11 05:08:34 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20070611050834-wcbta2pfitcuopku
fix long-line detection

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
import os
 
19
import sys
19
20
 
20
21
__docformat__ = "restructuredtext"
21
22
__doc__ = "Terminal control functionality"
24
25
    # XXX The whole color handling should be rewritten to use terminfo
25
26
    # XXX before we get there, checking for setaf capability should do.
26
27
    # XXX See terminfo(5) for all the gory details.
 
28
    if sys.platform == "win32":
 
29
        return False
27
30
    import curses
28
31
    curses.setupterm()
29
32
    return bool(curses.tigetstr('setaf'))
39
42
"white": "7"
40
43
}
41
44
 
42
 
def colorstring(text, fgcolor=None, bright=False, bgcolor=None):
 
45
def colorstring(text, fgcolor=None, bgcolor=None):
43
46
    """
44
47
    Returns a string using ANSI control codes to set the text color.
45
48
 
47
50
    :type text: string
48
51
    :param fgcolor: The foreground color to use
49
52
    :type fgcolor: string
50
 
    :param bright: If true, make the foreground color bright
51
 
    :type bright: bool
52
53
    :param bgcolor: The background color to use
53
54
    :type bgcolor: string
54
55
    """
55
56
    code = []
56
 
    if (bright): 
57
 
        code.append("1")
58
 
    if (fgcolor): 
59
 
        code.append('3'+colors[fgcolor])
60
 
    if (bgcolor): 
61
 
        code.append("4"+colors[bgcolor])
 
57
 
 
58
    if fgcolor:
 
59
        if fgcolor.startswith('dark'):
 
60
            code.append('0')
 
61
            fgcolor = fgcolor[4:]
 
62
        else:
 
63
            code.append('1')
 
64
 
 
65
        code.append('3' + colors[fgcolor])
 
66
 
 
67
    if bgcolor:
 
68
        code.append('4' + colors[bgcolor])
 
69
 
62
70
    return "".join(("\033[", ';'.join(code), "m", text, "\033[0m"))
63
71
 
 
72
 
64
73
def term_title(title):
65
74
    term = os.environ.get('TERM', '')
66
75
    if term.startswith('xterm') or term == 'dtterm':