# HG changeset patch # User jbe # Date 1427385313 -3600 # Node ID f28b3c67137824bc689df8518e43931d14bcce02 # Parent 2b5bdf9028fbd30e1a79b14be129a041195b2467 Fixed indentation of autodoc comments diff -r 2b5bdf9028fb -r f28b3c671378 framework/env/execute/action.lua --- a/framework/env/execute/action.lua Thu Mar 26 16:40:04 2015 +0100 +++ b/framework/env/execute/action.lua Thu Mar 26 16:55:13 2015 +0100 @@ -1,5 +1,5 @@ --[[-- -action_status = -- status code returned by the action (a string), or, if "test_existence" == true, a boolean +action_status = -- status code returned by action (a string), or, if "test_existence" == true, a boolean execute.action{ module = module, -- module name of the action to be executed action = action, -- name of the action to be executed diff -r 2b5bdf9028fb -r f28b3c671378 framework/env/execute/view.lua --- a/framework/env/execute/view.lua Thu Mar 26 16:40:04 2015 +0100 +++ b/framework/env/execute/view.lua Thu Mar 26 16:55:13 2015 +0100 @@ -1,10 +1,10 @@ --[[-- -view_exists = -- boolean returned if "test_existence" is set to true, otherwise no value returned +view_exists = -- boolean returned if "test_existence" is set to true, otherwise no value returned execute.view{ - module = module, -- module name of the view to be executed - view = view, -- name of the view to be executed - id = id, -- id to be returned by param.get_id(...) during execution - params = params, -- parameters to be returned by param.get(...) during execution + module = module, -- module name of the view to be executed + view = view, -- name of the view to be executed + id = id, -- id to be returned by param.get_id(...) during execution + params = params, -- parameters to be returned by param.get(...) during execution test_existence = test_existence -- do not execute view but only check if it exists }