mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-20 16:00:26 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1150 e7d03fd6-7b0d-0410-9947-9c21f3af8025
82 lines
2.3 KiB
Python
82 lines
2.3 KiB
Python
# -*- coding: iso-8859-1 -*-
|
|
"""ANSI Color definitions and functions"""
|
|
# Copyright (C) 2000-2004 Bastian Kleineidam
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
import os, sys
|
|
|
|
# Escape for ANSI colors
|
|
AnsiEsc="\x1b[%sm"
|
|
|
|
# type numbers
|
|
AnsiType = {
|
|
'bold': '1',
|
|
'light': '2',
|
|
'blink': '5',
|
|
'invert': '7',
|
|
}
|
|
|
|
# color numbers (the capitalized colors are bright)
|
|
AnsiColor = {
|
|
'default': '0',
|
|
'black': '30',
|
|
'red': '31',
|
|
'green': '32',
|
|
'yellow': '33',
|
|
'blue': '34',
|
|
'purple': '35',
|
|
'cyan': '36',
|
|
'white': '37',
|
|
'Black': '40',
|
|
'Red': '41',
|
|
'Green': '42',
|
|
'Yellow': '43',
|
|
'Blue': '44',
|
|
'Purple': '45',
|
|
'Cyan': '46',
|
|
'White': '47',
|
|
}
|
|
|
|
|
|
def esc_ansicolor (color):
|
|
"""convert a named color definition to an escaped ANSI color"""
|
|
ctype = ''
|
|
if ";" in color:
|
|
ctype, color = color.split(";", 1)
|
|
if not AnsiType.has_key(ctype):
|
|
print >>sys.stderr, "invalid ANSI color type", repr(ctype)
|
|
print >>sys.stderr, "valid values are", AnsiType.keys()
|
|
ctype = ''
|
|
else:
|
|
ctype = AnsiType[ctype]+";"
|
|
if not AnsiColor.has_key(color):
|
|
print >>sys.stderr, "invalid ANSI color name", repr(color)
|
|
print >>sys.stderr, "valid values are", AnsiColor.keys()
|
|
cnum = '0'
|
|
else:
|
|
cnum = AnsiColor[color]
|
|
return AnsiEsc % (ctype+cnum)
|
|
|
|
AnsiReset = esc_ansicolor("default")
|
|
|
|
|
|
def colorize (text, color=None):
|
|
"return text colorized if TERM is set"
|
|
if (color is not None) and os.environ.get('TERM'):
|
|
color = esc_ansicolor(color)
|
|
return '%s%s%s' % (color, text, AnsiReset)
|
|
else:
|
|
return text
|