Metadata-Version: 1.0
Name: django-session-idle-timeout
Version: 1.0.1
Summary: Timeout a logged user after a period of time
Home-page: http://github.com/tzulberti/django-request-provider
Author: Tomas Zulberti
Author-email: tzulberti@gmail.com
License: License :: OSI Approved :: BSD License
Description: django-session-idle-timeout
        ===========================
        
        A Django middleware application to timeout a logged in user 
        session after a specified time period.
        
        Installation instructions
        -------------------------
        
        Make sure the following Django apps/middlewares are enabled.
        
        - Authentication (http://docs.djangoproject.com/en/dev/topics/auth/)
        - Sessions (http://docs.djangoproject.com/en/dev/topics/http/sessions/)
        - Messages framework (http://docs.djangoproject.com/en/dev/ref/contrib/messages/)
        
        Install django-session-idle-timeout
        
            easy_install django-session-idle-timeout
        
        Update the *MIDDLEWARE_CLASSES* on the *settings.py*. Add the 
        `sessions.middleware.SessionIdleTimeout` at the bottom.
        
            MIDDLEWARE_CLASSES = (
                ...
                'sessions.middleware.SessionIdleTimeout',
                )
        
        Update the *INSTALLED_APPS*. Add 'sessions'.
        
        Add a new entry named 'SESSION_IDLE_TIMEOUT', and specify the idle 
        timeout period, in seconds. The default value is 30min.
        
            SESSION_IDLE_TIMEOUT = 1800
        
        That's it, you will receive a session timeout message using 
        the Django message framework in your templates.
        
        
        
        Important
        ---------
        
        This is a for of http://github.com/subhranath/django-session-idle-timeout
        
Keywords: django contrib,session login expiration
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
