diff options
Diffstat (limited to 'openssl-putcacert-html.lsp')
-rw-r--r-- | openssl-putcacert-html.lsp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/openssl-putcacert-html.lsp b/openssl-putcacert-html.lsp index 2a2cfb7..35bd34a 100644 --- a/openssl-putcacert-html.lsp +++ b/openssl-putcacert-html.lsp @@ -1,16 +1,16 @@ -<? local form, viewlibrary, page_info = ... ?> -<? require("viewfunctions") ?> +<% local form, viewlibrary, page_info = ... %> +<% require("viewfunctions") %> -<? --[[ DEBUG INFORMATION +<% --[[ DEBUG INFORMATION io.write(html.cfe_unpack(form)) ---]] ?> +--]] %> -<H1><?= form.label ?></H1> -<? +<H1><%= form.label %></H1> +<% -- This is a kludge to get file upload working form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action .. '" enctype="multipart/form-data' form.value.ca.type="file" form.value.password.type="password" local order = {"ca", "password"} displayform(form, order) -?> +%> |