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
commitb4abf9273c755d60a829079de089d072a646bd9f (patch)
tree989943b91703437937069ed95bb88080f4c40fb2
parentfbe7ad8b008a705711ff1e2daa6f4b660ff1095d (diff)
downloadacf-fetchmail-b4abf9273c755d60a829079de089d072a646bd9f.tar.bz2
acf-fetchmail-b4abf9273c755d60a829079de089d072a646bd9f.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/fetchmail/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--fetchmail-controller.lua13
1 files changed, 1 insertions, 12 deletions
diff --git a/fetchmail-controller.lua b/fetchmail-controller.lua
index fdb17aa..1419a99 100644
--- a/fetchmail-controller.lua
+++ b/fetchmail-controller.lua
@@ -3,12 +3,6 @@ module(..., package.seeall)
-- ################################################################################
-- LOCAL FUNCTIONS
-local function list_redir (self)
- self.conf.action = "status"
- self.conf.type = "redir"
- error (self.conf)
-end
-
local function displaycmdsave(self)
-- Add a cmd button to the view
local cmdsave = cfe({ name="cmdsave",
@@ -58,12 +52,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(self) }