From b46c65ad8698324e383b0c19c47a5c4a74e07409 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Wed, 18 Apr 2012 02:00:41 +0000 Subject: 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 --- vlc-logfile-html.lsp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'vlc-logfile-html.lsp') diff --git a/vlc-logfile-html.lsp b/vlc-logfile-html.lsp index ab79f8a..7cc9795 100644 --- a/vlc-logfile-html.lsp +++ b/vlc-logfile-html.lsp @@ -1,15 +1,15 @@ <% local form, viewlibrary, page_info = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %>

Logfile

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 %>
@@ -19,7 +19,7 @@ displayitem(form.value.mtime)
<% 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 %>