From aecf84c7d5d8d45396cd15c9e6490ac821c36558 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Tue, 2 Oct 2012 15:14:45 +0000 Subject: Added require statement for html library --- samba-editshare-html.lsp | 1 + samba-join-html.lsp | 1 + samba-listfiles-html.lsp | 1 + samba-listshares-html.lsp | 1 + 4 files changed, 4 insertions(+) diff --git a/samba-editshare-html.lsp b/samba-editshare-html.lsp index 85a2cdf..d53d861 100644 --- a/samba-editshare-html.lsp +++ b/samba-editshare-html.lsp @@ -1,5 +1,6 @@ <% local form, viewlibrary, page_info = ... require("htmlviewfunctions") +html = require("acf.html") %>

<%= html.html_escape(form.label) %>

diff --git a/samba-join-html.lsp b/samba-join-html.lsp index 4a340a8..8a11d3a 100644 --- a/samba-join-html.lsp +++ b/samba-join-html.lsp @@ -1,5 +1,6 @@ <% local form, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% if viewlibrary and viewlibrary.dispatch_component then diff --git a/samba-listfiles-html.lsp b/samba-listfiles-html.lsp index 588c753..2458ea7 100644 --- a/samba-listfiles-html.lsp +++ b/samba-listfiles-html.lsp @@ -1,5 +1,6 @@ <% local data, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"expert"}, session) %> diff --git a/samba-listshares-html.lsp b/samba-listshares-html.lsp index a3332f7..80707a8 100644 --- a/samba-listshares-html.lsp +++ b/samba-listshares-html.lsp @@ -1,5 +1,6 @@ <% local view, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"editshare", "deleteshare"}, session) %> -- cgit v1.2.3