summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 0.1.2.0.1.2Andi Albrecht2010-11-232-3/+4
|
* Fix import paths in Sphinx conf.Andi Albrecht2010-11-231-4/+7
|
* Mention issue 18 in Changelog.Andi Albrecht2010-11-221-1/+1
|
* Add NOT NULL as keyword (fixes issue18).Andi Albrecht2010-11-221-0/+1
|
* Ignore identifiers in double-quotes when changing identifier case (fixes ↵Andi Albrecht2010-11-213-1/+8
| | | | issue21).
* Add VARCHAR2 and LONG to keywords (fixes issue16, fixes issue19).Andi Albrecht2010-11-212-1/+3
|
* Ignore AND after BETWEEN when reindenting statements (fixes issue14).Andi Albrecht2010-11-213-6/+21
|
* MergedAndi Albrecht2010-11-213-3/+43
|\
| * Backed out changeset 489299fc3548Andi Albrecht2010-11-213-3/+43
| |
* | Group extended identifiers (fixes issue15).Andi Albrecht2010-11-213-3/+13
|/
* Include patches from extras/py3k/fixes.diff (fixes issue12).Andi Albrecht2010-11-213-43/+3
|
* Remove next() patch (targets issue12).Andi Albrecht2010-11-212-12/+6
|
* Update CHANGES.Andi Albrecht2010-11-211-1/+3
|
* Match single line comments at end of string.Andi Albrecht2010-11-142-1/+14
| | | | The bug was reported for CrunchyFrog: http://code.google.com/p/crunchyfrog/issues/detail?id=88
* Add copy of setup.py to py3k version.Andi Albrecht2010-11-141-0/+103
|
* Add example script to extract table names.Andi Albrecht2010-10-221-0/+53
|
* Check for None values in options dict, reported by Marco44.Andi Albrecht2010-08-261-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.
* Use parenthesis as intended (fixes an TypeError).Andi Albrecht2010-08-251-1/+1
|
* Fix typo: Comparsion -> Comparison.Andi Albrecht2010-07-046-14/+14
|
* PEP8: Code cleanup.Andi Albrecht2010-07-047-60/+76
|
* Clean up imports.Andi Albrecht2010-07-047-706/+701
| | | | | Removed wildcard imports, mainly to keep pyflakes quiet. But this change lifted some wrong imports and class usage.
* Use the new precompilation feature.Andi Albrecht2010-07-011-1/+4
|
* Improve statement detection for DECLARE statements outside ↵Andi Albrecht2010-06-232-3/+10
| | | | | | | | 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 Albrecht2010-06-173-2/+20
| | | | Martin Brochhaus, patch by bluemaro with test case by Dan Carley).
* Move regression test to separate directory.Andi Albrecht2010-06-173-13/+29
|
* Fix an issue with trailing whitespaces (reported by Kris).Andi Albrecht2010-02-183-2/+11
|
* Add *.pyc to ignores.Andi Albrecht2010-02-181-0/+1
|
* Use custom render_to_response function to avoid loading django.shortcuts ↵Andi Albrecht2010-01-171-1/+11
| | | | with all it's dependencies.
* Fix test case for CASE reindent.Andreas Albrecht2010-01-111-3/+4
|
* Add TODO item.Andreas Albrecht2010-01-111-0/+1
|
* Fix return code when running unittests.Andreas Albrecht2010-01-111-2/+7
|
* Improved case detection for CASE structures without WHEN in first case.Andreas Albrecht2009-10-221-2/+8
|
* Add a Todo item.Andi Albrecht2009-09-181-2/+2
|
* Merged.Andi Albrecht2009-09-126-4/+36
|\
| * Some HTML cleanup.Andi Albrecht2009-09-056-4/+36
| |
* | Prevent WHERE grouper from consuming closing parenthesis (fixes issue9, ↵Andi Albrecht2009-09-125-2/+31
|/ | | | reported by estama).
* Don't allow 0 for reindent.Andi Albrecht2009-09-051-1/+1
|
* Fix automated py3k build.Andi Albrecht2009-09-022-3/+3
|
* Fix Makefile for App Engine application.Andi Albrecht2009-09-021-5/+2
|
* Use utf-8 instead of latin-1 as default encoding.Andi Albrecht2009-09-021-2/+2
|
* Remove duplicated keywords.Andi Albrecht2009-08-271-26/+0
|
* Get rid of local Django copy.Andi Albrecht2009-07-175-68/+6
| | | | | --HG-- extra : rebase_source : 048740a4003f6f7af17aa73dbd6a85c01d011386
* Improve detection of identifier aliases (fixes issue8).Andi Albrecht2009-07-133-1/+14
|
* Keep function arguments together:Andi Albrecht2009-07-121-1/+1
|
* Query token ancestry.Andi Albrecht2009-07-122-0/+50
|
* Add parent relationships.Andi Albrecht2009-07-121-1/+5
|
* Add formatting test case for complex identifier lists.Andi Albrecht2009-07-121-0/+10
|
* Detect functions if they are used as identifiers.Andi Albrecht2009-07-122-10/+28
|
* Distinguish between operators that are part of a comparsion and others.Andi Albrecht2009-07-124-5/+10
|
* Fix incorrect detection of keyword fragments in names (fixes issue7, ↵Andi Albrecht2009-06-243-3/+32
| | | | reported and initial patch by andyboyko).