summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-02 15:11:29 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-02 15:11:29 +0000
commit567e623b8285a1b93440c2aa51a00bffb92e32ab (patch)
tree679347e536a42c389b47dd63e75d3b4c1572b56b
parent8a8a4ce760822f27f032f2f9c3e528537847dc7e (diff)
downloadacf-kamailio-567e623b8285a1b93440c2aa51a00bffb92e32ab.tar.bz2
acf-kamailio-567e623b8285a1b93440c2aa51a00bffb92e32ab.tar.xz
Added require statement for html library
-rw-r--r--kamailio-createtableentry-html.lsp1
-rw-r--r--kamailio-createuser-html.lsp1
-rw-r--r--kamailio-listfiles-html.lsp1
-rw-r--r--kamailio-listtables-html.lsp1
-rw-r--r--kamailio-listusers-html.lsp1
-rw-r--r--kamailio-searchdatabase-html.lsp1
-rw-r--r--kamailio-viewtable-html.lsp1
7 files changed, 7 insertions, 0 deletions
diff --git a/kamailio-createtableentry-html.lsp b/kamailio-createtableentry-html.lsp
index fc5113f..e8dc1ca 100644
--- a/kamailio-createtableentry-html.lsp
+++ b/kamailio-createtableentry-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/kamailio-createuser-html.lsp b/kamailio-createuser-html.lsp
index a3a8857..b83f2b1 100644
--- a/kamailio-createuser-html.lsp
+++ b/kamailio-createuser-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/kamailio-listfiles-html.lsp b/kamailio-listfiles-html.lsp
index bcc9020..e99c936 100644
--- a/kamailio-listfiles-html.lsp
+++ b/kamailio-listfiles-html.lsp
@@ -1,5 +1,6 @@
<% local view, viewlibrary, page_info, session = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<% htmlviewfunctions.displaycommandresults({"edit"}, session) %>
diff --git a/kamailio-listtables-html.lsp b/kamailio-listtables-html.lsp
index 9460bf6..fec3ac4 100644
--- a/kamailio-listtables-html.lsp
+++ b/kamailio-listtables-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"createdatabase"}, session) %>
diff --git a/kamailio-listusers-html.lsp b/kamailio-listusers-html.lsp
index d380a83..d5ea4f9 100644
--- a/kamailio-listusers-html.lsp
+++ b/kamailio-listusers-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"deleteuser", "updateuser"}, session) %>
<% htmlviewfunctions.displaycommandresults({"createuser"}, session, true) %>
diff --git a/kamailio-searchdatabase-html.lsp b/kamailio-searchdatabase-html.lsp
index 6d747b7..e2538fb 100644
--- a/kamailio-searchdatabase-html.lsp
+++ b/kamailio-searchdatabase-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<% if form.value.result then
diff --git a/kamailio-viewtable-html.lsp b/kamailio-viewtable-html.lsp
index 38dd720..e1531d0 100644
--- a/kamailio-viewtable-html.lsp
+++ b/kamailio-viewtable-html.lsp
@@ -1,5 +1,6 @@
<% local form, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
<% htmlviewfunctions.displaycommandresults({"deletetableentry", "updatetableentry"}, session) %>
<% htmlviewfunctions.displaycommandresults({"createtableentry"}, session, true) %>