summaryrefslogtreecommitdiffstats
path: root/vlc-logfile-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'vlc-logfile-html.lsp')
-rw-r--r--vlc-logfile-html.lsp48
1 files changed, 4 insertions, 44 deletions
diff --git a/vlc-logfile-html.lsp b/vlc-logfile-html.lsp
index 78baaa5..16c583a 100644
--- a/vlc-logfile-html.lsp
+++ b/vlc-logfile-html.lsp
@@ -1,46 +1,6 @@
-<% local form, viewlibrary, page_info = ... %>
-<% htmlviewfunctions = require("htmlviewfunctions") %>
-<% html = require("acf.html") %>
-
-<h1>Logfile</h1>
-<h2>File Details</h2>
-<%
-htmlviewfunctions.displayitem(form.value.filename)
-htmlviewfunctions.displayitem(form.value.filesize)
-htmlviewfunctions.displayitem(form.value.mtime)
---if form.value.grep.value ~= "" then
--- htmlviewfunctions.displayitem(form.value.grep)
---end
+<% local data, viewlibrary = ...
%>
-<h2>File Content</h2>
-<% if form.type == "form" then %>
-<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
-<% htmlviewfunctions.displayformstart(form) %>
-<input type="hidden" name="filename" value="<%= html.html_escape(form.value.filename.value) %>">
-<% end %>
-<textarea name="filecontent">
-<%= html.html_escape(form.value.filecontent.value) %>
-</textarea>
-<% if form.value.filecontent.errtxt then %><p class='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<br/>") %></p><% end %>
-<% if form.value.filecontent.descr then %><p class='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<br/>") %></p><% end %>
-
-<% if form.type == "form" then %>
-<% htmlviewfunctions.displayformend(form) %>
-<% end %>
-</form>
-
-<%
---[[
-print("<h2>Debug info for page '"..tostring(page_info.action).."'</h2>")
---form["value"]["filecontent"]["value"]=nil
-print("<h3>form</h3>")
-print(htmlviewfunctions.cfe_unpack(form))
-print("<h3>viewlibrary</h3>")
-print(htmlviewfunctions.cfe_unpack(viewlibrary))
-print("<h3>page_info</h3>")
-print(htmlviewfunctions.cfe_unpack(page_info))
-print("<h3>session</h3>")
-print(htmlviewfunctions.cfe_unpack(session))
---]]
-%>
+<% if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("alpine-baselayout/logfiles/view", {filename=data.value})
+end %>