diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-06-28 20:59:24 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-06-28 20:59:24 +0000 |
commit | 2e9893a02d83e1b0c93756ae16dd67e91ef5f2c3 (patch) | |
tree | b923ebb184e01971e87e8aef4ee5fb81447751ea /db-listtables-html.lsp | |
parent | 57f6d90ad110cff20b54506105a36241f69b25b9 (diff) | |
download | acf-db-2e9893a02d83e1b0c93756ae16dd67e91ef5f2c3.tar.bz2 acf-db-2e9893a02d83e1b0c93756ae16dd67e91ef5f2c3.tar.xz |
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, use lowercase tags, remove styling, and use new htmlviewfunctions functions
Diffstat (limited to 'db-listtables-html.lsp')
-rw-r--r-- | db-listtables-html.lsp | 64 |
1 files changed, 47 insertions, 17 deletions
diff --git a/db-listtables-html.lsp b/db-listtables-html.lsp index fec3ac4..23ecfc4 100644 --- a/db-listtables-html.lsp +++ b/db-listtables-html.lsp @@ -1,24 +1,54 @@ <% local form, viewlibrary, page_info, session = ... %> -<% require("htmlviewfunctions") %> +<% htmlviewfunctions = require("htmlviewfunctions") %> <% html = require("acf.html") %> +<% if #form.value>0 then %> +<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() { + $("#listtables").tablesorter({headers: {0:{sorter: false}}, widgets: ['zebra']}); + }); +</script> +<% end %> + <% htmlviewfunctions.displaycommandresults({"createdatabase"}, session) %> -<H1><%= html.html_escape(form.label) %></H1> -<DL> -<% for i,table in ipairs(form.value) do %> - <li> - <% if viewlibrary.check_permission("viewtable") then %> - <%= html.link{value = "viewtable?table=" .. table, label=table} %> - <% else %> - <%= html.html_escape(table) %> - <% end %> +<% local header_level = htmlviewfunctions.displaysectionstart(form, page_info) %> +<% htmlviewfunctions.displayinfo(form) %> +<% if #form.value>0 then %> +<table id="listtables" class="tablesorter"><thead> + <tr> + <th>Action</th> + <th>Table</th> + </tr> +</thead><tbody> +<% local table = cfe({ type="hidden" }) %> +<% for i,tab in ipairs(form.value) do %> + <% table.value = tab %> + <tr> + <td> + <% if viewlibrary.check_permission("viewtable") then %> + <% htmlviewfunctions.displayitem(cfe({type="link", value={table=table}, label="", option="View", action="viewtable"}), page_info, -1) %> + <% end %> + </td> + <td><%= html.html_escape(tab) %></td> + </tr> <% end %> -<% if #form.value == 0 and viewlibrary.check_permission("createdatabase") then %> -<DT>Create Database</DT><DD> -<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/createdatabase") %>"> -<input class="submit" type="submit" name="submit" value="Create"></DD> -</form> -</DD> +</tbody></table> +<% elseif viewlibrary.check_permission("createdatabase") then %> + <% htmlviewfunctions.displayitem(cfe({type="form", value={}, label="Create Database", option="Create", action="createdatabase" }), page_info, 0) %> +<% else %> +<p>No tables found</p> <% end %> -</DL> +<% htmlviewfunctions.displaysectionend(header_level) %> |