summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-04-24 20:31:58 +0000
committerTed Trask <ttrask01@yahoo.com>2008-04-24 20:31:58 +0000
commit900d6f0c2dfbec11f455d5afa405a8b1a889c0be (patch)
treeb8884f36a2d283ff7c0a3446ce22806ab1a7cd02
parent0fa7d94248727f8a4322f02313f03cd828e28694 (diff)
downloadacf-shorewall-900d6f0c2dfbec11f455d5afa405a8b1a889c0be.tar.bz2
acf-shorewall-900d6f0c2dfbec11f455d5afa405a8b1a889c0be.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/shorewall/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--shorewall-controller.lua13
1 files changed, 1 insertions, 12 deletions
diff --git a/shorewall-controller.lua b/shorewall-controller.lua
index a2038fe..0dd7336 100644
--- a/shorewall-controller.lua
+++ b/shorewall-controller.lua
@@ -9,12 +9,6 @@ local newrecordtxt = "[New]"
-- ################################################################################
-- LOCAL FUNCTIONS
-local list_redir = function (self)
- self.conf.action = "status"
- self.conf.type = "redir"
- error (self.conf)
-end
-
local function displaycmdmanagement(pidofstatus)
-- Add a management buttons
local management = {}
@@ -59,12 +53,7 @@ end
-- ################################################################################
-- PUBLIC FUNCTIONS
-mvc = {}
-mvc.on_load = function(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 editrecords(self,types,record,errormessage)
local recorddetails = {}