Metadata-Version: 1.1
Name: django-iframetoolbox
Version: 0.2
Summary: Django set of tools to work inside iframe
Home-page: http://www.aurumsocial.com
Author: Domantas Jackūnas
Author-email: Domantas.Jackunas@aurumsocial.com
License: BSD
Download-URL: https://bitbucket.org/JackLeo/django-iframe
Description: Django-iframe
        =============
        
        This is a set of tools/utilities gathered to be used in iframes for example
        social network applications
        
        Iframe fix middleware
        =====================
        middleware that fixes IE PS3 and Safari Cookie problems.
        
        Usage
        -----
        
        Add new midleware after session creation::
        
            MIDDLEWARE_CLASSES = (
                ...
                'iframetoolbox.middleware.IFrameFixMiddleware',
                ...
            )
        
        add iframetoolbox to installed apps::
        
            INSTALLED_APPS = (
                ...
        
                'iframetoolbox',
                ...
            )
        
        add url config::
        
            url(r'^iframe/', include('iframetoolbox.urls')),
        
        
        If needed overwrite templates with your message and style.
        For refference look at source (download url).
        
        TODO:
        =====
        
        Propper docs
        
Keywords: iframe django safari fix
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
