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
commit73f610ed28b5eb7faaf46e727a0fbc0babde1bb7 (patch)
tree9066c993c62a6db46f2cfbe001cd726b3625ed97
parent72201139eff2e2346905b980bb9edbd9e9d2b7bf (diff)
downloadacf-quagga-73f610ed28b5eb7faaf46e727a0fbc0babde1bb7.tar.bz2
acf-quagga-73f610ed28b5eb7faaf46e727a0fbc0babde1bb7.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/quagga/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--quagga-controller.lua14
1 files changed, 2 insertions, 12 deletions
diff --git a/quagga-controller.lua b/quagga-controller.lua
index fdaf6ad..a9024f0 100644
--- a/quagga-controller.lua
+++ b/quagga-controller.lua
@@ -9,12 +9,6 @@ local newrecordtxt = "[New]"
-- ################################################################################
-- 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 = {}
@@ -54,12 +48,8 @@ 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() }