webmcp
view framework/env/trace/request.lua @ 23:3a6fe8663b26
Code cleanup and documentation added; Year in copyright notice changed to 2009-2010
Details:
- Changed quoting style in auth.openid.xrds_document{...}
- Fixed documentation for auth.openid.initiate{...}
- Added documentation for mondelefant
- Code-cleanup in mondelefant:
-- removed unneccessary lines "rows = PQntuples(res); cols = PQnfields(res);"
-- avoided extra copy of first argument (self) in mondelefant_conn_query
-- no rawget in meta-method "__index" of database result lists and objects
-- removed unreachable "return 0;" in meta-method "__newindex" of database result lists and objects
- Year in copyright notice changed to 2009-2010
- Version string changed to "1.1.1"
Details:
- Changed quoting style in auth.openid.xrds_document{...}
- Fixed documentation for auth.openid.initiate{...}
- Added documentation for mondelefant
- Code-cleanup in mondelefant:
-- removed unneccessary lines "rows = PQntuples(res); cols = PQnfields(res);"
-- avoided extra copy of first argument (self) in mondelefant_conn_query
-- no rawget in meta-method "__index" of database result lists and objects
-- removed unreachable "return 0;" in meta-method "__newindex" of database result lists and objects
- Year in copyright notice changed to 2009-2010
- Version string changed to "1.1.1"
| author | jbe |
|---|---|
| date | Fri Jun 04 19:00:34 2010 +0200 (2010-06-04) |
| parents | 9fdfb27f8e67 |
| children | 0bbfee4d4aed |
line source
1 --[[--
2 trace.request{
3 module = module,
4 view = view,
5 action = action
6 }
8 This function is called automatically to log which view or action has been requested by the web browser.
10 --]]--
12 function trace.request(args)
13 local module = args.module
14 local view = args.view
15 local action = args.action
16 if type(module) ~= "string" then
17 error("No module string passed to trace.request{...}.")
18 end
19 if view and action then
20 error("Both view and action passed to trace.request{...}.")
21 end
22 if not (view or action) then
23 error("Neither view nor action passed to trace.request{...}.")
24 end
25 if view and type(view) ~= "string" then
26 error("No view string passed to trace.request{...}.")
27 end
28 if action and type(action) ~= "string" then
29 error("No action string passed to trace.request{...}.")
30 end
31 trace._new_entry{
32 type = "request",
33 module = args.module,
34 view = args.view,
35 action = args.action
36 }
37 end
