diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 02:00:41 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 02:00:41 +0000 |
commit | b46c65ad8698324e383b0c19c47a5c4a74e07409 (patch) | |
tree | 823e7c812d50840f574ac3838bdc49caabe43c7f /vlc-startstop-html.lsp | |
parent | 67a1b878bde17d9b3f1bdf56dca825f27c71e8d8 (diff) | |
download | acf-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-startstop-html.lsp')
-rw-r--r-- | vlc-startstop-html.lsp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/vlc-startstop-html.lsp b/vlc-startstop-html.lsp deleted file mode 100644 index c98208b..0000000 --- a/vlc-startstop-html.lsp +++ /dev/null @@ -1,22 +0,0 @@ -<% local data, viewlibrary, page_info = ... %> - -<H1>Management</H1> - -<% if data.value.result then %> -<H2>Previous action result</H2> -<% if data.value.result.value ~= "" then %> -<P CLASS='descr'><%= string.gsub(html.html_escape(data.value.result.value), "\n", "<BR>") %></P> -<% end if data.value.result.errtxt then %> -<P CLASS='error'><%= string.gsub(html.html_escape(data.value.result.errtxt), "\n", "<BR>") %></P> -<% end end %> - -<DL> -<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action) %>" method="POST"> -<DT>Program control-panel</DT> -<DD> -<% for i,act in ipairs(data.value.actions.value) do %> - <input class="submit" type="submit" name="action" value="<%= act %>"> -<% end %> -</DD> -</form> -</DL> |