diff options
Diffstat (limited to 'logfiles-view-html.lsp')
-rw-r--r-- | logfiles-view-html.lsp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/logfiles-view-html.lsp b/logfiles-view-html.lsp index e3c58df..2751941 100644 --- a/logfiles-view-html.lsp +++ b/logfiles-view-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> <% if form.type == "form" then %> <H1>Configuration</H1> @@ -10,11 +10,11 @@ <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) if form.value.grep.value ~= "" then - displayitem(form.value.grep) + htmlviewfunctions.displayitem(form.value.grep) end %> </DL> @@ -23,7 +23,7 @@ end <DL> <% 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="<%= html.html_escape(form.value.filename.value) %>"> <% end %> <textarea name="filecontent"> @@ -33,7 +33,7 @@ end <% 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> </DL> |