diff options
author | 2012-07-20 16:30:37 +0200 | |
---|---|---|
committer | 2012-07-20 16:30:37 +0200 | |
commit | c6f2baa0e6c3bd61c31eba47374aef39fd157325 (patch) | |
tree | 645847791a114fd31a4f72f6749125423c9e1519 /euscanwww/djeuscan | |
parent | euscanwww: uscan watch handle options (diff) | |
download | euscan-c6f2baa0e6c3bd61c31eba47374aef39fd157325.tar.gz euscan-c6f2baa0e6c3bd61c31eba47374aef39fd157325.tar.bz2 euscan-c6f2baa0e6c3bd61c31eba47374aef39fd157325.zip |
euscanwww: color code fix for json hilighting
Signed-off-by: volpino <fox91@anche.no>
Diffstat (limited to 'euscanwww/djeuscan')
-rw-r--r-- | euscanwww/djeuscan/utils.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/euscanwww/djeuscan/utils.py b/euscanwww/djeuscan/utils.py index fcd9384..79565e8 100644 --- a/euscanwww/djeuscan/utils.py +++ b/euscanwww/djeuscan/utils.py @@ -2,18 +2,18 @@ import re import cgi colorcodes = { - 'bold': ('\033[1m', '\033[22m'), - 'cyan': ('\033[36m', '\033[39m'), - 'blue': ('\033[34m', '\033[39m'), - 'red': ('\033[31m', '\033[39m'), - 'magenta': ('\033[35m', '\033[39m'), - 'green': ('\033[32m', '\033[39m'), - 'underline': ('\033[4m', '\033[24m'), + 'bold': ('\\\u001b[01m|\\\u001b[36;01m', '\\\u001b[39;49;00m'), + 'cyan': ('\\\u001b[36m', '\\\u001b[39m'), + 'blue': ('\\\u001b[34m', '\\\u001b[39m'), + 'red': ('\\\u001b[31m', '\\\u001b[39m'), + 'magenta': ('\\\u001b[35m', '\\\u001b[39m'), + 'green': ('\\\u001b[32;01m', '\\\u001b[39;49;00m'), + 'underline': ('\\\u001b[4m', '\\\u001b[24m'), } def recolor(color, text): - regexp = "(?:%s)(.*?)(?:%s)" % colorcodes[color] + regexp = r"(?:%s)(.*?)(?:%s)" % colorcodes[color] regexp = regexp.replace('[', r'\[') return re.sub( regexp, r'''<span style="color: %s">\1</span>''' % color, text @@ -76,6 +76,7 @@ def plaintext2html(text, tabstop=4): re.S | re.M | re.I ) result = re.sub(re_string, do_sub, text) + result = recolor('cyan', result) result = recolor('blue', result) result = recolor('red', result) |