Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ACF
acf-weblog
Commits
1c82ae0a
Commit
1c82ae0a
authored
Nov 19, 2013
by
Ted Trask
Browse files
Modify viewusagestats to use tablesorter
parent
636c0e5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
weblog-viewusagestats-html.lsp
View file @
1c82ae0a
...
...
@@ -2,19 +2,39 @@
<% 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">
$(function(){
$("#usage").tablesorter({headers: {0:{sorter: false}, 1:{sorter: 'text'}, 2:{sorter: 'digit'}, 3:{sorter: 'digit'}}, widgets: ['zebra']});
});
</script>
<% local subdata, pagedata = htmlviewfunctions.paginate(data.value, page_info.clientdata, 100) %>
<H1><%= html.html_escape(data.label) %></H1>
<DL>
<% htmlviewfunctions.displaypagination(pagedata, page_info) %>
<TABLE>
<TR style="background:#eee;font-weight:bold;">
<TD style="padding-right:20px;white-space:nowrap;" class="header">Date</TD>
<TD style="padding-right:20px;white-space:nowrap;" class="header">Source</TD>
<TD style="padding-right:20px;white-space:nowrap;" class="header">Requests</TD>
<TD style="white-space:nowrap;" WIDTH="90%" class="header">Blocks</TD>
<TABLE id="usage" class="tablesorter">
<THEAD>
<TR>
<TH>Date</TH>
<TH>Source</TH>
<TH>Requests</TH>
<TH>Blocks</TH>
</TR>
</THEAD>
<TBODY>
<% for i,stat in ipairs(subdata) do %>
<TR>
<TD><%= html.html_escape(stat.date) %></TD>
...
...
@@ -23,6 +43,7 @@
<TD><%= html.html_escape(stat.numblock) %></TD>
</TR>
<% end %>
</TBODY>
</TABLE>
<% if data.errtxt then %>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment