From 14a52b1711e4ffa117ea3415c68d9e60fa26ec69 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Wed, 18 Apr 2012 00:31:13 +0000 Subject: Updated for viewfunctions changed to htmlviewfunctions --- lbu-config-html.lsp | 6 +++--- lbu-listbackups-html.lsp | 4 ++-- lbu-listchanges-html.lsp | 4 ++-- lbu-status-html.lsp | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lbu-config-html.lsp b/lbu-config-html.lsp index 10b0dd1..6a720d1 100644 --- a/lbu-config-html.lsp +++ b/lbu-config-html.lsp @@ -1,8 +1,8 @@ <% local form, viewlibrary, page_info, session = ... -require("viewfunctions") +require("htmlviewfunctions") %> -<% displaycommandresults({"editincluded", "editexcluded", "selectbackup"}, session, true) %> +<% htmlviewfunctions.displaycommandresults({"editincluded", "editexcluded", "selectbackup"}, session, true) %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") @@ -11,7 +11,7 @@ end %>

Config

<% local order = { "LBU_MEDIA", "ENCRYPTION", "DEFAULT_CIPHER", "PASSWORD" } - displayform(form, order) + htmlviewfunctions.displayform(form, order) if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("editincluded") diff --git a/lbu-listbackups-html.lsp b/lbu-listbackups-html.lsp index 579411e..fc2153c 100644 --- a/lbu-listbackups-html.lsp +++ b/lbu-listbackups-html.lsp @@ -1,8 +1,8 @@ <% local view, viewlibrary, pageinfo, session = ... -require("viewfunctions") +require("htmlviewfunctions") %> -<% displaycommandresults({"selectbackup"}, session) %> +<% htmlviewfunctions.displaycommandresults({"selectbackup"}, session) %>

Backup Archives

diff --git a/lbu-listchanges-html.lsp b/lbu-listchanges-html.lsp index 1b2308b..8adec8c 100644 --- a/lbu-listchanges-html.lsp +++ b/lbu-listchanges-html.lsp @@ -1,8 +1,8 @@ <% local view, viewlibrary, page_info, session = ... -require("viewfunctions") +require("htmlviewfunctions") %> -<% displaycommandresults({"commit"}, session, true) %> +<% htmlviewfunctions.displaycommandresults({"commit"}, session, true) %> <% viewlibrary.dispatch_component("status") diff --git a/lbu-status-html.lsp b/lbu-status-html.lsp index dc76c8c..932ced1 100644 --- a/lbu-status-html.lsp +++ b/lbu-status-html.lsp @@ -1,5 +1,5 @@ <% local view, viewlibrary, pageinfo, session = ... -require("viewfunctions") +require("htmlviewfunctions") %>

System Info

@@ -11,11 +11,11 @@ else view.value.committed.value = "WARNING!\nUntil you commit, you will lose your changes at next reboot/shutdown!" end view.value.committed.type = "string" -displayitem(view.value.committed) +htmlviewfunctions.displayitem(view.value.committed) for name,value in pairs(view.value) do if name ~= "committed" then - displayitem(value) + htmlviewfunctions.displayitem(value) end end %>
-- cgit v1.2.3