Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removing tests from library files. They live now in test/unit. | murphy | 2010-06-29 | 1 | -46/+0 |
| | |||||
* | Added encoding header for Clojure scanner: Rember to put this on top when ↵ | murphy | 2010-06-29 | 1 | -0/+1 |
| | | | | using non-ASCII chars :) | ||||
* | Fixed YAML scanner: strings should always be groups. | murphy | 2010-06-16 | 1 | -2/+4 |
| | |||||
* | Improved JavScript regexp recognition. | murphy | 2010-06-16 | 1 | -1/+1 |
| | |||||
* | Fixed PHP scanner: strings should always be groups. | murphy | 2010-06-15 | 1 | -1/+1 |
| | |||||
* | Ticket #127: Clojure scanner by Licenser, yay! | murphy | 2010-06-15 | 1 | -0/+203 |
| | | | | | | It's still in development. The Scheme scanner, which Lice used as template, has some very bad code, and both scanner must be cleaned up (see #59). | ||||
* | Ruby scanner does no longer highlight \ at the end of the input as :error. ↵ | murphy | 2010-06-01 | 1 | -2/+5 |
| | | | | This is more friendly for intelligent diff highlighting. | ||||
* | Issue #227: Inline Diff Highlighting and improved intelligent diff | murphy | 2010-06-01 | 1 | -8/+72 |
| | | | | | | | | | highlighting for multi-line tokens. These are one of the most complex features of CodeRay now, and quite unique, I think. Of course, all of this is highly experimental, and not ready for production use. | ||||
* | Ruby scanner raises exception on unknown state. | murphy | 2010-05-21 | 1 | -0/+2 |
| | |||||
* | Fixed a bug in the YAML scanner (see #231). | murphy | 2010-05-21 | 1 | -4/+2 |
| | |||||
* | New: Raydebug Scanner (highlights .raydebug files instead of importing them). | murphy | 2010-05-18 | 1 | -1/+0 |
| | | | | | Closes #229. | ||||
* | (no commit message) | murphy | 2010-05-18 | 2 | -3/+69 |
| | |||||
* | Ruby scanner handles :keep_state option. | murphy | 2010-05-18 | 1 | -1/+12 |
| | |||||
* | Improved Python docstring highlighting (closes #190). | murphy | 2010-05-18 | 1 | -2/+6 |
| | |||||
* | Fixed bug in diff scanner. | murphy | 2010-05-05 | 1 | -4/+4 |
| | |||||
* | Got rid of the old streaming system (see #142). | murphy | 2010-05-01 | 13 | -20/+0 |
| | |||||
* | Direct Streaming! See #142 and Changes.textile. | murphy | 2010-05-01 | 20 | -1251/+1029 |
| | |||||
* | Fixing bug in Java and JSON scanners (unfinished strings where not closed ↵ | murphy | 2010-04-17 | 2 | -7/+3 |
| | | | | correctly). | ||||
* | More cleanup. | murphy | 2010-04-15 | 1 | -2/+6 |
| | |||||
* | Cleanups. | murphy | 2010-04-15 | 1 | -11/+11 |
| | |||||
* | CSS Scanner: Adding support for CSS 3 functions and colors, changing ↵ | murphy | 2010-04-14 | 1 | -7/+5 |
| | | | | highlighting of attrbiute selectors (closes #224). | ||||
* | Python scanner highlights docstrings as comments (see #190). | murphy | 2010-04-02 | 1 | -10/+15 |
| | |||||
* | Java Scanner: Package names are recognized, along with some code cleanup. ↵ | murphy | 2010-04-02 | 1 | -6/+14 |
| | | | | Closes #210. | ||||
* | Upporting changes from 0.9.2 (vs. 0.9.1). | murphy | 2010-03-31 | 2 | -2/+3 |
| | |||||
* | Diff scanner highlights unknown lines as :comment instead of :head. | murphy | 2010-03-31 | 1 | -1/+1 |
| | |||||
* | Improved Debug scanner (see Changes.textile). | murphy | 2010-03-31 | 1 | -4/+10 |
| | |||||
* | Improved Ruby scanner (see #147 and Changes.textile.) | murphy | 2010-03-31 | 2 | -114/+170 |
| | |||||
* | Improved Diff scanner - yay! Finally! Still imperfect, but works (see #52). | murphy | 2010-03-30 | 1 | -13/+35 |
| | |||||
* | Added new keywords and functions to SQL scanner (see #221, thanks to Joshua ↵ | murphy | 2010-03-30 | 1 | -2/+3 |
| | | | | Galvez). | ||||
* | Debug scanner supports line tokens; more cleanups. | murphy | 2010-03-26 | 1 | -6/+66 |
| | |||||
* | Cleanup to Scheme scanner; removed :operator_fat token kind. | murphy | 2010-03-26 | 1 | -59/+61 |
| | |||||
* | Cleanup and simplify HTML scanner. | murphy | 2010-03-26 | 1 | -16/+21 |
| | |||||
* | Fixed documentation of C scanner. | murphy | 2010-03-26 | 1 | -2/+0 |
| | |||||
* | Cleanups for C, C++, CSS, Delphi, Groovy, Java, PHP, Python, RHTML, XML, and ↵ | murphy | 2010-03-26 | 11 | -111/+141 |
| | | | | YAML scanners. | ||||
* | Improvements and cleanups in JavaScript Scanner: | murphy | 2010-03-26 | 1 | -17/+22 |
| | | | | | - Added NaN and Infinity to list of predefined constants. - E4X: Don't keep state of XML scanner between calls. | ||||
* | Cleanup of Nitro-XHTML Scanner. | murphy | 2010-03-26 | 1 | -9/+10 |
| | |||||
* | Cleanup of JSON Scanner. | murphy | 2010-03-26 | 1 | -2/+9 |
| | |||||
* | Cleanup of JSON Scanner. | murphy | 2010-03-26 | 1 | -6/+9 |
| | |||||
* | Cleanup of scanner map: | murphy | 2010-03-26 | 1 | -2/+1 |
| | | | | | | - removed :h - it's just a file extension, not a language name - removed :ecma - that's the name of an association, not a language - added :patch as an alias for :diff | ||||
* | Improvements to the SQL scanner - more keywords, more colors :) | murphy | 2010-03-21 | 1 | -10/+24 |
| | |||||
* | Plaintext scanner speedup: Just returns string without scanning. | murphy | 2010-01-06 | 1 | -2/+1 |
| | |||||
* | Cleanups. | murphy | 2009-12-30 | 3 | -10/+6 |
| | |||||
* | Using XML scanner for XML literals. | murphy | 2009-12-30 | 1 | -4/+5 |
| | |||||
* | Don't cache the CaseIgnoringWordLists. | murphy | 2009-12-30 | 2 | -3/+3 |
| | |||||
* | Copying changes and fixes for 0.9.0rc3 from terminal-encoder branch over to ↵ | murphy | 2009-12-28 | 8 | -79/+235 |
| | | | | trunk. | ||||
* | Updated PHP scanner (#36) | murphy | 2009-10-20 | 2 | -9/+43 |
| | | | | | | | | * highlighting of class and function definitions * improved HTML/PHP detection * heredocs (simple) * a new test for classes | ||||
* | Made FileType work with Pathname (closes #118). | murphy | 2009-10-20 | 1 | -0/+1 |
| | |||||
* | Updated PHP scanner: added a test, improved HTML/PHP detection, cleanup. | murphy | 2009-10-19 | 1 | -10/+8 |
| | |||||
* | Updating C scanner: | murphy | 2009-10-19 | 1 | -14/+20 |
| | | | | | | | | | | * Ruby 1.9 warnings (yeah, it's really a pain) * added DIRECTIVES * fixed a bug that highlighted // as an operator (bah!) * accept $ in variable names * accept intLL literals * recover silently from :include_expected on unexpected tokens | ||||
* | Updating scanners: Ruby 1.9 warnings, KINDS_NOT_LOC | murphy | 2009-10-19 | 7 | -7/+22 |
| | | | | | * Also, DATABASE is a SQL keyword. |