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 47 B 9 months ago Update .hgignore to ignore Sphinx build directories.
.hgtags 2.1 KB 2 months ago Added tag v1.4 for changeset ea6034e9591a
CHANGELOG 3.0 KB 2 months ago Call it 1.4
INSTALL 982 B 9 months ago Might as well link up the public docs.
LICENSE 1.5 KB 2 months ago I have commits in 2010.
MANIFEST.in 110 B 9 months ago Add the changelog to the manifest, and update the date…
README 679 B 2 months ago Correct documentation link in README.
setup.py 1012 B 2 months ago Call it 1.4

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.