summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-02 15:10:44 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-02 15:10:44 +0000
commit7f57eacee84e04ea3b39ffb5e33ebcdaa2ef48ab (patch)
tree330412a1d0640eb380aae3539ca91a8886653398
parent7eb15e9f6de40d74c8b08d0701f6b6974c952ee1 (diff)
downloadacf-heimdal-7f57eacee84e04ea3b39ffb5e33ebcdaa2ef48ab.tar.bz2
acf-heimdal-7f57eacee84e04ea3b39ffb5e33ebcdaa2ef48ab.tar.xz
Added require statement for html library
-rw-r--r--heimdal-kinit-html.lsp1
-rw-r--r--heimdal-klist-html.lsp1
2 files changed, 2 insertions, 0 deletions
diff --git a/heimdal-kinit-html.lsp b/heimdal-kinit-html.lsp
index 643e7fd..15edc19 100644
--- a/heimdal-kinit-html.lsp
+++ b/heimdal-kinit-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<H1><%= html.html_escape(form.label) %></H1>
diff --git a/heimdal-klist-html.lsp b/heimdal-klist-html.lsp
index 910ec61..b4a13ed 100644
--- a/heimdal-klist-html.lsp
+++ b/heimdal-klist-html.lsp
@@ -1,5 +1,6 @@
<% local data, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"kdestroy"}, session) %>
<% htmlviewfunctions.displaycommandresults({"kinit"}, session, true) %>