summaryrefslogtreecommitdiffstats
path: root/openssl-putcacert-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-04-12 04:11:50 +0000
committerTed Trask <ttrask01@yahoo.com>2014-04-12 04:11:50 +0000
commitb7413b39ead7974611f0a749240ac5383d011442 (patch)
tree8d85857b158f3cda6f143b5e872aa195fd7f9aa5 /openssl-putcacert-html.lsp
parent6354a6d5d2a9f645bca8901edb116d6103b81d01 (diff)
downloadacf-openssl-b7413b39ead7974611f0a749240ac5383d011442.tar.bz2
acf-openssl-b7413b39ead7974611f0a749240ac5383d011442.tar.xz
Changes to use new htmlviewfunctions functions
Diffstat (limited to 'openssl-putcacert-html.lsp')
-rw-r--r--openssl-putcacert-html.lsp9
1 files changed, 2 insertions, 7 deletions
diff --git a/openssl-putcacert-html.lsp b/openssl-putcacert-html.lsp
index 1d178fe..35d39b6 100644
--- a/openssl-putcacert-html.lsp
+++ b/openssl-putcacert-html.lsp
@@ -1,13 +1,8 @@
-<% local form, viewlibrary, page_info = ... %>
+<% local form, viewlibrary, page_info, session = ... %>
<% htmlviewfunctions = require("htmlviewfunctions") %>
-<% html = require("acf.html") %>
-<h1><%= html.html_escape(form.label) %></h1>
<%
- form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
form.enctype = "multipart/form-data"
form.value.ca.type="file"
- form.value.password.type="password"
- local order = {"ca", "password"}
- htmlviewfunctions.displayform(form, order)
+ htmlviewfunctions.displayitem(form, page_info)
%>