From df80810456f4a13d48eba24bfa1fa79b360c8426 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 2 Feb 2012 20:59:08 +0000 Subject: Changed viewfunctions.lua to htmlviewfunctions.lua and made it an actual module It should have been a module all along, but wasn't Unfortunately, this means changes to pretty much every view file --- app/acf-util/logon-html.lsp | 4 +- app/acf-util/logon-logout-html.lsp | 4 +- app/acf-util/password-html.lsp | 4 +- app/acf-util/password-status-html.lsp | 4 +- app/acf-util/roles-editrole-html.lsp | 8 +- app/acf-util/roles-viewroles-html.lsp | 4 +- app/acf-util/skins-read-html.lsp | 4 +- app/acf-util/welcome-html.lsp | 8 +- app/debug-html.lsp | 8 +- app/expert-html.lsp | 1 - app/filedetails-html.lsp | 12 +- app/form-html.lsp | 4 +- app/status-html.lsp | 12 +- lib/Makefile | 2 +- lib/README | 2 +- lib/htmlviewfunctions.lua | 362 +++++++++++++++++++++++++++++++++ lib/viewfunctions.lua | 370 ---------------------------------- 17 files changed, 402 insertions(+), 411 deletions(-) create mode 100644 lib/htmlviewfunctions.lua delete mode 100644 lib/viewfunctions.lua diff --git a/app/acf-util/logon-html.lsp b/app/acf-util/logon-html.lsp index 2400c90..29ced43 100644 --- a/app/acf-util/logon-html.lsp +++ b/app/acf-util/logon-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info, session = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %>