summaryrefslogtreecommitdiffstats
path: root/clamav-listfiles-html.lsp
diff options
context:
space:
mode:
authorttrask <ttrask@ab2d0c66-481e-0410-8bed-d214d4d58bed>2009-03-18 20:14:09 +0000
committerttrask <ttrask@ab2d0c66-481e-0410-8bed-d214d4d58bed>2009-03-18 20:14:09 +0000
commit034b5f0c6295331cc836b0a5fed2ae3e86d25611 (patch)
treedb8c961f5bb332c0cef96aa661a062921efe1854 /clamav-listfiles-html.lsp
parent980642caa0eeb1f01acd7d4690e27c33785b5b5b (diff)
downloadacf-clamav-034b5f0c6295331cc836b0a5fed2ae3e86d25611.tar.bz2
acf-clamav-034b5f0c6295331cc836b0a5fed2ae3e86d25611.tar.xz
Modified ClamAV to allow editing of /etc/freshclam.conf. Needed to add list.
git-svn-id: svn://svn.alpinelinux.org/acf/clamav/trunk@1732 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'clamav-listfiles-html.lsp')
-rw-r--r--clamav-listfiles-html.lsp32
1 files changed, 32 insertions, 0 deletions
diff --git a/clamav-listfiles-html.lsp b/clamav-listfiles-html.lsp
new file mode 100644
index 0000000..42caa56
--- /dev/null
+++ b/clamav-listfiles-html.lsp
@@ -0,0 +1,32 @@
+<% local data, viewlibrary, page_info, session = ...
+require("viewfunctions")
+%>
+
+<% displaycommandresults({"expert", "startstop"}, session) %>
+
+<% if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("status")
+end %>
+
+<h1><%= html.html_escape(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;"><%= html.html_escape(file.filesize) %></TD>
+ <TD style="white-space:nowrap;" width="90%"><%= html.html_escape(file.mtime) %></TD>
+ </TR>
+<% end %>
+</TABLE>
+
+<% if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("startstop")
+end %>