From fc0cc711e84e211c818e7c6f034d13992aa05da1 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 24 Apr 2008 20:31:58 +0000 Subject: 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/alpine-baselayout/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed --- alpineversion-controller.lua | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'alpineversion-controller.lua') diff --git a/alpineversion-controller.lua b/alpineversion-controller.lua index 228f306..a90c306 100644 --- a/alpineversion-controller.lua +++ b/alpineversion-controller.lua @@ -2,24 +2,7 @@ module (..., package.seeall) --- Cause an http redirect to our "read" action --- We use the self.conf table because it already has prefix,controller,etc --- The redir code is defined in the application error handler (acf-controller) -local list_redir = function (self) - self.conf.action = "read" - self.conf.type = "redir" - error (self.conf) -end - -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 - - --logit ("hostname.mvc.on_load activated") - -end +default_action = "read" read = function (self ) return self.model:get() -- cgit v1.2.3