diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-04-24 20:31:58 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-04-24 20:31:58 +0000 |
commit | cf8f8a8b872dd5e36ac47d72d42b2dcd73b92298 (patch) | |
tree | 0fc039380dd63f846f18f6b0659d949da3d24a6b /ipsectools-controller.lua | |
parent | 40a339972458bf4362f900f1ddb0fc8c767ce349 (diff) | |
download | acf-ipsec-tools-cf8f8a8b872dd5e36ac47d72d42b2dcd73b92298.tar.bz2 acf-ipsec-tools-cf8f8a8b872dd5e36ac47d72d42b2dcd73b92298.tar.xz |
Replaced all list_redir functions with redirect in mvc.lua, implemented a default_action string in each controller, removing the on_load functions
git-svn-id: svn://svn.alpinelinux.org/acf/ipsec-tools/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'ipsectools-controller.lua')
-rw-r--r-- | ipsectools-controller.lua | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/ipsectools-controller.lua b/ipsectools-controller.lua index 9fa758c..ee54208 100644 --- a/ipsectools-controller.lua +++ b/ipsectools-controller.lua @@ -6,12 +6,6 @@ require("format") -- ################################################################################ -- LOCAL FUNCTIONS -local function list_redir (self) - self.conf.action = "status" - self.conf.type = "redir" - error (self.conf) -end - local function displaycmdmanagement(pidofstatus) -- Add a management buttons local management = {} @@ -51,12 +45,7 @@ end -- ################################################################################ -- PUBLIC FUNCTIONS -mvc = {} -function mvc.on_load(self, parent) - if (self.worker[self.conf.action] == nil ) or ( self.conf.action == "init" ) then - self.worker[self.conf.action] = list_redir(self) - end -end +default_action = "status" function status(self) return { status=self.model.getstatus() } |