Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Pull flags out of regular expressions | David Baumgold | 2016-12-29 | 1 | -3/+4 |
| | |||||
* | Fixes #1153: Change Windows+Py3 workaround code to flush when finished. | Tim Hatch | 2015-10-27 | 1 | -1/+1 |
| | | | | This avoids a case where the last chunk might not be output in iPython Notebook on Windows. | ||||
* | Fixes noted by pylint, mostly. | Tim Hatch | 2015-10-14 | 1 | -2/+2 |
| | |||||
* | Copyright year update. | Georg Brandl | 2015-01-21 | 1 | -1/+1 |
| | |||||
* | util: PEP8 | Georg Brandl | 2014-11-11 | 1 | -6/+11 |
| | |||||
* | (Hopefully) fix test_cmdline failures under Windows without colorama. | Georg Brandl | 2014-11-11 | 1 | -1/+6 |
| | |||||
* | Closes #1055: fixup guessing routines for HTML/XML related markup | Georg Brandl | 2014-11-08 | 1 | -4/+9 |
| | | | | | | | * remove too broad recognition for Lasso lexer * recognize XML declaration (<?xml ...?>) as XML * make HTML doctype recognition more general (HTML5 only requires <!DOCTYPE html>) * fix PHP not to recognize XML declarations | ||||
* | Add 'duplicates_removed' function (for *_builtins.py generation). | Tim Hatch | 2014-11-06 | 1 | -0/+16 |
| | |||||
* | Overhaul encoding handling in cmdline even more. | Georg Brandl | 2014-10-08 | 1 | -5/+30 |
| | | | | | | | Now the encoding guessed for the input file will be used for an output file. We now always read and write to the terminal .buffer on Python 3, which allows us to override the terminal encoding and use our guessing algorithm. | ||||
* | PEP8 and docstring format cleanup. | Georg Brandl | 2014-10-07 | 1 | -25/+11 |
| | |||||
* | Closes #979: improve encoding behavior of cmdline invocations | Georg Brandl | 2014-10-07 | 1 | -0/+21 |
| | | | | | | | | Now the preferred locale encoding is used for stdin/stdout if the encoding is not set on the file objects. Also, code from input files is tried to be decoded as UTF-8, the locale encoding and finally latin-1 as a last resort if no encoding option is given. | ||||
* | Move specialcasing of words() to any subclass of Future | Tim Hatch | 2014-10-03 | 1 | -0/+12 |
| | | | | | | The idea here is that plugins might want to provide some other optimization we haven't dreamed up yet, and to do so this way means they don't need to change with RegexLexerMeta (and it will be easier to support in regexlint). | ||||
* | Make format_lines take an indent level. | Tim Hatch | 2014-10-03 | 1 | -6/+7 |
| | | | | | We need this because the vim keywords file uses functions to define these lists, because of Jython. | ||||
* | Add util function for keyword list formatting | Tim Hatch | 2014-10-03 | 1 | -0/+20 |
| | |||||
* | Clarified comment in _surrogatepair() util. | Andrew Pinkham | 2014-05-06 | 1 | -1/+1 |
| | |||||
* | Added comment to _surrogatepair() util. | Andrew Pinkham | 2014-05-06 | 1 | -0/+5 |
| | |||||
* | Finalize single-source port for Py2.[67] and Py3.3+. | Georg Brandl | 2014-01-18 | 1 | -20/+29 |
| | |||||
* | new year in copyright notice | Georg Brandl | 2014-01-10 | 1 | -1/+1 |
| | |||||
* | Happy new year 2013. | Georg Brandl | 2013-01-09 | 1 | -1/+1 |
| | |||||
* | Handle non-BMP Unicode ranges consistently, regardless of Python build. | Tim Hatch | 2012-08-26 | 1 | -0/+45 |
| | |||||
* | Copyright update. | Georg Brandl | 2012-02-05 | 1 | -1/+1 |
| | |||||
* | make_analysator can now handle TypeErrors | Benji York | 2011-10-03 | 1 | -1/+1 |
| | |||||
* | Fix current copyright year. | Georg Brandl | 2011-07-09 | 1 | -1/+1 |
| | |||||
* | Do not fail in analyse_text methods (#618). | Georg Brandl | 2010-11-26 | 1 | -2/+8 |
| | |||||
* | Fix opening unicode file under Py3k. | Georg Brandl | 2010-02-18 | 1 | -0/+4 |
| | |||||
* | Happy new year! | Georg Brandl | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | Port Pygments to Python 3.1. | gbrandl | 2009-03-31 | 1 | -0/+24 |
| | |||||
* | Update copyrighting style to standard "team" tags. | gbrandl | 2009-01-04 | 1 | -2/+2 |
| | | | | Update AUTHORS file accordingly. | ||||
* | * Add one formatter per image format, to avoid surprises with | gbrandl | 2008-09-07 | 1 | -2/+4 |
| | | | | | | | pygmentize -f gif -o foo.gif foo.py which would previously create a PNG image. * Make image format names case-insensitive. | ||||
* | Add a cache for `looks_like_xml` and limit it to the first thousand bytes, as | thatch | 2008-07-23 | 1 | -4/+11 |
| | | | | the regex has a tendency to go off into the woods when fed non-xml data. | ||||
* | Fixed looks_like_xml's tag regex so it doesn't do inordinate amounts of ↵ | Adam Gomaa | 2008-05-14 | 1 | -1/+1 |
| | | | | backtracking (making it O(2^n)) | ||||
* | [svn] Fix a few inconsistencies and nits, mainly in the docs. | gbrandl | 2007-05-04 | 1 | -1/+1 |
| | | | | Use the get_choice_opt function consistently. | ||||
* | [svn] Make the C# lexer unicode aware. | gbrandl | 2007-05-03 | 1 | -0/+8 |
| | | | | | Warning, major hack ahead: the code to support multiple token defs is not the prettiest. | ||||
* | [svn] Make mapfiles, make check, add D test file, make reindent. | gbrandl | 2007-04-25 | 1 | -1/+1 |
| | |||||
* | [svn] Add a new test for pygments.util, fix coverage test. | gbrandl | 2007-02-18 | 1 | -2/+12 |
| | |||||
* | [svn] Quite a few things: | gbrandl | 2007-02-12 | 1 | -0/+18 |
| | | | | | | - new pygmentize options, -F for filters and -H for detail help. - an automatically-created formatter map - better HTML formatter subclassing | ||||
* | [svn] Copyright notice update. | gbrandl | 2007-02-04 | 1 | -1/+1 |
| | |||||
* | [svn] implemented filters for pygments (first approach, api might change), ↵ | blackbird | 2006-12-21 | 1 | -6/+6 |
| | | | | it's impossible at the moment to add filters by using pygmentize | ||||
* | [svn] Some style nits and make check. | gbrandl | 2006-12-20 | 1 | -2/+2 |
| | |||||
* | [svn] Change Pygments license to BSD. | gbrandl | 2006-12-10 | 1 | -1/+1 |
| | |||||
* | [svn] More pylint fixes, update BBcode formatter to new style API. | gbrandl | 2006-10-30 | 1 | -2/+3 |
| | |||||
* | [svn] update TODO. | gbrandl | 2006-10-28 | 1 | -2/+1 |
| | |||||
* | [svn] checked in changes from the last days. including: | blackbird | 2006-10-27 | 1 | -0/+102 |
| | | | | | | - text in logo - documentation update - new `guess_lexer` method | ||||
* | [svn] Update make check. | gbrandl | 2006-10-22 | 1 | -2/+3 |
| | |||||
* | [svn] Name change, round 4 (rename SVN root folder). | gbrandl | 2006-10-19 | 1 | -0/+50 |