From d5eb796f6419cf060b76e276022830f7e5afd3b9 Mon Sep 17 00:00:00 2001 From: Colin Davis Date: Sun, 16 Sep 2012 22:17:57 -0400 Subject: [PATCH] Crossdomain.xml --- webfront.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webfront.py b/webfront.py index 1d6eade..5acb6c1 100755 --- a/webfront.py +++ b/webfront.py @@ -401,6 +401,8 @@ def main(): } application = tornado.web.Application([ + (r'/(crossdomain\.xml)', tornado.web.StaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), + "static/")}), (r"/static/(.*)", tornado.web.StaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), "static/")}), (r"/", MainHandler),