summaryrefslogtreecommitdiffstats
path: root/weblog-status-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-02-03 21:59:49 +0000
committerTed Trask <ttrask01@yahoo.com>2014-02-03 21:59:49 +0000
commit7dad3b2d66bfdc5d653961e8b4f87870106aaeee (patch)
tree59ffa16df79d577c39d7ecfd0518bc5fa5c566f2 /weblog-status-html.lsp
parent6d0829a8ac150970a16122a0f4c555960a296c6e (diff)
downloadacf-weblog-7dad3b2d66bfdc5d653961e8b4f87870106aaeee.tar.bz2
acf-weblog-7dad3b2d66bfdc5d653961e8b4f87870106aaeee.tar.xz
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'weblog-status-html.lsp')
-rw-r--r--weblog-status-html.lsp14
1 files changed, 7 insertions, 7 deletions
diff --git a/weblog-status-html.lsp b/weblog-status-html.lsp
index 6b05dfc..2eb2fb5 100644
--- a/weblog-status-html.lsp
+++ b/weblog-status-html.lsp
@@ -4,8 +4,7 @@ htmlviewfunctions = require("htmlviewfunctions")
<% htmlviewfunctions.displaycommandresults({"createdatabase"}, session, true) %>
-<H1>Weblog Database Status</H1>
-<DL>
+<h1>Weblog Database Status</h1>
<% local status
if viewlibrary and viewlibrary.dispatch_component then
if viewlibrary.check_permission("postgresql/postgresql/status") then
@@ -13,7 +12,8 @@ if viewlibrary and viewlibrary.dispatch_component then
end
end %>
-<DT>Database status</DT><DD>
+<div class='item'><p class='left'>Database status</p>
+<div class='right'><p>
<% if status then %>
<% if status.value.status.errtxt then
print(status.value.status.errtxt)
@@ -23,16 +23,16 @@ end %>
<% else %>
Unknown
<% end %>
-</DD>
+</p></div></div><!-- end .item -->
-<DT>Weblog Database</DT><DD>
+<div class='item'><p class='left'>Weblog Database</p>
+<div class='right'><p>
<% if data.value then %>
Present
<% else %>
Missing
<% end %>
-</DD>
-</DL>
+</p></div></div><!-- end .item -->
<% if not data.value and viewlibrary and viewlibrary.dispatch_component then
viewlibrary.dispatch_component("createdatabase")