webmcp

view framework/env/trace/execution_return.lua @ 2:72860d232f32

Version 1.0.2

Fixed bug with explicit garbage collection (requests > 256kB caused an error)

Views prefixed with an underscore can't be called externally

ui.paginate now displays the last page, if the selected page number is too high.
author jbe/bsw
date Thu Dec 10 12:00:00 2009 +0100 (2009-12-10)
parents 9fdfb27f8e67
children 0bbfee4d4aed
line source
1 --[[--
2 trace.execution_return{
3 status = status -- optional status
4 }
6 This function is called automatically when returning from a view, action, configuration or filter for logging purposes.
8 --]]--
10 function trace.execution_return(args)
11 local status
12 if args then
13 status = args.status
14 end
15 if status and type(status) ~= "string" then
16 error("Status passed to trace.execution_return{...} is not a string.")
17 end
18 local closed_section = trace._close_section()
19 closed_section.status = status
20 end

Impressum / About Us