summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-02 15:14:45 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-02 15:14:45 +0000
commitaecf84c7d5d8d45396cd15c9e6490ac821c36558 (patch)
tree18bcb5c5acf23bb6ba4df78d9eb2a8a665836707
parent8e2db17600b5d55e5556a25114f6451000e6b831 (diff)
downloadacf-samba-aecf84c7d5d8d45396cd15c9e6490ac821c36558.tar.bz2
acf-samba-aecf84c7d5d8d45396cd15c9e6490ac821c36558.tar.xz
Added require statement for html library
-rw-r--r--samba-editshare-html.lsp1
-rw-r--r--samba-join-html.lsp1
-rw-r--r--samba-listfiles-html.lsp1
-rw-r--r--samba-listshares-html.lsp1
4 files changed, 4 insertions, 0 deletions
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")
%>
<H1><%= html.html_escape(form.label) %></H1>
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) %>