]> git.phdru.name Git - sqlconvert.git/shortlog
sqlconvert.git
2016-10-01 Oleg BroytmanOmit trivial __init__.py and __version__.py from test...
2016-10-01 Oleg BroytmanAdd a test for is_newline_statement()
2016-10-01 Oleg BroytmanSplit test_process_tokens.py -> test_process_mysql.py
2016-09-30 Oleg BroytmanTest print_tokens() with encoding
2016-09-30 Oleg BroytmanDocument that the program requotes names
2016-09-30 Oleg BroytmanReorder processing
2016-09-28 Oleg BroytmanMake process_statement() a generator
2016-09-28 Oleg BroytmanClean up StatementGrouper on close
2016-09-28 Oleg BroytmanUse `return` instead `raise StopIteration`
2016-09-28 Oleg BroytmanIgnore coverage data and reports
2016-09-28 Oleg BroytmanExtend demo.sql: add extended INSERTs with and w/o...
2016-09-27 Oleg BroytmanDone: convert string escapes
2016-09-26 Oleg BroytmanVersion 0.0.7: Change quoting style to MySQL, PostgreSQ... 0.0.7
2016-09-26 Oleg BroytmanUse test coverage in tox.ini
2016-09-26 Oleg BroytmanAdd a test for print_tokens()
2016-09-26 Oleg BroytmanRename test_tokens.py -> test_process_tokens.py
2016-09-26 Oleg BroytmanFix a bug: assign buffer even if encoding is None
2016-09-26 Oleg BroytmanChange quoting style to MySQL, PostgreSQL or SQLite
2016-09-25 Oleg BroytmanVersion 0.0.6: string (un)escaping, tests with Pg/SQLite 0.0.6
2016-09-25 Oleg BroytmanUpdate docs
2016-09-25 Oleg BroytmanAdd tests for SQLite
2016-09-25 Oleg BroytmanUse SQLObject for string quoting
2016-09-25 Oleg BroytmanUnescape all known escapes
2016-09-25 Oleg BroytmanDo not test statements in StatementGrouper
2016-09-25 Oleg BroytmanDo not clean up: rm doesn't work
2016-09-25 Oleg BroytmanGlobally skip a module that requires Postgres connection
2016-09-25 Oleg BroytmanExclude tests/conftest.py from flake8 tests with directive
2016-09-24 Oleg BroytmanRun flake8 from root to test docs and scripts
2016-09-24 Oleg BroytmanAdd a test for unescaped strings for Postgres
2016-09-24 Oleg BroytmanRemove unused py.test
2016-09-24 Oleg BroytmanSimplify tox.ini: call pytest with the current python
2016-09-23 Oleg BroytmanFix copy/paste in .gitignore
2016-09-23 Oleg BroytmanExtend .gitignore
2016-09-23 Oleg BroytmanMinor refactoring of MANIFEST.in
2016-09-21 Oleg BroytmanIgnore .cache and .tox directories only at the top
2016-09-20 Oleg BroytmanUse coverage and tox for testing
2016-09-20 Oleg BroytmanFix scripts in setup.py
2016-09-17 Oleg BroytmanAdd test for converting \' to ''
2016-09-17 Oleg BroytmanRemove classes from tests
2016-09-17 Oleg BroytmanRemove mysql-specific requote_names from StatementGroup...
2016-09-11 Oleg BroytmanUse pytest for testing
2016-09-11 Oleg BroytmanFix misspelling: mysq2sql -> mysql2sql
2016-09-11 Oleg BroytmanFix minor misspellings in docs
2016-09-11 Oleg BroytmanAdd README.html for gitweb
2016-09-10 Oleg BroytmanTODO: Add tests for Postgres and SQLite
2016-09-10 Oleg BroytmanUnescape strings
2016-09-10 Oleg BroytmanRename remove_directives -> remove_directive_tokens
2016-09-08 Oleg BroytmanCondense a sequence of newlines after a /*! directive */;
2016-09-08 Oleg BroytmanDeclare development status Pre-Alpha
2016-09-07 Oleg BroytmanVersion 0.0.5: Remove /*! directives */; and newlines... 0.0.5
2016-09-07 Oleg BroytmanFix flake8 warning: remove unused import
2016-09-07 Oleg BroytmanSkip semicolons and newlines /*! directives */;
2016-09-07 Oleg BroytmanFix: flush buffer and outfile
2016-09-07 Oleg BroytmanMake begin/end separators in demo scripts more evident
2016-09-05 Oleg BroytmanAdd demo-process.py
2016-09-05 Oleg BroytmanJoin demo scripts; add argparse parameters parsing
2016-09-05 Oleg BroytmanRemove processing from demo scripts
2016-09-05 Oleg BroytmanAdd a semicolon and a newline after directive
2016-09-05 Oleg BroytmanRename sample.sql -> demo.sql
2016-09-05 Oleg BroytmanSet encoding to utf-8 for demo scripts
2016-09-04 Oleg BroytmanTODO: Fix semicolons and newlines after /*! directives */
2016-09-04 Oleg BroytmanTODO: Remove /*! directives */ - done!
2016-09-04 Oleg BroytmanUpdate docs: mention /*! directives */
2016-09-04 Oleg BroytmanAdd MySQL-specific remove_directives() and process_stat... 0.0.4
2016-09-04 Oleg BroytmanMove requote_names from process_tokens.py to process_my...
2016-09-04 Oleg BroytmanInclude scripts/mysql2sql into sdist
2016-09-04 Oleg BroytmanVersion 0.0.3: Rename the project: mysql2py -> sqlconvert 0.0.3
2016-09-04 Oleg BroytmanFix docs after split index -> mysql2sql
2016-09-04 Oleg BroytmanRename target 'html' to 'docs'
2016-09-04 Oleg BroytmanRename mysql2sql -> sqlconvert
2016-09-03 Oleg BroytmanVersion 0.0.2: Rename mysql-to-sql.py -> mysql2py 0.0.2
2016-09-03 Oleg BroytmanDisplay progress bar
2016-09-03 Oleg BroytmanRename mysql-to-sql.py -> mysql2py
2016-09-03 Oleg BroytmanTODO: Progress bar
2016-09-03 Oleg BroytmanUpdate TODO
2016-09-03 Oleg BroytmanFix flake8 warning
2016-09-03 Oleg BroytmanVersion 0.0.1: First release. Setup, tests and docs... 0.0.1
2016-09-03 Oleg BroytmanFix vim script
2016-09-03 Oleg BroytmanMinor fix in docs
2016-09-03 Oleg BroytmanFix unicode test for Py3
2016-09-03 Oleg BroytmanUse sphinx.ext.viewcode to include module's code
2016-09-03 Oleg BroytmanRequire m_lib
2016-09-03 Oleg Broytmangenapidocs: replace short options with long ones
2016-09-02 Oleg BroytmanUse encoding (default is utf-8) and unicode
2016-09-02 Oleg BroytmanChange arguments handling
2016-09-02 Oleg BroytmanPrint error message
2016-08-28 Oleg BroytmanRadically simplify MANIFEST.in by using global-include
2016-08-28 Oleg BroytmanInclude API docs
2016-08-28 Oleg BroytmanStarted documentation
2016-08-27 Oleg BroytmanFix a bug: do not add additional newlines
2016-08-27 Oleg BroytmanAdd requirements_docs.txt
2016-08-27 Oleg BroytmanAdd script mysql-to-sql.py
2016-08-27 Oleg Broytmanfixup! Rename scripts -> demo; move sample.sql into...
2016-08-27 Oleg BroytmanInclude ez_setup.py into sdist
2016-08-27 Oleg BroytmanRename scripts -> demo; move sample.sql into demo
2016-08-27 Oleg BroytmanFix Python3 compatibility
2016-08-26 Oleg BroytmanCollect lines and reparse until the last statement...
2016-08-24 Oleg BroytmanProcess input stream line by line
2016-08-24 Oleg BroytmanSimplify test: use 'for' loop to loop over generator
2016-08-24 Oleg BroytmanAdd sample and scripts to sdist
next