| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fixup all headers and some more minor problems.2.4.2 | Georg Brandl | 2019-05-28 | 1 | -1/+1 |
| | | |||||
| * | Fix a small bug in the SQL analysis. | Matth?us G. Chajdas | 2019-01-04 | 1 | -2/+8 |
| | | | | | Updated CHANGES as well, and moved the LLVM PR to the right list. | ||||
| * | Merged in roskakori/pygments-analyze-sql (pull request #672) | Anteru | 2019-01-04 | 1 | -2/+50 |
| |\ | | | | | | | Added analyse_text() for SQL | ||||
| | * | Added analyse_text() that attempts to detect MySQL and Transact-SQL. | Thomas Aglassinger | 2016-10-01 | 1 | -2/+50 |
| | | | |||||
| | * | Merged in roskakori/pygments-tsql (pull request #577) | Tim Hatch | 2016-05-31 | 1 | -3/+3 |
| | |\ | | | | | | | | | | Add lexer for Transact-SQL | ||||
| | | * | Fixed single line SQL comments on end of file without a trailing newline. | Thomas Aglassinger | 2016-03-24 | 1 | -3/+3 |
| | | | | |||||
| | * | | Improved detection of single line SQL comments as suggested in pull request ↵ | Thomas Aglassinger | 2016-03-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | #578. Now it even works in combination with re.DOTALL. | ||||
| | * | | Fixed detection of Number.Float in Transact-SQL for corner cases like "1." ↵ | Thomas Aglassinger | 2016-03-24 | 1 | -2/+6 |
| | | | | | | | | | | | | | and "1.e2." | ||||
| | * | | Fixed detection of Transact-SQL comments in the last line of a source code ↵ | Thomas Aglassinger | 2016-03-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | without a newline at the end. | ||||
| | * | | Fixed that regex to detect Number.Float shadowed regex for Number.Integer ↵ | Thomas Aglassinger | 2016-03-23 | 1 | -1/+2 |
| | | | | | | | | | | | | | for Transact-SQL. | ||||
| | * | | Fixed minus operator for Transact-SQL. | Thomas Aglassinger | 2016-03-22 | 1 | -3/+3 |
| | | | | |||||
| | * | | Added lexer for Transact-SQL as used by Microsoft SQL Server and Sybase. | Thomas Aglassinger | 2016-03-21 | 1 | -2/+55 |
| | |/ | |||||
| | * | merge with stable | Georg Brandl | 2016-02-14 | 1 | -10/+25 |
| | |\ | |||||
| | | * | String prefixes and dollar-quoted string delimiters lexing in Postgresql. ↵ | Miikka Salminen | 2016-02-08 | 1 | -10/+25 |
| | | | | | | | | | | | | | Also closes issue #886. | ||||
| | * | | Make postgres strings use their own state. | Georg Brandl | 2016-02-08 | 1 | -2/+12 |
| | |/ | |||||
| | * | Closes #1206: add IF and ELSIF to SQL keywords. | Georg Brandl | 2016-02-03 | 1 | -3/+3 |
| | | | |||||
| | * | merge default into stable | Georg Brandl | 2016-01-17 | 1 | -0/+598 |
| | | |||||
| * | Merge heads. | Georg Brandl | 2018-11-28 | 1 | -2/+2 |
| |\ | |||||
| | * | Fix invalid escapes due to missing raw string prefix. | Georg Brandl | 2018-11-28 | 1 | -2/+2 |
| | | | |||||
| * | | Be more Pythonic, use a for instead of while 1: try: next | Miro Hron?ok | 2018-07-04 | 1 | -13/+4 |
| | | | |||||
| * | | PEP 479: Raising StopIteration from a generator is now an error | Miro Hron?ok | 2018-07-04 | 1 | -1/+4 |
| |/ | | | | | | So we return instead. Fix needed for Python 3.7. Fixes https://bitbucket.org/birkenfeld/pygments-main/issues/1457 | ||||
| * | Copyright update. | Georg Brandl | 2017-01-22 | 1 | -1/+1 |
| | | |||||
| * | Add support for partials and path segments for Handlebars. | Christian Hammond | 2016-11-04 | 1 | -0/+681 |
| This introduces support for some missing features to the Handlebars lexer: Partials and path segments. Partials mostly appeared to work before, but the `>` in `{{> ... }}` would appear as a syntax error, as could other components of the partial. This change introduces support for: * Standard partials: `{{> partialName}}` * Partials with parameters: `{{> partialName varname="value"}}` * Ddynamic partials: `{{> (partialFunc)}}` * Ddynamic partials with lookups: `{{> (lookup ../path "partialName")}}` * Partial blocks: `{{> @partial-block}}` * Inline partials: `{{#*inline}}..{{/inline}}` It also introduces support for path segments, which can reference content in the current context or in a parent context. For instance, `this.name`, `this/name`, `./name`, `../name`, `this/name`, etc. These are all now tracked as variables. | |||||
