jbe@215: --[[-- jbe@216: route = jbe@215: request.router() jbe@215: jbe@216: Returns a table with routing information for a request. The table contains the mandatory field "module", one of "view" or "action", and may contain the optional fields "id" and "suffix". This function may be overwritten by an application and calls request.default_router(request.get_path()) in its default implementation. jbe@215: jbe@215: --]]-- jbe@215: jbe@215: function request.router() jbe@216: return (request.default_router(request.get_path())) jbe@215: end jbe@215: jbe@215: --//--