Metadata-Version: 1.1
Name: django-readonly
Version: 0.1.0
Summary: Put website in read-only mode for maintenance.
Home-page: https://bitbucket.org/zalew/django-readonly
Author: Jakub Zalewski
Author-email: zalew7@gmail.com
License: public domain
Description: Django-Readonly 
        =============
        
        Put your website into read-only mode for maintanance. It blocks any POST requests and signs users out. 
        It doesn't lock any database transactions (check out https://github.com/streeter/django-db-readonly for that).
        
        
        * http://pypi.python.org/pypi/django-readonly/
        * https://bitbucket.org/zalew/django-readonly/
         
        Usage
        -----
         
        * ``pip install django-readonly``
        * settings.py: add ``'readonly.middleware.ReadOnlyMiddleware',`` to ``MIDDLEWARE_CLASSES``
        * settings.py: READ_ONLY = True
        * template: ``{% if request.read_only %}<p>Website is currently in read-only mode.</p>{% endif %}``
          
Keywords: django readonly
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
