summaryrefslogtreecommitdiffstats
path: root/chrony-details-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-02-03 21:22:39 +0000
committerTed Trask <ttrask01@yahoo.com>2014-02-03 21:22:39 +0000
commitc6280065388fc882a0dd6526c8a66be19a3bd27a (patch)
treea4b38453be04e8eace995d61eb836453134aeeca /chrony-details-html.lsp
parent2346e801e26adccfaf61dbe7cabf20201a190055 (diff)
downloadacf-chrony-c6280065388fc882a0dd6526c8a66be19a3bd27a.tar.bz2
acf-chrony-c6280065388fc882a0dd6526c8a66be19a3bd27a.tar.xz
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'chrony-details-html.lsp')
-rw-r--r--chrony-details-html.lsp12
1 files changed, 5 insertions, 7 deletions
diff --git a/chrony-details-html.lsp b/chrony-details-html.lsp
index 29d0e05..6db3274 100644
--- a/chrony-details-html.lsp
+++ b/chrony-details-html.lsp
@@ -5,12 +5,10 @@ html = require("acf.html")
<% viewlibrary.dispatch_component("status") %>
-<H2><%= html.html_escape(data.label) %></H2>
-<DL>
+<h2><%= html.html_escape(data.label) %></h2>
<% htmlviewfunctions.displayitem(data.value.time) %>
<% htmlviewfunctions.displayitem(data.value.tracking) %>
-</DL>
-<H3>Sources</H3>
-<DL><pre><%= html.html_escape(data.value.sources.value) %></pre></DL>
-<H3>Source Stats</H3>
-<DL><pre><%= html.html_escape(data.value.sourcestats.value) %></pre></DL>
+<h3>Sources</h3>
+<pre><%= html.html_escape(data.value.sources.value) %></pre>
+<h3>Source Stats</h3>
+<pre><%= html.html_escape(data.value.sourcestats.value) %></pre>