Metadata-Version: 1.1
Name: django-sudo
Version: 1.1.1
Summary: Extra security for your sensitive pages
Home-page: https://github.com/mattrobenolt/django-sudo
Author: Matt Robenolt
Author-email: matt@ydekproductions.com
License: BSD
Description: django-sudo
        ===========
        
        .. image:: https://travis-ci.org/mattrobenolt/django-sudo.svg?branch=master
           :target: https://travis-ci.org/mattrobenolt/django-sudo
        
        .. image:: https://coveralls.io/repos/mattrobenolt/django-sudo/badge.png?branch=master
           :target: https://coveralls.io/r/mattrobenolt/django-sudo?branch=master
        
        Sudo mode is an extra layer of security for your most sensitive pages.
        
        This is an implementation of GitHub's `Sudo Mode
        <https://github.com/blog/1513-introducing-github-sudo-mode>`_ for `Django
        <https://www.djangoproject.com/>`_.
        
        What is this for?
        ~~~~~~~~~~~~~~~~~
        ``django-sudo`` provides an extra layer of security for after a user is already logged in. Views can
        be decorated with ``@sudo_required``, and then a user
        must re-enter their password to view that page. After verifying their password, that user has
        elevated permissions for the duration of ``SUDO_COOKIE_AGE``. This duration is independent of the
        normal session duration allowing short elevated permission durations, but retain long user sessions.
        
        Installation
        ~~~~~~~~~~~~
        
        .. code-block:: console
        
            $ pip install django-sudo
        
        Compatibility
        ~~~~~~~~~~~~~
        * Django 1.4-1.7
        * Python 2.6-3.4
        * pypy
        
        Resources
        ~~~~~~~~~
        * `Documentation <https://django-sudo.readthedocs.org/>`_
        * `Security <https://django-sudo.readthedocs.org/en/latest/security/index.html>`_
        * `Changelog <https://django-sudo.readthedocs.org/en/latest/changelog/index.html>`_
        
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
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: Programming Language :: Python :: 3.4
