(context)
| 365 | applications = make_applications(applications) |
| 366 | |
| 367 | def get_app(context): |
| 368 | app_name = context.request_url_parameter('app', 'index') |
| 369 | return applications.get(app_name) or applications['index'] |
| 370 | |
| 371 | self.app_loader = app_loader or get_app |
| 372 |
nothing calls this directly
no test coverage detected