webmcp
annotate framework/env/trace/enter_config.lua @ 382:810c020b0da4
Reverted changes to mondelefant_result_index and mondelefant_result_newindex C-functions (proxying of JSON document)
| author | jbe | 
|---|---|
| date | Mon Nov 16 18:31:49 2015 +0100 (2015-11-16) | 
| parents | 0bbfee4d4aed | 
| children | 
| rev | line source | 
|---|---|
| jbe/bsw@0 | 1 --[[-- | 
| jbe/bsw@0 | 2 trace.enter_config{ | 
| jbe/bsw@0 | 3 name = name | 
| jbe/bsw@0 | 4 } | 
| jbe/bsw@0 | 5 | 
| jbe/bsw@0 | 6 This function is used by execute.config and logs the inclusion of a configuration. | 
| jbe/bsw@0 | 7 | 
| jbe/bsw@0 | 8 --]]-- | 
| jbe/bsw@0 | 9 | 
| jbe/bsw@0 | 10 function trace.enter_config(args) | 
| jbe@41 | 11 if not trace._disabled then | 
| jbe@41 | 12 local name = args.name | 
| jbe@41 | 13 if type(name) ~= "string" then | 
| jbe@41 | 14 error("No name string passed to trace.enter_config{...}.") | 
| jbe@41 | 15 end | 
| jbe@41 | 16 trace._open_section{ type = "config", name = name } | 
| jbe/bsw@0 | 17 end | 
| jbe/bsw@0 | 18 end |