On Tue, May 19, 2009 at 2:47 AM, Matt Davies <tonm...@gmail.com> wrote:
> I've been asked to server up a crossdomain.xml file at the root of our web
> sites so that another team of developers can access our data via Flash.
> How do I set that up in the urls.py file?  I use one urls.py file for many
> web sites so it would be far easier to put it in here.
> I've got to this bit but can't think how I can tell the app to serve the doc
> from the root folder
> urlpatterns = patterns('',
> (r'^crossdomain.xml', What goes in here?)
> )

You can set up some sort of override to tell your web server -- not
Django -- to just serve up the file. Examples are available here:

http://docs.djangoproject.com/en/dev/howto/deployment/modpython/#id1

Or... I wrote an application recently that generates and serves
cross-domain policy files for Flash. With the exception of the
unit-test suite (which relies on a new-in-1.1 feature), it'll probably
actually work on the version of Django you're using. You can grab the
package to install here:

http://pypi.python.org/pypi/django-flashpolicies/

Or read the documentation (and source code) here:

http://bitbucket.org/ubernostrum/django-flashpolicies/src/


-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to