diff options
author | Ted Trask <ttrask01@yahoo.com> | 2009-12-10 15:02:19 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2009-12-10 15:02:19 +0000 |
commit | 48d88fd78420e0eb7aa42735d4567db600f89c58 (patch) | |
tree | c1424c01fc437ea6c384b29a9c14e6b7827ef637 | |
parent | e5c610f887196986183d11cda9ced7735c355a37 (diff) | |
download | acf-dhcp-48d88fd78420e0eb7aa42735d4567db600f89c58.tar.bz2 acf-dhcp-48d88fd78420e0eb7aa42735d4567db600f89c58.tar.xz |
UI fix, bumped to 0.4.3v0.4.3
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | dhcp-listfiles-html.lsp | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ APP_NAME=dhcp PACKAGE=acf-$(APP_NAME) -VERSION=0.4.2 +VERSION=0.4.3 APP_DIST=\ dhcp* \ diff --git a/dhcp-listfiles-html.lsp b/dhcp-listfiles-html.lsp index ef5687f..7446520 100644 --- a/dhcp-listfiles-html.lsp +++ b/dhcp-listfiles-html.lsp @@ -9,7 +9,7 @@ require("viewfunctions") end %> <h1><%= html.html_escape(data.label) %></h1> -<TABLE> +<DL><TABLE> <TR style="background:#eee;font-weight:bold;"> <TD style="padding-right:20px;white-space:nowrap;text-align:left;" class="header">File</TD> <TD style="padding-right:20px;white-space:nowrap;text-align:left;" class="header">Size</TD> @@ -25,7 +25,7 @@ end %> <TD style="white-space:nowrap;" width="90%"><%= html.html_escape(file.mtime) %></TD> </TR> <% end %> -</TABLE> +</TABLE></DL> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("startstop") |