diff options
-rw-r--r-- | openssl-checkenvironment-html.lsp | 2 | ||||
-rw-r--r-- | openssl-editconfigfile-html.lsp | 2 | ||||
-rw-r--r-- | openssl-model.lua | 4 | ||||
-rw-r--r-- | openssl-putcacert-html.lsp | 2 | ||||
-rw-r--r-- | openssl-read-html.lsp | 2 | ||||
-rw-r--r-- | openssl-status-html.lsp | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/openssl-checkenvironment-html.lsp b/openssl-checkenvironment-html.lsp index 8cf44d1..2e4f9c4 100644 --- a/openssl-checkenvironment-html.lsp +++ b/openssl-checkenvironment-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info = ... %> -<% require("htmlviewfunctions") %> +<% htmlviewfunctions = require("htmlviewfunctions") %> <% html = require("acf.html") %> <H1><%= html.html_escape(form.label) %></H1> diff --git a/openssl-editconfigfile-html.lsp b/openssl-editconfigfile-html.lsp index bff262a..46aa4d4 100644 --- a/openssl-editconfigfile-html.lsp +++ b/openssl-editconfigfile-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info, session = ... %> -<% require("htmlviewfunctions") %> +<% htmlviewfunctions = require("htmlviewfunctions") %> <% htmlviewfunctions.displaycommandresults({"checkenvironment"}, session, true) %> diff --git a/openssl-model.lua b/openssl-model.lua index b9c48a7..c2bcbf5 100644 --- a/openssl-model.lua +++ b/openssl-model.lua @@ -1,7 +1,7 @@ module(..., package.seeall) -require("posix") -require("modelfunctions") +posix = require("posix") +modelfunctions = require("modelfunctions") fs = require("acf.fs") format = require("acf.format") validator = require("acf.validator") diff --git a/openssl-putcacert-html.lsp b/openssl-putcacert-html.lsp index 26c63c2..a4a0609 100644 --- a/openssl-putcacert-html.lsp +++ b/openssl-putcacert-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info = ... %> -<% require("htmlviewfunctions") %> +<% htmlviewfunctions = require("htmlviewfunctions") %> <% html = require("acf.html") %> <H1><%= html.html_escape(form.label) %></H1> diff --git a/openssl-read-html.lsp b/openssl-read-html.lsp index c362b6d..25fa297 100644 --- a/openssl-read-html.lsp +++ b/openssl-read-html.lsp @@ -1,5 +1,5 @@ <% local view, viewlibrary, page_info, session = ... %> -<% require("htmlviewfunctions") %> +<% htmlviewfunctions = require("htmlviewfunctions") %> <% html = require("acf.html") %> <script type="text/javascript"> diff --git a/openssl-status-html.lsp b/openssl-status-html.lsp index 3a5e504..2a3e44f 100644 --- a/openssl-status-html.lsp +++ b/openssl-status-html.lsp @@ -1,5 +1,5 @@ <% local view, viewlibrary, page_info, session = ... %> -<% require("htmlviewfunctions") %> +<% htmlviewfunctions = require("htmlviewfunctions") %> <% html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"checkenvironment", "putcacert", "generatecacert"}, session, true) %> |