summaryrefslogtreecommitdiffstats
path: root/shorewall-listfiles-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'shorewall-listfiles-html.lsp')
-rw-r--r--shorewall-listfiles-html.lsp16
1 files changed, 15 insertions, 1 deletions
diff --git a/shorewall-listfiles-html.lsp b/shorewall-listfiles-html.lsp
index 21422ff..ba21043 100644
--- a/shorewall-listfiles-html.lsp
+++ b/shorewall-listfiles-html.lsp
@@ -3,6 +3,20 @@ htmlviewfunctions = require("htmlviewfunctions")
html = require("acf.html")
%>
+<%
+function convertsize(size)
+ if string.find(size, "k$") then
+ return tonumber(string.match(size, "[%d.]*")) * 1024.0
+ elseif string.find(size, "M$") then
+ return tonumber(string.match(size, "[%d.]*")) * 1024.0 * 1024.0
+ elseif string.find(size, "G$") then
+ return tonumber(string.match(size, "[%d.]*")) + 1024.0 * 1024.0 * 1024.0
+ else
+ return tonumber(string.match(size, "[%d.]*"))
+ end
+end
+%>
+
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery-latest.js"><\/script>');
@@ -38,7 +52,7 @@ end %>
<% for i,file in ipairs(data.value) do %>
<tr>
<td><%= html.link{value = "edit?filename=" .. file.filename.."&redir="..page_info.orig_action, label=file.filename} %></td>
- <td><%= html.html_escape(file.filesize) %></td>
+ <td><span style="display:none"><%= convertsize(file.filesize) %>b</span><%= html.html_escape(file.filesize) %></td>
<td><%= html.html_escape(file.mtime) %></td>
</tr>
<% end %>