summaryrefslogtreecommitdiffstats
path: root/lib/db-listtables-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-10-28 19:03:59 +0000
committerTed Trask <ttrask01@yahoo.com>2014-10-28 19:03:59 +0000
commit282d068aced3f88956af4182a353f8ea150caa2b (patch)
tree38d80a55c555482d65f19e9fb50e7a2b7c87e5b9 /lib/db-listtables-html.lsp
parentb9926ecbe8279f60d7dfe7648c7c0851cb0aaabc (diff)
downloadacf-db-282d068aced3f88956af4182a353f8ea150caa2b.tar.bz2
acf-db-282d068aced3f88956af4182a353f8ea150caa2b.tar.xz
Move the lib files into a subdirectory in preparation for creating a generic controller/model
Diffstat (limited to 'lib/db-listtables-html.lsp')
-rw-r--r--lib/db-listtables-html.lsp66
1 files changed, 66 insertions, 0 deletions
diff --git a/lib/db-listtables-html.lsp b/lib/db-listtables-html.lsp
new file mode 100644
index 0000000..f0db6b7
--- /dev/null
+++ b/lib/db-listtables-html.lsp
@@ -0,0 +1,66 @@
+<% local form, viewlibrary, page_info, session = ... %>
+<% htmlviewfunctions = require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
+
+<% if form.value.tables and #form.value.tables.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) %>
+
+<% local header_level = htmlviewfunctions.displaysectionstart(form, page_info) %>
+<% if form.value.connection and next(form.value.connection.value) ~= nil then
+ htmlviewfunctions.displayformstart(form, page_info)
+ htmlviewfunctions.displayitem(form.value.connection, page_info, htmlviewfunctions.incrementheader(header_level), "connection")
+ form.option = "Update"
+ htmlviewfunctions.displayformend(form, htmlviewfunctions.incrementheader(header_level))
+end %>
+<% if form.value.tables and #form.value.tables.value>0 then %>
+<table id="listtables" class="tablesorter"><thead>
+ <tr>
+ <th>Action</th>
+ <th>Table</th>
+ </tr>
+</thead><tbody>
+<% -- We will reuse the form connection structure to pass key values to viewtable
+local formvalues = {}
+if form.value.connection then
+ formvalues.connection = form.value.connection
+ for n,v in pairs(form.value.connection.value) do v.type="hidden" end
+end
+formvalues.table = cfe({ type="hidden" })
+%>
+<% for i,tab in ipairs(form.value.tables.value) do %>
+ <% formvalues.table.value = tab %>
+ <tr>
+ <td>
+ <% if viewlibrary.check_permission("viewtable") then %>
+ <% htmlviewfunctions.displayitem(cfe({type="link", value=formvalues, label="", option="View", action="viewtable"}), page_info, -1) %>
+ <% end %>
+ </td>
+ <td><%= html.html_escape(tab) %></td>
+ </tr>
+<% end %>
+</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 %>
+<% htmlviewfunctions.displaysectionend(header_level) %>