diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:44:14 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-02-03 21:44:14 +0000 |
commit | 6354a6d5d2a9f645bca8901edb116d6103b81d01 (patch) | |
tree | 03f274c9e2f7882970868580d152f14ccf358ae8 /openssl-checkenvironment-html.lsp | |
parent | e08be5e9b9423e2fa10b2234ef2b1a93a6229ea0 (diff) | |
download | acf-openssl-6354a6d5d2a9f645bca8901edb116d6103b81d01.tar.bz2 acf-openssl-6354a6d5d2a9f645bca8901edb116d6103b81d01.tar.xz |
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'openssl-checkenvironment-html.lsp')
-rw-r--r-- | openssl-checkenvironment-html.lsp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/openssl-checkenvironment-html.lsp b/openssl-checkenvironment-html.lsp index 2e4f9c4..3475bbc 100644 --- a/openssl-checkenvironment-html.lsp +++ b/openssl-checkenvironment-html.lsp @@ -2,16 +2,14 @@ <% htmlviewfunctions = require("htmlviewfunctions") %> <% html = require("acf.html") %> -<H1><%= html.html_escape(form.label) %></H1> -<% if form.value.status.errtxt then +<h1><%= html.html_escape(form.label) %></h1> +<% +if form.value.status.errtxt then form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action htmlviewfunctions.displayformstart(form) -else %> - <DL> -<% end %> -<% htmlviewfunctions.displayitem(form.value.status) %> -<% if form.value.status.errtxt then +end +htmlviewfunctions.displayitem(form.value.status) +if form.value.status.errtxt then htmlviewfunctions.displayformend(form) -else %> - </DL> -<% end %> +end +%> |