~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to terminal.py

  • Committer: Aaron Bentley
  • Date: 2011-01-26 01:11:59 UTC
  • Revision ID: aaron@aaronbentley.com-20110126011159-xsh6z4n8bgxy0k9k
Ignore the_kraken changelogs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2004 Aaron Bentley
2
 
# <aaron.bentley@utoronto.ca>
 
2
# <aaron@aaronbentley.com>
3
3
#
4
4
#    This program is free software; you can redistribute it and/or modify
5
5
#    it under the terms of the GNU General Public License as published by
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
 
30
    if not sys.stdout.isatty():
 
31
        return False
27
32
    import curses
28
 
    curses.setupterm()
 
33
    try:
 
34
        curses.setupterm()
 
35
    except curses.error:
 
36
        return False
29
37
    return bool(curses.tigetstr('setaf'))
30
38
 
31
39
colors = {