webmcp

view framework/env/trace/execution_return.lua @ 28:ea2e8f3a2776

allow webmcp path to be set in cgi script

this allows another script to include the webmcp script when the cwd is not the cgi-bin. the script needs to set the WEBMCP_PATH variable.
author Daniel Poelzleithner <poelzi@poelzi.org>
date Sun Sep 19 01:36:08 2010 +0200 (2010-09-19)
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