annotate framework/env/request/router.lua @ 428:52ebde158c92
Fixed minor glitch regarding floating point numbers (e.g. 0.009) in JSON encoder; Distinguish between integers and floats in JSON encoder if Lua version >= 5.3
author |
jbe |
date |
Thu Jan 14 17:40:49 2016 +0100 (2016-01-14) |
parents |
fd0360594636 |
children |
|
rev |
line source |
jbe@215
|
1 --[[--
|
jbe@216
|
2 route =
|
jbe@215
|
3 request.router()
|
jbe@215
|
4
|
jbe@216
|
5 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
|
6
|
jbe@215
|
7 --]]--
|
jbe@215
|
8
|
jbe@215
|
9 function request.router()
|
jbe@216
|
10 return (request.default_router(request.get_path()))
|
jbe@215
|
11 end
|
jbe@215
|
12
|
jbe@215
|
13 --//--
|