summaryrefslogtreecommitdiffstats
path: root/provisioning-edittemplate-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 01:51:49 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 01:51:49 +0000
commit84bfd38162321c36e30a06865a0437cfaa4fc339 (patch)
tree5d700ce1b3af6617722fa5a81fd7ab2b1c867381 /provisioning-edittemplate-html.lsp
parent091862516c4d4bc80eb741101fcd670ed4009ec7 (diff)
downloadacf-provisioning-84bfd38162321c36e30a06865a0437cfaa4fc339.tar.bz2
acf-provisioning-84bfd38162321c36e30a06865a0437cfaa4fc339.tar.xz
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model) Updated for viewfunctions to htmlviewfunctions
Diffstat (limited to 'provisioning-edittemplate-html.lsp')
-rw-r--r--provisioning-edittemplate-html.lsp12
1 files changed, 6 insertions, 6 deletions
diff --git a/provisioning-edittemplate-html.lsp b/provisioning-edittemplate-html.lsp
index 8e6d54c..ba02b4d 100644
--- a/provisioning-edittemplate-html.lsp
+++ b/provisioning-edittemplate-html.lsp
@@ -1,17 +1,17 @@
<% local form, viewlibrary, page_info = ... %>
-<% require("viewfunctions") %>
+<% require("htmlviewfunctions") %>
<H1><%= html.html_escape(form.label) %></H1>
<H2>Template Details</H2>
<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
-<% displayformstart(form) %>
+<% htmlviewfunctions.displayformstart(form) %>
<%
if page_info.action == "edittemplate" then
form.value.filename.readonly = "true"
end
-displayformitem(form.value.filename, "filename")
-displayformitem(form.value.label, "label")
-displayformitem(form.value.seq, "seq")
+htmlviewfunctions.displayformitem(form.value.filename, "filename")
+htmlviewfunctions.displayformitem(form.value.label, "label")
+htmlviewfunctions.displayformitem(form.value.seq, "seq")
%>
</DL>
@@ -23,4 +23,4 @@ displayformitem(form.value.seq, "seq")
<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<BR>") %></P><% end %>
<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<BR>") %></P><% end %>
-<% displayformend(form) %>
+<% htmlviewfunctions.displayformend(form) %>