summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shorewall-check-html.lsp4
-rw-r--r--shorewall-edit-html.lsp12
-rw-r--r--shorewall-expert-html.lsp4
-rw-r--r--shorewall-logfile-html.lsp6
-rw-r--r--shorewall-status-html.lsp6
5 files changed, 32 insertions, 0 deletions
diff --git a/shorewall-check-html.lsp b/shorewall-check-html.lsp
index e470d44..75f019b 100644
--- a/shorewall-check-html.lsp
+++ b/shorewall-check-html.lsp
@@ -2,11 +2,15 @@
<h1>SYSTEM INFO</h1>
+<DL>
<dt>Program status</dt>
<DD><?= view.status.status ?></DD>
+</DL>
+<DL>
<dt>Program version</dt>
<dd><?= view.status.version ?></dd>
+</DL>
<h1>CONFIGURATION</h1>
diff --git a/shorewall-edit-html.lsp b/shorewall-edit-html.lsp
index c3384bb..3e7a472 100644
--- a/shorewall-edit-html.lsp
+++ b/shorewall-edit-html.lsp
@@ -2,11 +2,15 @@
<h1>SYSTEM INFO</h1>
+<DL>
<dt>Program status</dt>
<DD><?= view.status.status ?></DD>
+</DL>
+<DL>
<dt>Program version</dt>
<dd><?= view.status.version ?></dd>
+</DL>
<h1>CONFIGURATION</h1>
@@ -14,14 +18,20 @@
<h3>File details</h3>
+<DL>
<dt>File name</dt>
<dd><?= view.file.details.path ?></dd>
+</DL>
+<DL>
<dt>File size</dt>
<dd><?= view.file.details.size ?></dd>
+</DL>
+<DL>
<dt>Last modified</dt>
<dd><?= view.file.details.mtime ?></dd>
+</DL>
<h3>File content</h3>
@@ -30,8 +40,10 @@
<textarea name="modifications"><?= view.file.content ?></textarea>
<H2>Save and apply above settings</H2>
+<DL>
<DT>Apply settings</DT>
<DD><input class="submit" type="submit" value="Apply"/></DD>
+</DL>
</form>
<H1>MANAGEMENT</H1>
diff --git a/shorewall-expert-html.lsp b/shorewall-expert-html.lsp
index 1b638ca..2e2c1da 100644
--- a/shorewall-expert-html.lsp
+++ b/shorewall-expert-html.lsp
@@ -1,11 +1,15 @@
<? local view = ... ?>
<h1>SYSTEM INFO</h1>
+<DL>
<dt>Program status</dt>
<DD><?= view.status.status ?></DD>
+</DL>
+<DL>
<dt>Program version</dt>
<dd><?= view.status.version ?></dd>
+</DL>
<h1>CONFIGURATION</h1>
diff --git a/shorewall-logfile-html.lsp b/shorewall-logfile-html.lsp
index 709fdba..f509a1d 100644
--- a/shorewall-logfile-html.lsp
+++ b/shorewall-logfile-html.lsp
@@ -2,18 +2,24 @@
<h1>SYSTEM INFO</h1>
+<DL>
<dt>Program status</dt>
<DD><?= view.status.status ?></DD>
+</DL>
+<DL>
<dt>Program version</dt>
<dd><?= view.status.version ?></dd>
+</DL>
<h1>LOGFILE</h1>
<h2>Details</h2>
+<DL>
<dt>Logfile</dt>
<dd><?= view.logfile.cmd ?></dd>
+</DL>
<h2>Content</h2>
<textarea name=""><? io.write(view.logfile.value) ?></textarea>
diff --git a/shorewall-status-html.lsp b/shorewall-status-html.lsp
index d4ba1f6..12b2a98 100644
--- a/shorewall-status-html.lsp
+++ b/shorewall-status-html.lsp
@@ -2,15 +2,21 @@
<h1>SYSTEM INFO</h1>
+<DL>
<dt>Program status</dt>
<DD><?= view.status.status ?></DD>
+</DL>
+<DL>
<dt>Program version</dt>
<dd><?= view.status.version ?></dd>
+</DL>
<H2>PROGRAM SPECIFIC OPTIONS/INFORMATION</H2>
+<DL>
<dt>Program reports</dt>
<dd><?= view.status.state ?></dd>
+</DL>
<?
--[[ DEBUG INFORMATION