summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-02 15:11:04 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-02 15:11:04 +0000
commite9d1dabb876d1644d83a7961a593af4e15eef9b5 (patch)
tree3ea6a64a33ac2d49353ae3f6468519213bb91c58
parent47a9e7da8c229413def72070d5674f1dfb4d0e05 (diff)
downloadacf-iptables-e9d1dabb876d1644d83a7961a593af4e15eef9b5.tar.bz2
acf-iptables-e9d1dabb876d1644d83a7961a593af4e15eef9b5.tar.xz
Added require statement for html library
-rw-r--r--iptables-details-html.lsp1
-rw-r--r--iptables-editchain-html.lsp1
-rw-r--r--iptables-editrule-html.lsp1
-rw-r--r--iptables-filterrules-html.lsp1
4 files changed, 4 insertions, 0 deletions
diff --git a/iptables-details-html.lsp b/iptables-details-html.lsp
index 5310f67..3f6e1e5 100644
--- a/iptables-details-html.lsp
+++ b/iptables-details-html.lsp
@@ -1,4 +1,5 @@
<% local data, viewlibrary = ...
+html = require("acf.html")
%>
<% viewlibrary.dispatch_component("status") %>
diff --git a/iptables-editchain-html.lsp b/iptables-editchain-html.lsp
index af06bb6..3648a39 100644
--- a/iptables-editchain-html.lsp
+++ b/iptables-editchain-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/iptables-editrule-html.lsp b/iptables-editrule-html.lsp
index da1fc61..eb0c497 100644
--- a/iptables-editrule-html.lsp
+++ b/iptables-editrule-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/iptables-filterrules-html.lsp b/iptables-filterrules-html.lsp
index 7011016..b5f26ee 100644
--- a/iptables-filterrules-html.lsp
+++ b/iptables-filterrules-html.lsp
@@ -1,5 +1,6 @@
<% local data, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"editchain", "deletechain", "createrule", "deleterule", "editrule", "createchain"}, session) %>