~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to terminal.py

  • Committer: Aaron Bentley
  • Date: 2005-12-14 14:33:05 UTC
  • Revision ID: abentley@panoramicfeedback.com-20051214143305-42718d97f27c03bd
Avoided leaving junk all over the place when running standalone tests.

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
20
19
 
21
20
__docformat__ = "restructuredtext"
22
21
__doc__ = "Terminal control functionality"
25
24
    # XXX The whole color handling should be rewritten to use terminfo
26
25
    # XXX before we get there, checking for setaf capability should do.
27
26
    # XXX See terminfo(5) for all the gory details.
28
 
    if sys.platform == "win32":
29
 
        return False
30
27
    import curses
31
28
    curses.setupterm()
32
29
    return bool(curses.tigetstr('setaf'))
42
39
"white": "7"
43
40
}
44
41
 
45
 
def colorstring(text, fgcolor=None, bgcolor=None):
 
42
def colorstring(text, fgcolor=None, bright=False, bgcolor=None):
46
43
    """
47
44
    Returns a string using ANSI control codes to set the text color.
48
45
 
50
47
    :type text: string
51
48
    :param fgcolor: The foreground color to use
52
49
    :type fgcolor: string
 
50
    :param bright: If true, make the foreground color bright
 
51
    :type bright: bool
53
52
    :param bgcolor: The background color to use
54
53
    :type bgcolor: string
55
54
    """
56
55
    code = []
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
 
 
 
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])
70
62
    return "".join(("\033[", ';'.join(code), "m", text, "\033[0m"))
71
63
 
72
 
 
73
64
def term_title(title):
74
65
    term = os.environ.get('TERM', '')
75
66
    if term.startswith('xterm') or term == 'dtterm':