summaryrefslogtreecommitdiffstats
path: root/samba-listfiles-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-04-17 00:29:27 +0000
committerTed Trask <ttrask01@yahoo.com>2014-04-17 00:29:27 +0000
commitea930ec9b8600c9ba8639683a503654a442efdde (patch)
treebf02e2a07f96eb864b4d1f66f124c0fe18ca9f79 /samba-listfiles-html.lsp
parent7631eabf0767756fe21732695f022dd0d296691d (diff)
downloadacf-samba-ea930ec9b8600c9ba8639683a503654a442efdde.tar.bz2
acf-samba-ea930ec9b8600c9ba8639683a503654a442efdde.tar.xz
Changes to use new htmlviewfunctions functions
Diffstat (limited to 'samba-listfiles-html.lsp')
-rw-r--r--samba-listfiles-html.lsp14
1 files changed, 9 insertions, 5 deletions
diff --git a/samba-listfiles-html.lsp b/samba-listfiles-html.lsp
index 94f0fce..2292409 100644
--- a/samba-listfiles-html.lsp
+++ b/samba-listfiles-html.lsp
@@ -31,7 +31,7 @@ end
<script type="text/javascript">
$(document).ready(function() {
- $("#list").tablesorter({widgets: ['zebra']});
+ $("#list").tablesorter({headers: {0:{sorter: false}}, widgets: ['zebra']});
});
</script>
@@ -41,21 +41,25 @@ end
viewlibrary.dispatch_component("status")
end %>
-<h1><%= html.html_escape(data.label) %></h1>
+<% local header_level = htmlviewfunctions.displaysectionstart(data, page_info) %>
<table id="list" class="tablesorter"><thead>
<tr>
+ <th>Action</th>
<th>File</th>
<th>Size</th>
<th>Last Modified</th>
</tr>
</thead><tbody>
+<% local filename = cfe({ type="hidden", value="" }) %>
+<% local redir = cfe({ type="hidden", value=page_info.orig_action }) %>
<% for i,file in ipairs(data.value) do %>
+ <% filename.value = file.filename %>
<tr>
- <td>
- <%= html.link{value = "expert?filename=" .. file.filename.."&redir="..page_info.orig_action, label=file.filename} %>
- </td>
+ <td><% htmlviewfunctions.displayitem(cfe({type="link", value={filename=filename, redir=redir}, label="", option="Edit", action="expert"}), page_info, -1) %></td>
+ <td><%= html.html_escape(file.filename) %></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 %>
</tbody></table>
+<% htmlviewfunctions.displaysectionend(header_level) %>