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
commit95e2a179728ab427cd5d5c969108d7ab8b7827b8 (patch)
treefc1f1fb6260a264cf9e27be353312fe9e64b168f
parent5d80037c36cd2df555a2fe7897df800fe817e380 (diff)
downloadacf-openntpd-95e2a179728ab427cd5d5c969108d7ab8b7827b8.tar.bz2
acf-openntpd-95e2a179728ab427cd5d5c969108d7ab8b7827b8.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/openntpd/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--openntpd-controller.lua13
1 files changed, 1 insertions, 12 deletions
diff --git a/openntpd-controller.lua b/openntpd-controller.lua
index 6291e6c..784a851 100644
--- a/openntpd-controller.lua
+++ b/openntpd-controller.lua
@@ -7,12 +7,6 @@ require("validator")
-- ################################################################################
-- LOCAL FUNCTIONS
-local function list_redir(self)
- self.conf.action = "read"
- self.conf.type = "redir"
- error (self.conf)
-end
-
local function displaycmdmanagement(pidofstatus)
-- Add a management buttons
local management = {}
@@ -62,12 +56,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 config(self)
local errors = {}