Metadata-Version: 1.1
Name: django-concurrency
Version: 0.7.1
Summary: Optimistic lock implementation for Django. Prevents users from doing concurrent editing.
Home-page: https://github.com/saxix/django-concurrency
Author: Stefano Apostolico
Author-email: s.apostolico@gmail.com
License: MIT License
Description: ==================
        Django Concurrency
        ==================
        
        
        .. image:: https://pypip.in/v/django-concurrency/badge.png
              :target: https://crate.io/packages/django-concurrency/
        
        .. image:: https://pypip.in/d/django-concurrency/badge.png
               :target: https://crate.io/packages/django-concurrency/
        
        
        django-concurrency is an optimistic lock [1]_ implementation for Django.
        
        Tested with: 1.4.x, 1.5.x, 1.6.x, trunk.
        
        It prevents users from doing concurrent editing in Django both from UI and from a
        django command.
        
        
        
        How it works
        ------------
        sample code::
        
            from concurrency.fields import IntegerVersionField
        
            class ConcurrentModel( models.Model ):
                version = IntegerVersionField( )
        
        Now if you try::
        
            a = ConcurrentModel.objects.get(pk=1)
            b = ConcurrentModel.objects.get(pk=1)
            a.save()
            b.save()
        
        you will get a ``RecordModifiedError`` on ``b.save()``
        
        
        Links
        ~~~~~
        
        +--------------------+----------------+--------------+------------------------+
        | Stable             | |master-build| | |master-cov| | |master-req|           |
        +--------------------+----------------+--------------+------------------------+
        | Development        | |dev-build|    | |dev-cov|    | |dev-req|              |
        +--------------------+----------------+--------------+------------------------+
        | Project home page: |https://github.com/saxix/django-concurrency             |
        +--------------------+---------------+----------------------------------------+
        | Issue tracker:     |https://github.com/saxix/django-concurrency/issues?sort |
        +--------------------+---------------+----------------------------------------+
        | Download:          |http://pypi.python.org/pypi/django-concurrency/         |
        +--------------------+---------------+----------------------------------------+
        | Documentation:     |https://django-concurrency.readthedocs.org/en/latest/   |
        +--------------------+---------------+--------------+-------------------------+
        
        .. |master-build| image:: https://secure.travis-ci.org/saxix/django-concurrency.png?branch=master
                            :target: http://travis-ci.org/saxix/django-concurrency/
        
        .. |master-cov| image:: https://coveralls.io/repos/saxix/django-concurrency/badge.png?branch=master
                            :target: https://coveralls.io/r/saxix/django-concurrency
        
        .. |master-req| image:: https://requires.io/github/saxix/django-concurrency/requirements.png?branch=master
                            :target: https://requires.io/github/saxix/django-concurrency/requirements/?branch=master
                            :alt: Requirements Status
        
        
        .. |dev-build| image:: https://secure.travis-ci.org/saxix/django-concurrency.png?branch=develop
                          :target: http://travis-ci.org/saxix/django-concurrency/
        
        .. |dev-cov| image:: https://coveralls.io/repos/saxix/django-concurrency/badge.png?branch=develop
                        :target: https://coveralls.io/r/saxix/django-concurrency
        
        .. |dev-req| image:: https://requires.io/github/saxix/django-concurrency/requirements.png?branch=develop
                            :target: https://requires.io/github/saxix/django-concurrency/requirements/?branch=develop
                            :alt: Requirements Status
        
        
        .. [1] http://en.wikipedia.org/wiki/Optimistic_concurrency_control
        
        
Keywords: django
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
