Metadata-Version: 1.1
Name: django-monkey-team
Version: 0.1
Summary: Django middleware that displays debug tracebacks on production sites (where you would have `DEBUG = False`) only to developers.
Home-page: https://github.com/ionelmc/django-prefetch
Author: Ionel Cristian Mărieș
Author-email: contact@ionelmc.ro
License: BSD
Description: ===========================
            django-monkey-team
        ===========================
        
        This is a middleware that displays debug tracebacks on production sites (where
        you would have `DEBUG = False`) only to developers. Developers have to install a
        special userscript to decode the traceback data. AES with CBC mode is used to
        encrypt the traceback. The decode key is a hash of your SECRET_KEY.
        
        Google Chrome and Firefox are supported. If you want to use something else you
        have to find a way to install the userscript yourself.
        
        It looks like this:
        
        .. image:: https://github.com/ionelmc/django-monkey-team/raw/master/docs/monkey-dispatch.png
            :alt: Sample error page
            :target: https://github.com/ionelmc/django-monkey-team/raw/master/docs/monkey-dispatch.png
        
        Installation guide
        ==================
        
        Install it::
        
            pip install django-monkey-team
        
        Change your Django project settings to have::
        
            INSTALLED_APPS += (
                'monkey_team',
            )
            MIDDLEWARE_CLASSES += (
                'monkey_team.middleware.MonkeyTeamMiddleware',
            )
        
        The go to django admin and install the userscript. The setup page looks like
        this:
        
        
        .. image:: https://github.com/ionelmc/django-monkey-team/raw/master/docs/monkey-admin.png
            :alt: Userscript install page
            :target: https://github.com/ionelmc/django-monkey-team/raw/master/docs/monkey-admin.png
        
        Requirements
        ============
        
        PyCrypto is required.
        
        The project has been tested on Django 1.3, 1.4 and trunk with Python 2.6 and
        2.7.
        
        .. image:: https://secure.travis-ci.org/ionelmc/django-monkey-team.png
            :alt: Build Status
            :target: http://travis-ci.org/ionelmc/django-monkey-team
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
