summaryrefslogtreecommitdiffstats
path: root/lbu-listchanges-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'lbu-listchanges-html.lsp')
-rw-r--r--lbu-listchanges-html.lsp24
1 files changed, 12 insertions, 12 deletions
diff --git a/lbu-listchanges-html.lsp b/lbu-listchanges-html.lsp
index 71d9ea7..84c94ae 100644
--- a/lbu-listchanges-html.lsp
+++ b/lbu-listchanges-html.lsp
@@ -13,19 +13,19 @@ html = require("acf.html")
%>
<% if viewlibrary.check_permission("getpackage") then %>
-<H1>Download Overlay</H1>
-<DL>
- <DT>Generate and download overlay</DT>
- <DD><form action="<%= html.html_escape(page_info.script .. page_info.prefix) %>lbu/getpackage" method="POST">
+<h1>Download Overlay</h1>
+ <div class='item'><p class='left'>Generate and download overlay</p>
+ <div class='right'>
+ <form action="<%= html.html_escape(page_info.script .. page_info.prefix) %>lbu/getpackage" method="post">
<input type="hidden" name="viewtype" value="stream">
- <input class="submit" type="submit" name="submit" value="Download"></form></DD>
-</DL>
+ <input class="submit" type="submit" name="submit" value="Download"></form>
+ </div></div><!-- end .item -->
<% end %>
-<H1>Changes Since Last Commit</H1>
-<DL>
- <dt>Files changed since last commit</dt>
- <dd><pre><%
+<h1>Changes Since Last Commit</h1>
+ <div class='item'><p class='left'>Files changed since last commit</p>
+ <div class='right'>
+ <pre><%
if (#view.value == 0) then
io.write("None")
else
@@ -33,5 +33,5 @@ html = require("acf.html")
io.write((html.html_escape(file.status .. "\t" .. file.name .. "\n")))
end
end
- %></pre></DD>
-</DL>
+ %></pre>
+ </div></div><!-- end .item -->