summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Closes #1058: Fix an encoding issue when using ``pygmentize`` with the ↵Georg Brandl2014-11-101-0/+14
| | | | ``-o`` option.
* python2.6 has no assertSequenceEqualTim Hatch2014-11-061-4/+4
|
* Add 'duplicates_removed' function (for *_builtins.py generation).Tim Hatch2014-11-061-0/+16
|
* Merged in jiyinyiyong/pygments-main (pull request #378)Georg Brandl2014-11-061-27/+195
|\ | | | | | | update Cirru for HTML and JavaScript DSLs
| * update Cirru tests and rulesjiyinyiyong2014-11-041-27/+195
| |
* | Swap unicode whitespace character to one that Java sees as webitespace.Tim Hatch2014-11-042-2/+2
|/ | | | | Tests fail on Jython without this; refactoring to change nbsp detection will happen later.
* Test recognition of Unicode whitespace in java and js examplefiles.Georg Brandl2014-11-042-1/+2
|
* Add test for RegexLexer inheritance (fails with current code).Tim Hatch2014-10-281-0/+94
|
* Add regexopt test for suffix ordering.Tim Hatch2014-10-211-0/+8
|
* Closes #1042: dont recognize *.md as MiniD anymore (which is now Croc).Georg Brandl2014-10-161-0/+0
| | | | | .md should be lexed as Markdown once we have a lexer for it. Rename examplefile accordingly.
* Skip known-failing tests on JythonTim Hatch2014-10-151-1/+9
|
* unistring: fix generated Cs category on Py2.Georg Brandl2014-10-151-7/+4
|
* Rename test file to use the correct lexer.Georg Brandl2014-10-151-0/+0
|
* Merged in dscorbett/pygments-tads3-2 (pull request #407)Georg Brandl2014-10-158-2/+138
|\ | | | | | | Add a lexer for TADS 3
| * Add ResourceBundle lexer.Tim Hatch2014-10-141-0/+9
| | | | | | | | Fixes #1038
| * Test fixes for Python3Tim Hatch2014-10-141-2/+2
| |
| * Skip some unistring tests on Jython.Tim Hatch2014-10-141-0/+8
| |
| * Allow unistring to use character ranges.Tim Hatch2014-10-141-0/+43
| |
| * Fix encoding of the test streams.Georg Brandl2014-10-141-2/+2
| |
| * Clarify mimetype handling in HttpLexer, add test.Tim Hatch2014-10-101-0/+41
| |
| * Add Mozilla preprocessor lexers.Tim Hatch2014-10-103-0/+19
| | | | | | | | Replaces PR #239
| * Add aditional tests for regex optimization.Tim Hatch2014-10-101-0/+16
| |
* | Add a lexer for TADS 3David Corbett2014-10-081-0/+1248
|/
* Add JSON-LD Lexer.Tim Hatch2014-10-081-0/+27
| | | | Adapted from PR 289.
* MakefileLexer: Add GNU Automake directives.Tim Hatch2014-10-081-0/+7
| | | | Fixes #995
* Twig: add test example file, add changelog entry and regenerate mapping.Georg Brandl2014-10-081-0/+4612
|
* Merged in leodemoura/pygments-main (pull request #399)Georg Brandl2014-10-0841-1911/+3530
|\
| * Overhaul encoding handling in cmdline even more.Georg Brandl2014-10-081-6/+16
| | | | | | | | | | | | | | 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.
| * Dont print out all tokens to stdout.Georg Brandl2014-10-081-2/+0
| |
| * Closes #1015: fix lexing of Haskell char literals.Georg Brandl2014-10-081-0/+4
| | | | | | | | | | In the case of TH quoting, 'f'7 means char literal and then numeric 7, not quoted f'7, see http://www.haskell.org/ghc/docs/7.6.2/html/users_guide/template-haskell.html
| * PHP: allow spaces before heredoc end tokenGeorg Brandl2014-10-071-0/+8
| |
| * Fix highlighting of Java enhanced for loops.Tim Hatch2014-10-071-0/+42
| | | | | | | | Fixes #965
| * JavascriptLexer: Support unicode identifiers per standard.Tim Hatch2014-10-071-0/+5
| | | | | | | | Fixes #999
| * MakeLexer: Add GNU Make vpath directive.Tim Hatch2014-10-071-0/+16
| | | | | | | | Fixes #949
| * ScalaLexer: Improve interpolated strings, adding triplequoted strings and ↵Tim Hatch2014-10-071-0/+10
| | | | | | | | test file.
| * Closes #1041: Fix test suite to pass under Python 2.6.Georg Brandl2014-10-073-12/+20
| |
| * Closes #908: fix test suite to test formatters with no Unicode output correctly.Georg Brandl2014-10-071-7/+9
| |
| * Closes #1028: fix filters to return Unicode stringsGeorg Brandl2014-10-071-7/+16
| |
| * Closes #1030: recognize functions with no args in Matlab related lexersGeorg Brandl2014-10-071-0/+4
| |
| * Closes #972: accept "inner attribute" syntax for Rust.Georg Brandl2014-10-071-1/+1
| |
| * Closes #982: fix pathological matching behavior for timestamps in IRC logs lexerGeorg Brandl2014-10-071-1/+3
| |
| * Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵Georg Brandl2014-10-077-51/+22
| | | | | | | | | | | | on Py3. Also fix a bunch of other uses of open() to use the with statement.
| * Closes #874: do not swallow incomplete tracebacks in the Python console lexer.Georg Brandl2014-10-071-1/+4
| |
| * Closes #1010: recognize string interpolation in Scala lexer.Georg Brandl2014-10-071-0/+5
| |
| * RubyLexer: Be less picky about closing delimiters.Tim Hatch2014-10-061-0/+20
| | | | | | | | | | | | | | Previous code used a negative lookbehind, which I do not grok how was ever correct. New code with testcase. Fixes #1026
| * DockerLexer: Improve multiline and quote handling.Tim Hatch2014-10-061-0/+5
| | | | | | | | Fixes #1040
| * BashLexer: Correctly handle $'' strings.Tim Hatch2014-10-061-4/+15
| |
| * BashLexer: Significantly improve handling of quoted strings (and ${})Tim Hatch2014-10-061-0/+52
| | | | | | | | Fixes #994
| * RubyLexer: Highlight operator methods better.Tim Hatch2014-10-061-0/+12
| | | | | | | | Fixes #1033
| * SmartyLexer: Support nested curly braces.Tim Hatch2014-10-061-0/+40
| | | | | | | | Fixes #1039