diff options
Diffstat (limited to 'openssl-editconfigfile-html.lsp')
-rw-r--r-- | openssl-editconfigfile-html.lsp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/openssl-editconfigfile-html.lsp b/openssl-editconfigfile-html.lsp index 46aa4d4..28ea11a 100644 --- a/openssl-editconfigfile-html.lsp +++ b/openssl-editconfigfile-html.lsp @@ -4,6 +4,12 @@ <% htmlviewfunctions.displaycommandresults({"checkenvironment"}, session, true) %> <% +if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("getcachain") and page_info.orig_action == page_info.prefix..page_info.controller.."/"..page_info.action then + viewlibrary.dispatch_component("getcachain", {cadir=form.value.cadir.value}) +end +%> + +<% local pattern = string.gsub(page_info.prefix..page_info.controller, "[%(%)%.%%%+%-%*%?%[%]%^%$]", "%%%1") local func = haserl.loadfile(page_info.viewfile:gsub(pattern..".*$", "/") .. "filedetails-html.lsp") func(form, viewlibrary, page_info, session) |