diff options
-rw-r--r-- | gross-controller.lua | 4 | ||||
l---------[-rw-r--r--] | gross-logfile-html.lsp | 7 | ||||
-rw-r--r-- | gross-model.lua | 7 |
3 files changed, 12 insertions, 6 deletions
diff --git a/gross-controller.lua b/gross-controller.lua index 916511e..ee54de9 100644 --- a/gross-controller.lua +++ b/gross-controller.lua @@ -18,4 +18,8 @@ function mymodule.expert(self) return self.handle_form(self, self.model.get_filedetails, self.model.update_filedetails, self.clientdata, "Save", "Edit Gross Config", "Configuration Set") end +function mymodule.logfile(self) + return self.model.get_logfile(self, self.clientdata) +end + return mymodule diff --git a/gross-logfile-html.lsp b/gross-logfile-html.lsp index 24cad72..ac8854f 100644..120000 --- a/gross-logfile-html.lsp +++ b/gross-logfile-html.lsp @@ -1,6 +1 @@ -<% local data, viewlibrary = ... -%> - -<% if viewlibrary and viewlibrary.dispatch_component then - viewlibrary.dispatch_component("alpine-baselayout/logfiles/view", {filename="/var/log/messages", grep="gross"}) -end %> +../logfile-html.lsp
\ No newline at end of file diff --git a/gross-model.lua b/gross-model.lua index 94a2685..e3d5241 100644 --- a/gross-model.lua +++ b/gross-model.lua @@ -42,4 +42,11 @@ function mymodule.update_filedetails(self, filedetails) return modelfunctions.setfiledetails(self, filedetails, {configfile}) end +function mymodule.get_logfile(self, clientdata) + local retval = cfe({ type="group", value={}, label="Log File Configuration" }) + retval.value.facility = cfe({value=format.parse_ini_file(fs.read_file(configfile), "", "syslog_facility") or "mail", label="Syslog Facility"}) + retval.value.grep = cfe({ value="gross", label="Grep" }) + return retval +end + return mymodule |