From d8f7139b902a72caab215d336a2fc60591ea7967 Mon Sep 17 00:00:00 2001 From: Robohash <401330+e1ven@users.noreply.github.com> 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),