From 2e9893a02d83e1b0c93756ae16dd67e91ef5f2c3 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Sat, 28 Jun 2014 20:59:24 +0000 Subject: Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, use lowercase tags, remove styling, and use new htmlviewfunctions functions --- db-listtables-html.lsp | 64 ++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 47 insertions(+), 17 deletions(-) (limited to 'db-listtables-html.lsp') 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 %> + + + + + +<% end %> + <% htmlviewfunctions.displaycommandresults({"createdatabase"}, session) %> -

<%= html.html_escape(form.label) %>

-
-<% for i,table in ipairs(form.value) do %> -
  • - <% 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 %> + + + + + + +<% local table = cfe({ type="hidden" }) %> +<% for i,tab in ipairs(form.value) do %> + <% table.value = tab %> + + + + <% end %> -<% if #form.value == 0 and viewlibrary.check_permission("createdatabase") then %> -
    Create Database
    -
    "> -
    - - +
    ActionTable
    + <% if viewlibrary.check_permission("viewtable") then %> + <% htmlviewfunctions.displayitem(cfe({type="link", value={table=table}, label="", option="View", action="viewtable"}), page_info, -1) %> + <% end %> + <%= html.html_escape(tab) %>
    +<% elseif viewlibrary.check_permission("createdatabase") then %> + <% htmlviewfunctions.displayitem(cfe({type="form", value={}, label="Create Database", option="Create", action="createdatabase" }), page_info, 0) %> +<% else %> +

    No tables found

    <% end %> -
  • +<% htmlviewfunctions.displaysectionend(header_level) %> -- cgit v1.2.3