From 9291a3452b2d86403a1f4be559736df58571c3f2 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 23 Feb 2012 14:49:39 +0000 Subject: Updates to reflect changes in acf-core-0.15 - viewfunctions becomes htmlviewfunctions --- logfiles-view-html.lsp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'logfiles-view-html.lsp') 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 %>

Configuration

@@ -10,11 +10,11 @@

File Details

<% -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 %>
@@ -23,7 +23,7 @@ end
<% if form.type == "form" then %> <% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %> -<% displayformstart(form) %> +<% htmlviewfunctions.displayformstart(form) %> <% end %>