Metadata-Version: 1.1
Name: django-flashpolicies
Version: 1.9
Summary: Flash cross-domain policies for Django sites
Home-page: http://github.com/ubernostrum/django-flashpolicies/
Author: James Bennett
Author-email: james@b-list.org
License: UNKNOWN
Description: .. -*-restructuredtext-*-
        
        .. image:: https://travis-ci.org/ubernostrum/django-flashpolicies.svg?branch=master
            :target: https://travis-ci.org/ubernostrum/django-flashpolicies
        
        This application provides management of Flash cross-domain access
        policies for `Django <https://www.djangoproject.com>`_ sites. For
        example, the following URL pattern is all you'd need to set up
        cross-domain access for Flash files served from your media server:
        
        .. code:: python
        
            from django.conf.urls import url
        
            from flashpolicies.views import allow_domains
        
            urlpatterns = [
                # ...your other URL patterns here...
                url(r'^crossdomain.xml$',
                    allow_domains,
                    {'domains': ['media.yoursite.com']}),
            ]
        
        
        Various other views are included, handling other common and
        not-so-common cases, as well as utilities for generating custom
        cross-domain policies.
        
        Full documentation for all functionality is also included and
        `available online
        <https://django-flashpolicies.readthedocs.io/>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Utilities
