summaryrefslogtreecommitdiffstats
path: root/openssl-request-html.lsp
diff options
context:
space:
mode:
authorNatanael Copa <natanael.copa@gmail.com>2008-07-28 06:48:16 +0000
committerNatanael Copa <natanael.copa@gmail.com>2008-07-28 06:48:16 +0000
commite96bf1c113a417c8bf5274afd1d5583a27dfd448 (patch)
tree766c9a1498495d9b1e3eef113da5c3ffaa66d0ca /openssl-request-html.lsp
parente5b771729ba26f578cbc6b770dec27342378d0a7 (diff)
downloadacf-openssl-e96bf1c113a417c8bf5274afd1d5583a27dfd448.tar.bz2
acf-openssl-e96bf1c113a417c8bf5274afd1d5583a27dfd448.tar.xz
use <% %> instead of <? ?>
git-svn-id: svn://svn.alpinelinux.org/acf/openssl/trunk@1323 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'openssl-request-html.lsp')
-rw-r--r--openssl-request-html.lsp14
1 files changed, 7 insertions, 7 deletions
diff --git a/openssl-request-html.lsp b/openssl-request-html.lsp
index cc0cdb3..b2b6495 100644
--- a/openssl-request-html.lsp
+++ b/openssl-request-html.lsp
@@ -1,12 +1,12 @@
-<? 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>
+<%
form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
form.value.password.type = "password"
form.value.password_confirm.type = "password"
@@ -14,5 +14,5 @@ io.write(html.cfe_unpack(form))
"organizationalUnitName", "OU", "commonName", "CN", "emailAddress" }
local finishingorder = { "certtype", "extensions", "password", "password_confirm" }
displayform(form, order, finishingorder)
-?>
+%>