summaryrefslogtreecommitdiffstats
path: root/tcpproxy-listsmtpfiles-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 01:58:45 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 01:58:45 +0000
commit06600e5d886ac3ed3ae5ee6ce04994b8c6f387f5 (patch)
tree64b612ddfb83fb8efc9af66e32ba370582ef0172 /tcpproxy-listsmtpfiles-html.lsp
parent784aaf2ba00abff651721c1814b1a3ca0fcb5f89 (diff)
downloadacf-tcpproxy-06600e5d886ac3ed3ae5ee6ce04994b8c6f387f5.tar.bz2
acf-tcpproxy-06600e5d886ac3ed3ae5ee6ce04994b8c6f387f5.tar.xz
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model) Updated startstop functionality and deleted view Updated for viewfunctions to htmlviewfunctions and modified require statements for acf libraries
Diffstat (limited to 'tcpproxy-listsmtpfiles-html.lsp')
-rw-r--r--tcpproxy-listsmtpfiles-html.lsp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tcpproxy-listsmtpfiles-html.lsp b/tcpproxy-listsmtpfiles-html.lsp
index 37fbd9e..3760a66 100644
--- a/tcpproxy-listsmtpfiles-html.lsp
+++ b/tcpproxy-listsmtpfiles-html.lsp
@@ -1,9 +1,9 @@
<% local view, viewlibrary, page_info, session = ...
-require("viewfunctions")
+require("htmlviewfunctions")
%>
-<% displaycommandresults({"editsmtpfile", "delsmtpfile"}, session) %>
-<% displaycommandresults({"createsmtpfile"}, session, true) %>
+<% htmlviewfunctions.displaycommandresults({"editsmtpfile", "delsmtpfile"}, session) %>
+<% htmlviewfunctions.displaycommandresults({"createsmtpfile"}, session, true) %>
<H1>Files</H1>
<DL>
@@ -33,5 +33,5 @@ require("viewfunctions")
<H2><%= html.html_escape(createform.label) %></H2>
<%
createform.action = page_info.script .. page_info.prefix .. page_info.controller .. "/createsmtpfile"
- displayform(createform)
+ htmlviewfunctions.displayform(createform)
end %>