summaryrefslogtreecommitdiffstats
path: root/heimdal-klist-html.lsp
blob: b4a13ed2dab1efb7634583a834879338825c0ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<% local data, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
<% html = require("acf.html") %>

<% htmlviewfunctions.displaycommandresults({"kdestroy"}, session) %>
<% htmlviewfunctions.displaycommandresults({"kinit"}, session, true) %>

<H1><%= data.label %></H1>
<DL>
<pre>
<%= html.html_escape(data.value) %>
</pre>

<% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("kdestroy") then
	viewlibrary.dispatch_component("kdestroy")
end %>

</DL>

<% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("kinit") then
	viewlibrary.dispatch_component("kinit")
end %>