From: Alexandre Terrasa Date: Mon, 23 May 2016 20:50:38 +0000 (-0400) Subject: lib/popcorn: extract Router::handler_in private service X-Git-Url: http://nitlanguage.org lib/popcorn: extract Router::handler_in private service Signed-off-by: Alexandre Terrasa --- diff --git a/lib/popcorn/pop_handlers.nit b/lib/popcorn/pop_handlers.nit index 2ce4755..2f438ef 100644 --- a/lib/popcorn/pop_handlers.nit +++ b/lib/popcorn/pop_handlers.nit @@ -317,6 +317,10 @@ class Router redef fun handle(route, uri, req, res) do if not route.match(uri) then return + handle_in(route, uri, req, res) + end + + private fun handle_in(route: AppRoute, uri: String, req: HttpRequest, res: HttpResponse) do for hroute, handler in handlers do handler.handle(hroute, route.uri_root(uri), req, res) if res.sent then break