summaryrefslogtreecommitdiffstats
path: root/quagga-status-html.lsp
diff options
context:
space:
mode:
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>