summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-12-10 15:44:11 +0000
committerTed Trask <ttrask01@yahoo.com>2009-12-10 15:44:11 +0000
commit36f1b5dad3c1968de9a6b010ce15fb346cc553ba (patch)
tree6fd1a44c30f2eb4f5cee01bc7175e54934b139ac
parentb0db1fdc440fd8b6c166af269d6831ebce3cb8d2 (diff)
downloadacf-quagga-36f1b5dad3c1968de9a6b010ce15fb346cc553ba.tar.bz2
acf-quagga-36f1b5dad3c1968de9a6b010ce15fb346cc553ba.tar.xz
UI fix, bumped to 0.4.1v0.4.1
-rw-r--r--Makefile2
-rw-r--r--bgp-details-html.lsp10
-rw-r--r--zebra-details-html.lsp10
3 files changed, 5 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index da4b3ce..ada4996 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
APP_NAME=quagga
PACKAGE=acf-$(APP_NAME)
-VERSION=0.4.0
+VERSION=0.4.1
APP_DIST=\
bgp* \
diff --git a/bgp-details-html.lsp b/bgp-details-html.lsp
index c07b0d0..8f3283b 100644
--- a/bgp-details-html.lsp
+++ b/bgp-details-html.lsp
@@ -1,15 +1,9 @@
<% local data = ...
require("viewfunctions")
---[[ DEBUG INFORMATION
-io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
-io.write(html.cfe_unpack(data))
-io.write("</span>")
---]]
-
%>
<H2>BGP routes</H2>
-<PRE>
+<DL><PRE>
<%= html.html_escape(tostring(data.value.showipbgp.value)) %>
-</PRE>
+</PRE></DL>
diff --git a/zebra-details-html.lsp b/zebra-details-html.lsp
index 4dc4331..94b5655 100644
--- a/zebra-details-html.lsp
+++ b/zebra-details-html.lsp
@@ -1,15 +1,9 @@
<% local data = ...
require("viewfunctions")
---[[ DEBUG INFORMATION
-io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
-io.write(html.cfe_unpack(data))
-io.write("</span>")
---]]
-
%>
<H2>Zebra routes</H2>
-<PRE>
+<DL><PRE>
<%= html.html_escape(tostring(data.value.showip.value)) %>
-</PRE>
+</PRE></DL>