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 --- modules-edit-html.lsp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'modules-edit-html.lsp') 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 %>

Configuration

@@ -12,16 +12,16 @@

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) %>

File Content

<% 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 %>