Metadata-Version: 1.0
Name: django-tls
Version: 0.0.2
Summary: Stores the current request in Thread Local Storage using Werkzeug
Home-page: https://github.com/aino/django-tls
Author: Mikko Hellsing
Author-email: mikko@aino.se
License: BSD
Description: 
        django-tls
        ==========
        Stores the current request in `Thread Local Storage`_ using `Werkzeug`_.
        
        Installation::
        
            pip install django-tls
        
        Configuration::
        
            # settings.py
            MIDDLEWARE_CLASSES = (
                'tls.TLSRequestMiddleware',
                ...
            )
        
        Usage::
            
            from tls import request
            # do something dangerous and useful with current request object
        
        Worried about security? then read this `thread`_.
        
        
        .. _Thread Local Storage: http://en.wikipedia.org/wiki/Thread-local_storage
        .. _Werkzeug: http://werkzeug.pocoo.org/
        .. _thread: http://groups.google.com/group/django-users/browse_thread/thread/e7af359d7d183e04
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Framework :: Django
