summaryrefslogtreecommitdiffstats
path: root/vlc-status-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 02:00:41 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 02:00:41 +0000
commitb46c65ad8698324e383b0c19c47a5c4a74e07409 (patch)
tree823e7c812d50840f574ac3838bdc49caabe43c7f /vlc-status-html.lsp
parent67a1b878bde17d9b3f1bdf56dca825f27c71e8d8 (diff)
downloadacf-vlc-daemon-b46c65ad8698324e383b0c19c47a5c4a74e07409.tar.bz2
acf-vlc-daemon-b46c65ad8698324e383b0c19c47a5c4a74e07409.tar.xz
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
Diffstat (limited to 'vlc-status-html.lsp')
-rw-r--r--vlc-status-html.lsp12
1 files changed, 6 insertions, 6 deletions
diff --git a/vlc-status-html.lsp b/vlc-status-html.lsp
index 5518c04..3b578a9 100644
--- a/vlc-status-html.lsp
+++ b/vlc-status-html.lsp
@@ -1,16 +1,16 @@
<% local data, viewlibrary, page_info, session = ...
-require("viewfunctions")
+require("htmlviewfunctions")
%>
-<% displaycommandresults({"install","edit"}, session) %>
-<% displaycommandresults({"startstop"}, session) %>
+<% htmlviewfunctions.displaycommandresults({"install","edit"}, session) %>
+<% htmlviewfunctions.displaycommandresults({"startstop"}, session) %>
<H1>System Info</H1>
<DL>
<%
-displayitem(data.value.status)
+htmlviewfunctions.displayitem(data.value.status)
-displayitem(data.value.version)
+htmlviewfunctions.displayitem(data.value.version)
if data.value.version and data.value.version.errtxt and viewlibrary.check_permission("apk-tools/apk/install") then
%>
<DT>Install package</DT>
@@ -20,7 +20,7 @@ if data.value.version and data.value.version.errtxt and viewlibrary.check_permis
<%
end
-displayitem(data.value.autostart)
+htmlviewfunctions.displayitem(data.value.autostart)
if not (data.value.version and data.value.version.errtxt) and data.value.autostart and data.value.autostart.errtxt and viewlibrary.check_permission("alpine-baselayout/rc/edit") then
%>
<DT>Enable autostart</DT>