Metadata-Version: 1.1
Name: django-transaction-hooks
Version: 0.2
Summary: Django database backends that permit registering post-transaction-commit hooks
Home-page: https://github.com/carljm/django-transaction-hooks/
Author: Carl Meyer
Author-email: carl@oddbird.net
License: UNKNOWN
Description: ============================
        django-transaction-hooks
        ============================
        
        .. image:: https://secure.travis-ci.org/carljm/django-transaction-hooks.png?branch=master
           :target: http://travis-ci.org/carljm/django-transaction-hooks
           :alt: Test status
        .. image:: https://coveralls.io/repos/carljm/django-transaction-hooks/badge.png?branch=master
           :target: https://coveralls.io/r/carljm/django-transaction-hooks
           :alt: Test coverage
        .. image:: https://pypip.in/v/django-transaction-hooks/badge.png
           :target: https://pypi.python.org/pypi/django-transaction-hooks
           :alt: Latest version
        .. image:: https://pypip.in/license/django-transaction-hooks/badge.png
           :target: https://pypi.python.org/pypi/django-transaction-hooks
           :alt: License
        
        Django database backends with post-transaction-commit callback hooks.
        
        ``django-transaction-hooks`` supports `Django`_ 1.6.1 and later on Python 2.6,
        2.7, 3.2, and 3.3.
        
        .. _Django: http://www.djangoproject.com/
        
        
        Getting Help
        ============
        
        Documentation for django-transaction-hooks is available at
        https://django-transaction-hooks.readthedocs.org/
        
        This app is available on `PyPI`_ and can be installed with ``pip install
        django-transaction-hooks``.
        
        .. _PyPI: https://pypi.python.org/pypi/django-transaction-hooks/
        
        
        Contributing
        ============
        
        See the `contributing docs`_.
        
        .. _contributing docs: https://github.com/carljm/django-transaction-hooks/blob/master/CONTRIBUTING.rst
        
        CHANGES
        =======
        
        0.2 (2014.11.29)
        ----------------
        
        * Add built-in PostGIS backend. Merge of GH-16, fixes GH-14. Thanks Bertrand
          Bordage.
        
        
        0.1.4 (2014.05.27)
        ------------------
        
        * Make it possible to execute a transaction within an on-commit hook (except on
          SQLite). Merge of GH-9, fixes GH-8. Thanks Marek Malek.
        
        
        0.1.3 (2014.01.24)
        -------------------
        
        * Fix failure when mixing-in with database backends that perform queries in
          ``__init__`` (e.g. PostGIS backend when ``POSTGIS_VERSION`` setting is not
          set). Merge of GH-6, fixes GH-5. Thanks Niels Sandholt Busch.
        
        
        0.1.2 (2014.01.21)
        ------------------
        
        * Fix bug where running queries in an ``on_commit`` hook under Postgres caused
          an "autocommit cannot be used inside a transaction" error. (GH-4).
        
        
        0.1.1 (2014.01.18)
        ------------------
        
        * Clear run-on-commit hooks even if one raises an exception. Thanks akaariai.
        
        
        0.1 (2014.01.18)
        ----------------
        
        * Initial working version; support for SQLite3, PostgreSQL, MySQL.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Framework :: Django
