##// END OF EJS Templates
highlight: fix to work with caching templater
Matt Mackall -
r10959:d1f4657f default
parent child Browse files
Show More
@@ -1,61 +1,61 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 old_header = ''.join(tmpl('header'))
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 41 lexer = guess_lexer_for_filename(fctx.path(), text[:1024])
42 42 except (ClassNotFound, ValueError):
43 43 try:
44 44 lexer = guess_lexer(text[:1024])
45 45 except (ClassNotFound, ValueError):
46 46 lexer = TextLexer()
47 47
48 48 formatter = HtmlFormatter(style=style)
49 49
50 50 colorized = highlight(text, lexer, formatter)
51 51 # strip wrapping div
52 52 colorized = colorized[:colorized.find('\n</pre>')]
53 53 colorized = colorized[colorized.find('<pre>')+5:]
54 54 coloriter = (s.encode(encoding.encoding, 'replace')
55 55 for s in colorized.splitlines())
56 56
57 57 tmpl.filters['colorize'] = lambda x: coloriter.next()
58 58
59 59 oldl = tmpl.cache[field]
60 60 newl = oldl.replace('line|escape', 'line|colorize')
61 61 tmpl.cache[field] = newl
General Comments 0
You need to be logged in to leave comments. Login now