summaryrefslogtreecommitdiffstats
path: root/postfix-listfiles-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-12-31 15:49:13 +0000
committerTed Trask <ttrask01@yahoo.com>2008-12-31 15:49:13 +0000
commit693030035ed1152f8ec7144a622e9122c373c026 (patch)
tree01bcee7809da8ef5d874e36df96fea6bf474d25f /postfix-listfiles-html.lsp
downloadacf-postfix-693030035ed1152f8ec7144a622e9122c373c026.tar.bz2
acf-postfix-693030035ed1152f8ec7144a622e9122c373c026.tar.xz
Added postfix controller with basic functionality.
git-svn-id: svn://svn.alpinelinux.org/acf/postfix/trunk@1655 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'postfix-listfiles-html.lsp')
-rw-r--r--postfix-listfiles-html.lsp39
1 files changed, 39 insertions, 0 deletions
diff --git a/postfix-listfiles-html.lsp b/postfix-listfiles-html.lsp
new file mode 100644
index 0000000..ea54404
--- /dev/null
+++ b/postfix-listfiles-html.lsp
@@ -0,0 +1,39 @@
+<% local data, viewlibrary, page_info, session = ...
+require("viewfunctions")
+%>
+<%
+--[[ DEBUG INFORMATION
+io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
+io.write(html.cfe_unpack(data))
+io.write("</span>")
+--]]
+%>
+
+<% displaycommandresults({"expert", "startstop"}, session) %>
+
+<% if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("status")
+end %>
+
+<h1><%= data.label %></h1>
+
+<TABLE>
+ <TR style="background:#eee;font-weight:bold;">
+ <TD style="padding-right:20px;white-space:nowrap;text-align:left;" class="header">File</TD>
+ <TD style="padding-right:20px;white-space:nowrap;text-align:left;" class="header">Size</TD>
+ <TD style="white-space:nowrap;text-align:left;" class="header">Last Modified</TD>
+ </TR>
+
+
+<% for i,file in ipairs(data.value) do %>
+ <TR>
+ <TD style="padding-right:20px;white-space:nowrap;"><%= html.link{value = "expert?filename=" .. file.filename.."&redir="..page_info.orig_action, label=file.filename} %></TD>
+ <TD style="padding-right:20px;white-space:nowrap;"><%= file.filesize %></TD>
+ <TD style="white-space:nowrap;" width="90%"><%= file.mtime %></TD>
+ </TR>
+<% end %>
+</TABLE>
+
+<% if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("startstop")
+end %>