Adding py-postgresql notes

Issue #1850 resolved
Former user created an issue

Could someone with access to source control add py-postgresql to the documentation?

I will attach files with the changes.

Comments (12)

  1. Former user Account Deleted

    dbengine.txt Wasn't sure how to edit dbengine properly. It only makes one change: In the DB table it changes pypostgresql's Python 3 support from "partial" to "yes"

  2. Former user Account Deleted

    Ok, I guess that's everything.... Now for the explanation:

    postgresql.rst (http://www.sqlalchemy.org/trac/raw-attachment/ticket/1850/postgresql.rst) This is a modified postgresql.rst from here: http://www.sqlalchemy.org/trac/browser/doc/build/reference/dialects/postgresql.rst?rev=5901%3A2772dd7f68e1 The change adds pypostgresql notes to that page.

    dbengine.txt I got this file from here: http://www.sqlalchemy.org/docs/dbengine.html#supported-dbapis and edited the table so that py-postgresql shows as having Python 3 support

    postgresql.2.rst This is similar to dbengine.txt, but appears to be a different version of dbengine. Maybe it's the newer one? I don't know. Anways, I edited this one too, since I didn't know. I got the file from here: http://www.sqlalchemy.org/trac/browser/doc/build/dbengine.rst?rev=5901%3A2772dd7f68e1 The changes add py-postgresql into the page in various places.

  3. Mike Bayer repo owner

    any chance unified patches against the .rst files could be attached ? dbengine.txt is an output file - there's a dbengine.rst in the source dist.

    To make a diff, get a mercurial clone of the source tree:

    hg clone http://hg.sqlalchemy.org/sqlalchemy
    

    edit the .rst files:

    doc/build/dbengine.rst
    doc/build/reference/dialects/postgresql.rst
    

    then create a patch:

    hg diff > docs.patch
    

    the docs.patch you can attach here.

  4. Former user Account Deleted

    I took the files you asked for from the source: doc/build/dbengine.rst doc/build/reference/dialects/postgresql.rst

    edited them and put them inside this zip file

    I don't have the ability to diff the files and make a mercurial patch file, but this should be what you need ... ready for someone with actual source control access to use.

  5. Former user Account Deleted

    Thanks. I'll see if the author has any other notes to add.

    I did not know why it was listed as partial. I'll probably file that as a bug report for py-postgresql and let the author know about that. Thanks for the detailed readout of the issues and/or for the details on why it was partial.

  6. Log in to comment