##// END OF EJS Templates
merge with stable
Matt Mackall -
r19179:12459bfa merge default
parent child Browse files
Show More
@@ -1,61 +1,62 b''
1 1 # highlight.py - highlight extension implementation file
2 2 #
3 3 # Copyright 2007-2009 Adam Hupp <adam@hupp.org> and others
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7 #
8 8 # The original module was split in an interface and an implementation
9 9 # file to defer pygments loading and speedup extension setup.
10 10
11 11 from mercurial import demandimport
12 12 demandimport.ignore.extend(['pkgutil', 'pkg_resources', '__main__'])
13 13 from mercurial import util, encoding
14 14
15 15 from pygments import highlight
16 16 from pygments.util import ClassNotFound
17 17 from pygments.lexers import guess_lexer, guess_lexer_for_filename, TextLexer
18 18 from pygments.formatters import HtmlFormatter
19 19
20 20 SYNTAX_CSS = ('\n<link rel="stylesheet" href="{url}highlightcss" '
21 21 'type="text/css" />')
22 22
23 23 def pygmentize(field, fctx, style, tmpl):
24 24
25 25 # append a <link ...> to the syntax highlighting css
26 26 old_header = tmpl.load('header')
27 27 if SYNTAX_CSS not in old_header:
28 28 new_header = old_header + SYNTAX_CSS
29 29 tmpl.cache['header'] = new_header
30 30
31 31 text = fctx.data()
32 32 if util.binary(text):
33 33 return
34 34
35 35 # Pygments is best used with Unicode strings:
36 36 # <http://pygments.org/docs/unicode/>
37 37 text = text.decode(encoding.encoding, 'replace')
38 38
39 39 # To get multi-line strings right, we can't format line-by-line
40 40 try:
41 lexer = guess_lexer_for_filename(fctx.path(), text[:1024])
41 lexer = guess_lexer_for_filename(fctx.path(), text[:1024],
42 stripnl=False)
42 43 except (ClassNotFound, ValueError):
43 44 try:
44 lexer = guess_lexer(text[:1024])
45 lexer = guess_lexer(text[:1024], stripnl=False)
45 46 except (ClassNotFound, ValueError):
46 lexer = TextLexer()
47 lexer = TextLexer(stripnl=False)
47 48
48 49 formatter = HtmlFormatter(style=style)
49 50
50 51 colorized = highlight(text, lexer, formatter)
51 52 # strip wrapping div
52 53 colorized = colorized[:colorized.find('\n</pre>')]
53 54 colorized = colorized[colorized.find('<pre>') + 5:]
54 55 coloriter = (s.encode(encoding.encoding, 'replace')
55 56 for s in colorized.splitlines())
56 57
57 58 tmpl.filters['colorize'] = lambda x: coloriter.next()
58 59
59 60 oldl = tmpl.cache[field]
60 61 newl = oldl.replace('line|escape', 'line|colorize')
61 62 tmpl.cache[field] = newl
General Comments 0
You need to be logged in to leave comments. Login now