Metadata-Version: 1.0
Name: django-request-log
Version: 0.0.3
Summary: Pluggable Django applications to record user login and logout events and URL views.
Home-page: https://github.com/orcasgit/django-request-log
Author: Oregon Center for Applied Science
Author-email: pperez@orcasinc.com
License: Apache 2.0
Description: django-request-log
        ==================
        
        django-request-log is pluggable Django application to keep track user login and logout events and URLs views 
        developed at ORCAS.
        
        Quickstart
        ==========
        
        Installation
        ------------
        
        Add the line below to the project's requirement file:
        ````
           django-request-log
        ````
        Or run:
        ````
            pip install django-request-log
        ````
        
        Usage
        -----
        
        1. Add ``log`` to your ``INSTALLED_APPS``.
        
        2. Add ``log.middleware.RequestLoggingMiddleware`` to your ``MIDDLEWARE_CLASSES``
        ````
            MIDDLEWARE_CLASSES = (
                'django.middleware.common.CommonMiddleware',
                'django.contrib.sessions.middleware.SessionMiddleware',
                'django.middleware.csrf.CsrfViewMiddleware',
                ...
                'log.middleware.RequestLoggingMiddleware',
            )
        ````
        
        3. Run:
        ````
        python manage.py syncdb
        ````
        
        TODOs and BUGS
        ==============
        
        See: https://github.com/orcasgit/django-request-log/issues
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
