Metadata-Version: 1.1
Name: django-request-log
Version: 0.0.10
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
        ==================
        
        .. image:: https://travis-ci.org/orcasgit/django-request-log.svg
           :target: https://travis-ci.org/orcasgit/django-request-log
           :alt: Build Status
        .. image:: https://coveralls.io/repos/orcasgit/django-request-log/badge.png
           :target: https://coveralls.io/r/orcasgit/django-request-log
           :alt: Coverage Status
        .. image:: https://requires.io/github/orcasgit/django-request-log/requirements.png?branch=master
           :target: https://requires.io/github/orcasgit/django-request-log/requirements/?branch=master
           :alt: Requirements Status
        
        django-request-log is pluggable Django application to keep track user login and logout events and URLs views 
        developed at ORCAS.
        
        Quickstart
        ==========
        
        Installation
        ------------
        
        django-request-log is available on PyPI, so you can install it with ``pip``::
        
            $ pip install django-request-log
        
        Or add ``django-request-log`` to the project's requirement file
        
        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 <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
