summaryrefslogtreecommitdiffstats
path: root/openssl-status-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 01:30:48 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 01:30:48 +0000
commit2709d2ce6ab6f6d299bf44f2f209552438cf6a41 (patch)
tree972626385dd163bdbfbf23ce19596d15cd103d6b /openssl-status-html.lsp
parent83e08cd13891c97f9a0e4edf9d262860fc036d29 (diff)
downloadacf-openssl-2709d2ce6ab6f6d299bf44f2f209552438cf6a41.tar.bz2
acf-openssl-2709d2ce6ab6f6d299bf44f2f209552438cf6a41.tar.xz
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model) Updated for viewfunctions to htmlviewfunctions and modified require statements for acf libraries
Diffstat (limited to 'openssl-status-html.lsp')
-rw-r--r--openssl-status-html.lsp16
1 files changed, 8 insertions, 8 deletions
diff --git a/openssl-status-html.lsp b/openssl-status-html.lsp
index 1d3964c..cbdb729 100644
--- a/openssl-status-html.lsp
+++ b/openssl-status-html.lsp
@@ -1,13 +1,13 @@
<% local view, viewlibrary, page_info, session = ... %>
-<% require("viewfunctions") %>
+<% require("htmlviewfunctions") %>
-<% displaycommandresults({"checkenvironment", "putcacert", "generatecacert"}, session, true) %>
-<% displaycommandresults({"install"}, session) %>
+<% htmlviewfunctions.displaycommandresults({"checkenvironment", "putcacert", "generatecacert"}, session, true) %>
+<% htmlviewfunctions.displaycommandresults({"install"}, session) %>
<H1>System Info</H1>
<DL>
<%
-displayitem(view.value.version)
+htmlviewfunctions.displayitem(view.value.version)
if view.value.version and view.value.version.errtxt and viewlibrary.check_permission("apk-tools/apk/install") then
%>
<DT>Install package</DT>
@@ -15,10 +15,10 @@ if view.value.version and view.value.version.errtxt and viewlibrary.check_permis
<input type='hidden' name='package' value='<%= html.html_escape(view.value.version.name) %>'>
<input class='submit' type='submit' value='Install'></form></DD>
<% end %>
-<% displayitem(view.value.conffile) %>
-<% displayitem(view.value.environment) %>
-<% displayitem(view.value.cacert) %>
-<% displayitem(view.value.cakey) %>
+<% htmlviewfunctions.displayitem(view.value.conffile) %>
+<% htmlviewfunctions.displayitem(view.value.environment) %>
+<% htmlviewfunctions.displayitem(view.value.cacert) %>
+<% htmlviewfunctions.displayitem(view.value.cakey) %>
</DL>
<% if not view.value.version.errtxt and not view.value.conffile.errtxt then