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