From 6e1c67f38c43b88b4f098ced3279e2227c593e53 Mon Sep 17 00:00:00 2001 From: Mika Havela Date: Thu, 1 Nov 2007 16:29:17 +0000 Subject: Initial code for logfile browsing git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@243 ab2d0c66-481e-0410-8bed-d214d4d58bed --- logfiles-controller.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 logfiles-controller.lua (limited to 'logfiles-controller.lua') diff --git a/logfiles-controller.lua b/logfiles-controller.lua new file mode 100644 index 0000000..1770754 --- /dev/null +++ b/logfiles-controller.lua @@ -0,0 +1,33 @@ +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 +end + +-- Public methods + +read = function (self ) + return ({logfile = self.model:get("/var/log/mini_httpd.log")} ) +end + +--update = function (self) +-- return nil +--end + +--delete = function (self) +-- return nil +--end + +--create = update -- cgit v1.2.3