diff options
-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") |