]> git.phdru.name Git - sqlconvert.git/commitdiff
Various minor updates in docs
authorOleg Broytman <phd@phdru.name>
Sun, 12 Mar 2017 17:53:46 +0000 (20:53 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 12 Mar 2017 17:53:46 +0000 (20:53 +0300)
ChangeLog
README.txt
docs/conf.py
docs/index.rst
docs/mysql2sql.rst

index 9f735a7ee5ef231306b77b7026cc75f3dde89630..29f6ac1c74fcd6f4a8317a67368cb8fcd469905c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Version 0.0.8 (2016-10-??)
+Version 0.0.8 (2017-03-??)
 
    Extend tests, increase test coverage.
 
index c419cf780c681a6bf803a0d0d80ab3cfa6e39c5e..bbbb6bb91dccdd31eb8590cc644bca0ee3543184 100644 (file)
@@ -1,10 +1,10 @@
-Broytman SQL converter, Copyright (C) 2016 PhiloSoft Design
-Author: Oleg Broytman <phd@phdru.name>
-License: GPL
+Broytman SQL converter, Copyright (C) 2016-2017 PhiloSoft Design.
+Author: Oleg Broytman <phd@phdru.name>.
+License: GPL.
 
-This is sqlconvert, a library to perform SQL conversions. It uses
-sqlparse to parse SQL and SQLObject to escape SQL strings and handle
-connections.
+sqlconvert is a library to perform SQL conversions. It uses sqlparse to
+parse SQL and SQLObject to escape SQL strings and handle connections to DB
+backends.
 
 The library is in the early stage of development and currently cannot do
 much.
index 6b2662630d10faf7e76cb352e6de181b98b954d4..ecbec327e4a27fbcb7b30614ba482bbac37209e5 100644 (file)
@@ -16,6 +16,7 @@
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 #
+from datetime import date
 # import os
 # import sys
 # sys.path.insert(0, os.path.abspath('.'))
@@ -52,8 +53,8 @@ master_doc = 'index'
 
 # General information about the project.
 project = u'sqlconvert'
-copyright = u'2016, Oleg Broytman'
 author = u'Oleg Broytman'
+copyright = u'2016-%d, %s' % (date.today().year, author)
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
index d81db53cf40a2f8001a0205600cdef7b832d716c..24c348b0e09cc96a0877af831071182eb7dda52c 100644 (file)
@@ -6,15 +6,17 @@
 Welcome to sqlconvert's documentation!
 =====================================
 
-This is sqlconvert, a library to implement SQL converters. It uses `sqlparse
+sqlconvert is a library to implement SQL converters. It uses `sqlparse
 <https://github.com/andialbrecht/sqlparse>`_ to parse SQL and `SQLObject
-<http://sqlobject.org/>`_ to escape SQL strings and handle connections.
+<http://sqlobject.org/>`_ to escape SQL strings and handle connections to
+DB backends.
 
-The library is in the early stage of development and currently cannot do much.
+The library is in the early stage of development and currently cannot do
+much.
 
-The first goal is to implement `mysql2sql <mysql2sql.html>`_, a script intended
-primarily to convert mysqldump (especially with extended INSERT syntax) to
-standard SQL to load at least to PostgreSQL or SQLite.
+The first goal is to implement `mysql2sql <mysql2sql.html>`_, a script
+intended primarily to convert mysqldump (especially with extended INSERT
+syntax) to standard SQL to load at least to PostgreSQL or SQLite.
 
 Contents:
 
@@ -37,7 +39,7 @@ Credits
 
 Created by Oleg Broytman <phd@phdru.name>.
 
-Copyright (C) 2016 PhiloSoft Design.
+Copyright (C) 2016-2017 PhiloSoft Design.
 
 
 License
index ec3062bbf1b3234b403d0744d67f0eb58998f857..8e31058222113b6cd819957da759133b903360ba 100644 (file)
@@ -2,13 +2,13 @@ mysql2sql
 =========
 
 This is mysql2sql, a mysql to sql converter. It is primary intended to
-convert mysqldump (especially with extended INSERT syntax) to standard
-SQL to load at least to PostgreSQL or SQLite.
+convert mysqldump (especially with extended INSERT syntax) to standard SQL
+to load at least to PostgreSQL or SQLite.
 
-The program is in the early stage of development and currently cannot do much.
-It removes /\*! directives \*/, unquotes names quoted with backticks, quote
-non-lowercase names with double quotes, unescapes strings and escapes them to a
-different quoting style, and passes everything else unmodified.
+The program is in the early stage of development and currently cannot do
+much. It removes /\*! directives \*/, unquotes names quoted with backticks,
+quote non-lowercase names with double quotes, unescapes strings and escapes
+them to a different quoting style, and passes everything else unmodified.
 
 
 .. highlight:: none
@@ -38,16 +38,16 @@ Options::
     infile                 Input file, stdin if absent or '-'
     -o, --outfile outfile  Output file, stdout if absent or '-'
 
-Options `-m/-p/-s` change quoting style. `-m` sets MySQL quoting style; it's
-added to use the program in the following scenario: convert MySQL dumps with
-extended INSERTs to SQL with plain INSERTS suitable to be fed back to MySQL.
-`-p` sets PostgreSQL quoting style; it's like MySQL with additional `E''-style
-quoting
+Options `-m/-p/-s` change quoting style. `-m` sets MySQL quoting style;
+it's added to use the program in the following scenario: convert MySQL
+dumps with extended INSERTs to SQL with plain INSERTS suitable to be fed
+back to MySQL. `-p` sets PostgreSQL quoting style; it's like MySQL with
+additional `E''-style quoting
 <https://www.postgresql.org/docs/9.1/static/sql-syntax-lexical.html#SQL-SYNTAX-STRINGS-ESCAPE>`_.
 `-s` sets generic SQL/SQLite quoting style; this is the default.
 
-If stderr is connected to the console the program displays a text mode progress
-bar. Option `-P/--no-pbar` inhibits it.
+If stderr is connected to the console the program displays a text mode
+progress bar. Option `-P/--no-pbar` inhibits it.
 
 Option `-o` is useful when infile is absent (input is redirected), for
 example::