ubernostrum / django-flashpolicies

An application for managing cross-domain access policies for Flash.

 NB: This is not the latest revision. For the latest view, go to tip.

View at rev
django-flashpolicies /
filename size last modified message
docs  
flashpolicies  
.hgignore 62 B 11 months ago Add .hgignore
.hgtags 230 B 11 months ago Added tag v0.1 for changeset 5ed8cc869590
INSTALL.txt 817 B 11 months ago Flesh out docs and setup.py.
LICENSE.txt 1.5 KB 11 months ago License boilerplate
MANIFEST.in 104 B 11 months ago Flesh out docs and setup.py.
README.txt 387 B 11 months ago Flesh out docs and setup.py.
setup.py 1.7 KB 11 months ago Let's call it 1.0.

README

This application enables simple Flash cross-domain access policies for Django 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:

url(r'^crossdomain.xml$',
    'flashpolicies.views.simple',
    {'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.