summaryrefslogtreecommitdiffstats
path: root/weblog-viewactivitylog-html.lsp
blob: f7fb0ba7ba7fcfd2dc5441d8e260efccbc3beca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<% local data, viewlibrary, page_info, session = ... %>
<% htmlviewfunctions = require("htmlviewfunctions") %>
<% html = require("acf.html") %>

<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>');
	}
</script>

<script type="text/javascript">
	if (typeof $.tablesorter == 'undefined') {
		document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery.tablesorter.js"><\/script>');
	}
</script>

<script type="text/javascript">
	$(document).ready(function() {
		$("#activity").tablesorter({headers: {0:{sorter: 'shortDate'}}, widgets: ['zebra']});
	});
</script>

<% local subdata, pagedata = htmlviewfunctions.paginate(data.value, page_info.clientdata, 100) %>

<h1><%= html.html_escape(data.label) %></h1>
<% htmlviewfunctions.displaypagination(pagedata, page_info) %>
<table id="activity" class="tablesorter"><thead>
	<tr>
		<th>Date</th>
		<th>Message</th>
	</tr>
</thead><tbody>
<% for i,log in ipairs(subdata) do %>
	<tr>
		<td><%= html.html_escape(string.gsub(log.logdatetime, "%..*", "")) %></td>
		<td><%= html.html_escape(log.msgtext) %></td>
	</tr>
<% end %>
</tbody></table>

<% if data.errtxt then %>
<p class='error'><%= html.html_escape(data.errtxt) %></p>
<% end %>
<% if #data.value == 0 then %>
<p>No history found</p>
<% end %>