summaryrefslogtreecommitdiffstats
path: root/modules-edit-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'modules-edit-html.lsp')
-rw-r--r--modules-edit-html.lsp14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules-edit-html.lsp b/modules-edit-html.lsp
index 5a96422..4bcc173 100644
--- a/modules-edit-html.lsp
+++ b/modules-edit-html.lsp
@@ -1,7 +1,7 @@
<% local form, viewlibrary, page_info, session = ... %>
-<% require("viewfunctions") %>
+<% require("htmlviewfunctions") %>
-<% displaycommandresults({"reload"}, session) %>
+<% htmlviewfunctions.displaycommandresults({"reload"}, session) %>
<% if form.type == "form" then %>
<H1>Configuration</H1>
@@ -12,16 +12,16 @@
<H3>File Details</H3>
<DL>
<%
-displayitem(form.value.filename)
-displayitem(form.value.filesize)
-displayitem(form.value.mtime)
+htmlviewfunctions.displayitem(form.value.filename)
+htmlviewfunctions.displayitem(form.value.filesize)
+htmlviewfunctions.displayitem(form.value.mtime)
%>
</DL>
<H3>File Content</H3>
<% if form.type == "form" then %>
<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
-<% displayformstart(form) %>
+<% htmlviewfunctions.displayformstart(form) %>
<input type="hidden" name="filename" value="<%= form.value.filename.value %>">
<% end %>
<textarea name="filecontent">
@@ -31,7 +31,7 @@ displayitem(form.value.mtime)
<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<BR>") %></P><% end %>
<% if form.type == "form" then %>
-<% displayformend(form) %>
+<% htmlviewfunctions.displayformend(form) %>
<% end %>
</form>