(global_config, **settings)
| 2 | |
| 3 | |
| 4 | def main(global_config, **settings): |
| 5 | config = Configurator(settings=settings) |
| 6 | config.include('pyramid_chameleon') |
| 7 | config.add_route('wiki_view', '/') |
| 8 | config.add_route('wikipage_add', '/add') |
| 9 | config.add_route('wikipage_view', '/{uid}') |
| 10 | config.add_route('wikipage_edit', '/{uid}/edit') |
| 11 | config.add_static_view('deform_static', 'deform:static/') |
| 12 | config.scan('.views') |
| 13 | return config.make_wsgi_app() |
searching dependent graphs…