always use the app dispatcher

This commit is contained in:
Maximilian Hils
2014-12-09 18:18:14 +01:00
parent 096a3af273
commit 14a8d2f5b8
24 changed files with 2504 additions and 16223 deletions

View File

@@ -49,10 +49,6 @@ class FlowClear(tornado.web.RequestHandler):
self.application.state.clear()
class FlowUpdates(WebSocketEventBroadcaster):
connections = set()
class ClientConnection(WebSocketEventBroadcaster):
connections = set()
@@ -65,7 +61,6 @@ class Application(tornado.web.Application):
(r"/updates", ClientConnection),
(r"/flows", Flows),
(r"/flows/clear", FlowClear),
(r"/flows/updates", FlowUpdates),
]
settings = dict(
template_path=os.path.join(os.path.dirname(__file__), "templates"),