diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:16:54 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:16:54 +0000 |
commit | db50c4a219e0199bebd8a9fd70a87a4d3c6a123e (patch) | |
tree | 30a7dd126382030425767f00948ce3f19e3c8be4 /modules-edit-html.lsp | |
parent | 0abf04fdfd4e0c26c6e43007d188d2b6c75c696e (diff) | |
download | acf-alpine-baselayout-db50c4a219e0199bebd8a9fd70a87a4d3c6a123e.tar.bz2 acf-alpine-baselayout-db50c4a219e0199bebd8a9fd70a87a4d3c6a123e.tar.xz |
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'modules-edit-html.lsp')
-rw-r--r-- | modules-edit-html.lsp | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/modules-edit-html.lsp b/modules-edit-html.lsp index 2677ca0..84ad35b 100644 --- a/modules-edit-html.lsp +++ b/modules-edit-html.lsp @@ -5,21 +5,19 @@ <% htmlviewfunctions.displaycommandresults({"reload"}, session) %> <% if form.type == "form" then %> -<H1>Configuration</H1> -<H2>Expert Configuration</H2> +<h1>Configuration</h1> +<h2>Expert Configuration</h2> <% else %> -<H1>View File</H1> +<h1>View File</h1> <% end %> -<H3>File Details</H3> -<DL> +<h3>File Details</h3> <% htmlviewfunctions.displayitem(form.value.filename) htmlviewfunctions.displayitem(form.value.filesize) htmlviewfunctions.displayitem(form.value.mtime) %> -</DL> -<H3>File Content</H3> +<h3>File Content</h3> <% if form.type == "form" then %> <% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %> <% htmlviewfunctions.displayformstart(form) %> @@ -28,16 +26,14 @@ htmlviewfunctions.displayitem(form.value.mtime) <textarea name="filecontent"> <%= html.html_escape(form.value.filecontent.value) %> </textarea> -<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<BR>") %></P><% end %> -<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<BR>") %></P><% end %> +<% if form.value.filecontent.errtxt then %><p class='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<br/>") %></p><% end %> +<% if form.value.filecontent.descr then %><p class='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<br/>") %></p><% end %> <% if form.type == "form" then %> <% htmlviewfunctions.displayformend(form) %> <% end %> </form> -<H1>Reload Modules</H1> -<DL> -<DT>Reload Modules</DT> -<DD><form action="<%= page_info.script .. page_info.prefix .. page_info.controller .. "/reload?redir=edit" %>"><input class="submit" type="submit" name="submit" value="Reload"></form></DD> -</DL> +<h1>Reload Modules</h1> +<div class='item'><p class='left'>Reload Modules</p> +<div class='right'><form action="<%= page_info.script .. page_info.prefix .. page_info.controller .. "/reload?redir=edit" %>"><input class="submit" type="submit" name="submit" value="Reload"></form></div></div><!-- end .item --> |