summaryrefslogtreecommitdiffstats
path: root/health-system-html.lsp
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2009-10-07 11:48:23 +0200
committerMika Havela <mika.havela@gmail.com>2009-10-07 11:48:23 +0200
commitb351af35c3d25ef633175fdb92fcba2d30fdb63f (patch)
treee47d1cd94484a09062e4a6ff3f5d13e259b1c82a /health-system-html.lsp
parent723b18ea710e2e39fb6865b44727d6a3a62e513c (diff)
downloadacf-alpine-baselayout-b351af35c3d25ef633175fdb92fcba2d30fdb63f.tar.bz2
acf-alpine-baselayout-b351af35c3d25ef633175fdb92fcba2d30fdb63f.tar.xz
Graphical fix. Adding <DL> to the views to fix skin issues.
Diffstat (limited to 'health-system-html.lsp')
-rw-r--r--health-system-html.lsp9
1 files changed, 8 insertions, 1 deletions
diff --git a/health-system-html.lsp b/health-system-html.lsp
index 9fcea6f..f2e4d6c 100644
--- a/health-system-html.lsp
+++ b/health-system-html.lsp
@@ -3,17 +3,24 @@
<h1>System</h1>
<h2>Versions and names</h2>
+<DL>
<pre><%= html.html_escape(view.value.version.value) %></pre>
<pre><%= html.html_escape(view.value.uname.value) %></pre>
+</DL>
<h2>Uptime</h2>
+<DL>
<pre><%= html.html_escape(view.value.uptime.value) %></pre>
+</DL>
<h2>Time/TimeZone</h2>
+<DL>
<pre><%= html.html_escape(view.value.date.value) %></pre>
<pre><%= html.html_escape(view.value.timezone.value) %></pre>
+</DL>
<h2>Memory</h2>
+<DL>
<pre><%= html.html_escape(view.value.memory.value) %></pre>
<TABLE STYLE="margin:0px;padding:0px;border:0px">
@@ -26,4 +33,4 @@
<TD WIDTH="100px"><B>Total:</B></TD><TD STYLE="background:red;;border:2px solid black;" WIDTH="20px"></TD><TD WIDTH="70px"><B>=Used</B></TD><TD STYLE="background:#0c0;border:2px solid black;" WIDTH="20px"></TD><TD><B>=Free</B></TD>
</TR>
</TABLE>
-
+</DL>