summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--health-modules-html.lsp6
-rw-r--r--health-network-html.lsp8
-rw-r--r--health-proc-html.lsp8
-rw-r--r--health-storage-html.lsp10
-rw-r--r--health-system-html.lsp12
-rw-r--r--hostname.menu3
-rw-r--r--password.menu2
-rw-r--r--syslog-status-html.lsp7
8 files changed, 19 insertions, 37 deletions
diff --git a/health-modules-html.lsp b/health-modules-html.lsp
index eef9655..a1b92ca 100644
--- a/health-modules-html.lsp
+++ b/health-modules-html.lsp
@@ -1,8 +1,6 @@
<? local view = ... ?>
-<h1>General health</h1>
+<h1>Modules</h1>
-<h2>Modules</h2>
-
-<h3>Installed modules</h3>
+<h2>Installed modules</h2>
<pre><?= view.modules.list ?></pre>
diff --git a/health-network-html.lsp b/health-network-html.lsp
index f04faaf..09760da 100644
--- a/health-network-html.lsp
+++ b/health-network-html.lsp
@@ -1,11 +1,9 @@
<? local view = ... ?>
-<h1>General health</h1>
+<h1>Network</h1>
-<h2>Network</h2>
-
-<h3>Interface status</h3>
+<h2>Interface status</h2>
<pre><?= view.network.interfaces ?></pre>
-<h3>Routes</h3>
+<h2>Routes</h2>
<pre><?= view.network.routes ?></pre>
diff --git a/health-proc-html.lsp b/health-proc-html.lsp
index 3387688..7d57ef5 100644
--- a/health-proc-html.lsp
+++ b/health-proc-html.lsp
@@ -1,11 +1,9 @@
<? local view = ... ?>
-<h1>General health</h1>
+<h1>Process information</h1>
-<h2>Process information</h2>
-
-<h3>Processor</h3>
+<h2>Processor</h2>
<pre><?= view.proc.processor ?></pre>
-<h3>Memory</h3>
+<h2>Memory</h2>
<pre><?= view.proc.memory ?></pre>
diff --git a/health-storage-html.lsp b/health-storage-html.lsp
index 15830c3..a95351a 100644
--- a/health-storage-html.lsp
+++ b/health-storage-html.lsp
@@ -1,10 +1,8 @@
<? local view = ... ?>
-<h1>General health</h1>
+<h1>Storage</h1>
-<h2>Storage</h2>
-
-<h3>Floppy capacity</h3>
+<h2>Floppy capacity</h2>
<pre><?= view.storage.floppycapacity.value ?></pre>
<? if (view.storage.floppycapacity.used) then ?>
@@ -20,7 +18,7 @@
</TABLE>
<? end ?>
-<h3>Disk capacity</h3>
+<h2>Disk capacity</h2>
<pre><?= view.storage.hdcapacity.value ?></pre>
<? if (view.storage.hdcapacity.used) then ?>
@@ -36,7 +34,7 @@
</TABLE>
<? end ?>
-<h3>Disk partitions</h3>
+<h2>Disk partitions</h2>
<pre><?= view.storage.partitions ?></pre>
<?
diff --git a/health-system-html.lsp b/health-system-html.lsp
index 7cc9287..a4174b2 100644
--- a/health-system-html.lsp
+++ b/health-system-html.lsp
@@ -1,19 +1,17 @@
<? local view = ... ?>
-<h1>General health</h1>
+<h1>System</h1>
-<h2>System</h2>
-
-<h3>Uptime</h3>
+<h2>Uptime</h2>
<pre><?= view.system.uptime ?></pre>
-<h3>Time/TimeZone</h3>
+<h2>Time/TimeZone</h2>
<pre><?= view.system.date ?></pre>
<pre><?= view.system.timezone ?></pre>
-<h3>Name</h3>
+<h2>Name</h2>
<pre><?= view.system.uname ?></pre>
-<h3>Memory</h3>
+<h2>Memory</h2>
<pre><?= view.system.memory.value ?></pre>
<TABLE STYLE="margin:0px;padding:0px;border:0px">
diff --git a/hostname.menu b/hostname.menu
deleted file mode 100644
index d40345c..0000000
--- a/hostname.menu
+++ /dev/null
@@ -1,3 +0,0 @@
-# Prefix and controller are already known at this point
-# Cat Group Tab Action
-System 10Hostname Define read
diff --git a/password.menu b/password.menu
deleted file mode 100644
index 427e2a0..0000000
--- a/password.menu
+++ /dev/null
@@ -1,2 +0,0 @@
-#CAT GROUP/DESC TAB ACTION
-System Password update update
diff --git a/syslog-status-html.lsp b/syslog-status-html.lsp
index 6cd46a4..f97cea8 100644
--- a/syslog-status-html.lsp
+++ b/syslog-status-html.lsp
@@ -2,16 +2,13 @@
<h1>SYSTEM INFO</h1>
-<h2>SYSTEM INFO</h2>
-
<dt>Program status</dt>
-<DD><? if (view.status.enabled) then io.write('Enabled') else io.write('Disabled') end ?>
-</DD>
+<DD><? if (view.status.enabled) then io.write('Enabled') else io.write('Disabled') end ?></DD>
<dt>Program version</dt>
<dd><?= view.status.version ?></dd>
-<H3>PROGRAM SPECIFIC OPTIONS</H3>
+<H2>PROGRAM SPECIFIC OPTIONS/INFORMATION</H2>
<? if (view.status.logfile) then ?>
<dt>Locally logging to</dt>
<dd><?= view.status.logfile ?></dd>