(self)
| 274 | return _cdn |
| 275 | |
| 276 | def get_app(self): |
| 277 | reload = self.get_query_argument('reload', None) is not None |
| 278 | type, res = get_app_from_path(self.request.path, abs_base, index=index_func, reload=reload) |
| 279 | if type == 'error': |
| 280 | raise tornado.web.HTTPError(status_code=res) |
| 281 | elif type == 'html': |
| 282 | raise tornado.web.Finish(res) |
| 283 | |
| 284 | app_name = self.get_query_argument('app', 'index') |
| 285 | app = res.get(app_name) or res['index'] |
| 286 | |
| 287 | return app |
| 288 | |
| 289 | gen.send(WSHandler) |
| 290 | gen.close() |
nothing calls this directly
no test coverage detected