summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-12-10 15:14:47 +0000
committerTed Trask <ttrask01@yahoo.com>2009-12-10 15:14:47 +0000
commit94831ef683e1837a64d9099c05d784349977f59b (patch)
tree3b788e1c6e4c1183a800d18955ea23f38a3578f2
parent02edfdc22bcc86b1e68b9a11364ca91d448b0c1a (diff)
downloadacf-heimdal-94831ef683e1837a64d9099c05d784349977f59b.tar.bz2
acf-heimdal-94831ef683e1837a64d9099c05d784349977f59b.tar.xz
UI fix, bumped to 0.1.1v0.1.1
-rw-r--r--Makefile2
-rw-r--r--heimdal-klist-html.lsp5
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 13f1080..fd9d2d4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
APP_NAME=heimdal
PACKAGE=acf-$(APP_NAME)
-VERSION=0.1.0
+VERSION=0.1.1
APP_DIST=\
heimdal* \
diff --git a/heimdal-klist-html.lsp b/heimdal-klist-html.lsp
index c6997ff..67175b0 100644
--- a/heimdal-klist-html.lsp
+++ b/heimdal-klist-html.lsp
@@ -5,19 +5,20 @@
<% displaycommandresults({"kinit"}, session, true) %>
<H1><%= data.label %></H1>
+<DL>
<pre>
<%= html.html_escape(data.value) %>
</pre>
<% if viewlibrary and viewlibrary.dispatch_component and session.permissions[page_info.controller].kdestroy then %>
-<DL>
<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/kdestroy") %>">
<DT>Destroy Tickets</DT>
<DD><input class="submit" type="submit" value="Destroy"></DD>
</form>
-</DL>
<% end %>
+</DL>
+
<% if viewlibrary and viewlibrary.dispatch_component and session.permissions[page_info.controller].kinit then
viewlibrary.dispatch_component("kinit")
end %>