| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Include patches from extras/py3k/fixes.diff (fixes issue12). | Andi Albrecht | 2010-11-21 | 1 | -8/+2 | |
| | | ||||||
| * | Remove next() patch (targets issue12). | Andi Albrecht | 2010-11-21 | 1 | -1/+6 | |
| | | ||||||
| * | Match single line comments at end of string. | Andi Albrecht | 2010-11-14 | 1 | -1/+4 | |
| | | | | | The bug was reported for CrunchyFrog: http://code.google.com/p/crunchyfrog/issues/detail?id=88 | |||||
| * | Check for None values in options dict, reported by Marco44. | Andi Albrecht | 2010-08-26 | 1 | -2/+2 | |
| | | | | | | | | See http://groups.google.com/group/sqlparse/browse_thread/thread/2acecd715a48a169 The default options for identifiers and keywords (to do nothing) got lost since both are in the options dict, but with None as value. | |||||
| * | Fix typo: Comparsion -> Comparison. | Andi Albrecht | 2010-07-04 | 4 | -9/+9 | |
| | | ||||||
| * | PEP8: Code cleanup. | Andi Albrecht | 2010-07-04 | 7 | -60/+76 | |
| | | ||||||
| * | Clean up imports. | Andi Albrecht | 2010-07-04 | 5 | -673/+668 | |
| | | | | | | Removed wildcard imports, mainly to keep pyflakes quiet. But this change lifted some wrong imports and class usage. | |||||
| * | Improve statement detection for DECLARE statements outside ↵ | Andi Albrecht | 2010-06-23 | 1 | -3/+3 | |
| | | | | | | | | | function/procedure definitions. The parser didn't recognized DECLARE statements outside function/procedure definitions correctly and assumed that a non-separating semicolon follows. | |||||
| * | Improve detection of escaped single quotes (fixes issue13, reported by ↵ | Andi Albrecht | 2010-06-17 | 1 | -2/+2 | |
| | | | | | Martin Brochhaus, patch by bluemaro with test case by Dan Carley). | |||||
| * | Fix an issue with trailing whitespaces (reported by Kris). | Andi Albrecht | 2010-02-18 | 1 | -1/+5 | |
| | | ||||||
| * | Improved case detection for CASE structures without WHEN in first case. | Andreas Albrecht | 2009-10-22 | 1 | -2/+8 | |
| | | ||||||
| * | Prevent WHERE grouper from consuming closing parenthesis (fixes issue9, ↵ | Andi Albrecht | 2009-09-12 | 2 | -1/+9 | |
| | | | | | reported by estama). | |||||
| * | Use utf-8 instead of latin-1 as default encoding. | Andi Albrecht | 2009-09-02 | 1 | -2/+2 | |
| | | ||||||
| * | Remove duplicated keywords. | Andi Albrecht | 2009-08-27 | 1 | -26/+0 | |
| | | ||||||
| * | Improve detection of identifier aliases (fixes issue8). | Andi Albrecht | 2009-07-13 | 1 | -1/+6 | |
| | | ||||||
| * | Keep function arguments together: | Andi Albrecht | 2009-07-12 | 1 | -1/+1 | |
| | | ||||||
| * | Query token ancestry. | Andi Albrecht | 2009-07-12 | 1 | -0/+26 | |
| | | ||||||
| * | Add parent relationships. | Andi Albrecht | 2009-07-12 | 1 | -1/+5 | |
| | | ||||||
| * | Detect functions if they are used as identifiers. | Andi Albrecht | 2009-07-12 | 1 | -9/+19 | |
| | | ||||||
| * | Distinguish between operators that are part of a comparsion and others. | Andi Albrecht | 2009-07-12 | 3 | -3/+6 | |
| | | ||||||
| * | Fix incorrect detection of keyword fragments in names (fixes issue7, ↵ | Andi Albrecht | 2009-06-24 | 1 | -3/+3 | |
| | | | | | reported and initial patch by andyboyko). | |||||
| * | pep8'ified the code a bit. | Andi Albrecht | 2009-06-11 | 6 | -38/+11 | |
| | | ||||||
| * | Cleaned up some unused imports. | Andi Albrecht | 2009-06-11 | 4 | -18/+5 | |
| | | ||||||
| * | Removed types import. | Andi Albrecht | 2009-06-11 | 1 | -2/+1 | |
| | | ||||||
| * | Minor performance improvement when matching token types. | Andi Albrecht | 2009-06-11 | 1 | -1/+1 | |
| | | ||||||
| * | Cleanup in token.py | Andi Albrecht | 2009-06-11 | 1 | -44/+1 | |
| | | ||||||
| * | Grouping of function/procedure calls. | Andi Albrecht | 2009-05-27 | 2 | -0/+31 | |
| | | ||||||
| * | Fixed grouping of semicolons within assignments. | Andi Albrecht | 2009-05-14 | 1 | -2/+6 | |
| | | ||||||
| * | Make sure that operators in comparsions are not handled too lazy. | Andi Albrecht | 2009-05-14 | 1 | -3/+11 | |
| | | ||||||
| * | Updated version number.0.1.1 | Andi Albrecht | 2009-05-06 | 1 | -1/+1 | |
| | | ||||||
| * | * Python and PHP output filter now add a trailing whitespace. | Andi Albrecht | 2009-05-06 | 3 | -9/+9 | |
| | | | | | * More test coverage. | |||||
| * | Code cleanup and test coverage. | Andi Albrecht | 2009-05-06 | 3 | -51/+14 | |
| | | ||||||
| * | Removed backup copy of grouping module. | Andi Albrecht | 2009-05-06 | 1 | -499/+0 | |
| | | ||||||
| * | Removed obsolete dialects module. | Andi Albrecht | 2009-05-06 | 1 | -88/+0 | |
| | | ||||||
| * | Removed logging stuff that was only needed for debugging on AppEngine. | Andi Albrecht | 2009-05-06 | 3 | -9/+0 | |
| | | ||||||
| * | Do the type check once in Token.match. | Andi Albrecht | 2009-05-06 | 1 | -4/+3 | |
| | | ||||||
| * | * Added profile option to run_tests.py. | Andi Albrecht | 2009-05-06 | 1 | -6/+6 | |
| | | | | | * Use sets in Token.match. | |||||
| * | Added Token.flatten() that just yields self to unify behavior of TokenList ↵ | Andi Albrecht | 2009-05-05 | 1 | -0/+4 | |
| | | | | | and Token. | |||||
| * | * Added missing SET keyword. | Andi Albrecht | 2009-05-05 | 4 | -2/+6 | |
| | | | | | * IdentifierList.get_identifiers() now returns not only Identifier instances. | |||||
| * | Improved check for duplicated newlines (targets issue3). | Andi Albrecht | 2009-05-05 | 1 | -2/+5 | |
| | | ||||||
| * | Avoid duplicate linebreaks when reformatting (targets issue3). | Andi Albrecht | 2009-05-03 | 1 | -2/+6 | |
| | | ||||||
| * | Improved parsing of identifier lists (targets issue2). | Andi Albrecht | 2009-05-03 | 3 | -25/+54 | |
| | | ||||||
| * | Basic support for T-SQL variables prefixed with @. | Andi Albrecht | 2009-04-30 | 1 | -0/+1 | |
| | | ||||||
| * | Return an empty string iff a token's value is None. | Andi Albrecht | 2009-04-30 | 1 | -1/+1 | |
| | | ||||||
| * | Recognize backticks quoting identifiers. | Andi Albrecht | 2009-04-29 | 1 | -0/+4 | |
| | | ||||||
| * | Typo fixed. | Andi Albrecht | 2009-04-27 | 1 | -1/+1 | |
| | | ||||||
| * | Improved handling of invalid identifiers, like for example "a.". | Andi Albrecht | 2009-04-27 | 1 | -2/+18 | |
| | | ||||||
| * | Recurse into subgroups when grouping case statements. | Andi Albrecht | 2009-04-24 | 1 | -1/+2 | |
| | | ||||||
| * | Handle wildcards in identifiers. | Andi Albrecht | 2009-04-24 | 2 | -2/+15 | |
| | | ||||||
| * | Analyse AS recursive (fixes issue4). | Andi Albrecht | 2009-04-21 | 1 | -13/+16 | |
| | | ||||||
