From fb00ff8f05dae3c110beceb929ea036e4cd14ae1 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Mon, 23 Sep 2013 18:13:03 +0000 Subject: Change function prototypes to pass self and use self.model instead of functions table Changed the order of the first two parameters passed to validate function in provisioning_params Replaced all APP references with self, now that self is available Still need to implement swapvalidateparams script --- config/update_device.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config/update_device.lua') diff --git a/config/update_device.lua b/config/update_device.lua index 7295062..9823e95 100644 --- a/config/update_device.lua +++ b/config/update_device.lua @@ -1,7 +1,7 @@ -- This is the script run after editing a device - the label, classes -local functions, device, olddevice, params, oldparams = ... +local self, device, olddevice, params, oldparams = ... ---APP.logevent("got to update_device script") +--self.logevent("got to update_device script") -- We'll handle the changing of the device by handling the resulting changing of the params local env = {} @@ -10,5 +10,5 @@ setmetatable (env, {__index = _G}) -- so we set env 0, not env 1 setfenv (0, env) local f = loadfile("/etc/provisioning/update_device_params.lua") -if (f) then f(functions, params, oldparams) end +if (f) then f(self, params, oldparams) end setfenv (0, _G) -- cgit v1.2.3