summaryrefslogtreecommitdiffstats
path: root/quagga-status-html.lsp
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2008-04-02 07:09:59 +0000
committerMika Havela <mika.havela@gmail.com>2008-04-02 07:09:59 +0000
commitc743fdd25b46f341b649ba3ae498e9fc97ad5f38 (patch)
tree418ae7ad9bc2b3e08293d78261785ab942b5ec1c /quagga-status-html.lsp
parentafbf9fc47c20d102f516261679b3653bd05fd9fc (diff)
downloadacf-quagga-c743fdd25b46f341b649ba3ae498e9fc97ad5f38.tar.bz2
acf-quagga-c743fdd25b46f341b649ba3ae498e9fc97ad5f38.tar.xz
Cleaning up the code. Some general status information works.
git-svn-id: svn://svn.alpinelinux.org/acf/quagga/trunk@875 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'quagga-status-html.lsp')
-rw-r--r--quagga-status-html.lsp41
1 files changed, 2 insertions, 39 deletions
diff --git a/quagga-status-html.lsp b/quagga-status-html.lsp
index 765de12..b8d58f9 100644
--- a/quagga-status-html.lsp
+++ b/quagga-status-html.lsp
@@ -38,49 +38,12 @@ informationform(myform,tags)
<DL>
<?
-local myform = form.status.show
+local myform = form.status.stats
io.write("\t<DT")
if (#myform.errtxt > 0) then io.write(" class='error'") end
io.write(">" .. myform.label .. "</DT>\n")
io.write("\t\t<DD>\n")
-for k,v in pairs(myform.option or {}) do
- io.write("\t\t\t<TABLE STYLE='margin-bottom:10px;'>")
- io.write("\n\t\t\t<TR><TD STYLE='font-weight:bold;'><IMG SRC='/static/tango/16x16/places/network-server.png' width='16' height='16' alt> " .. k .. "</TD><TD></TD></TR>\n")
- for k1,v1 in pairs(v) do
- io.write("\n\t\t\t<TR STYLE='padding-bottom:10px;'><TD WIDTH='150px' STYLE='font-weight:bold;padding-left:20px;'><IMG SRC='/static/tango/16x16/status/")
-
- if (v1) and (string.lower(v1['Type']['value']) == "incomplete") then
- io.write("network-error")
- elseif (v1) and (string.lower(v1['Type']['value']) == "negative") then
- io.write("network-offline")
- elseif (v1) and (string.lower(v1['Flags']['value']) == "up") then
- io.write("network-idle")
- elseif (v1) and (string.lower(v1['Flags']['value']) == "used up") then
- io.write("network-transmit-receive")
- elseif (v1) and (string.lower(v1['Flags']['value']) == "used up") then
- io.write("network-offline")
- else
- io.write("network-error")
- end
- io.write(".png' width='16' height='16' title='" .. (v1['Type']['descr'] or "") .. "'> " .. v1["Protocol-Address"]['value'] .. "</TD><TD STYLE='font-weight:bold;'></TD></TR>\n")
- for k2,v2 in pairs(v1) do
-
----[[
- if (k2) and not ((string.lower(k2) == "protocol-address") or
- (string.lower(k2) == "interface")) then
- io.write("<TR><TD STYLE='font-weight:bold;padding-left:40px;'>"..k2.."</TD><TD>"..v2['value'])
- if (v2['descr']) and (#v2['descr'] > 0) then
- io.write(" <I>(" .. (v2['descr'] or "") .. ")</I>")
- end
- io.write("</TD></TR>\n")
- end
---]]
- end
-
- end
-
- io.write("\t\t\t</TABLE>")
-end
+io.write("\t\t<PRE>"..myform.value.."</PRE>\n")
io.write("\t\t</DD>\n")
?>
</DL>