summaryrefslogtreecommitdiffstats
path: root/logfiles-view-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'logfiles-view-html.lsp')
-rw-r--r--logfiles-view-html.lsp36
1 files changed, 36 insertions, 0 deletions
diff --git a/logfiles-view-html.lsp b/logfiles-view-html.lsp
new file mode 100644
index 0000000..a83153c
--- /dev/null
+++ b/logfiles-view-html.lsp
@@ -0,0 +1,36 @@
+<% local form, viewlibrary, page_info = ... %>
+<% require("viewfunctions") %>
+
+<% if form.type == "form" then %>
+<H1>Configuration</H1>
+<H2>Expert Configuration</H2>
+<% else %>
+<H1>View File</H1>
+<% end %>
+<H3>File Details</H3>
+<DL>
+<%
+displayitem(form.value.filename)
+displayitem(form.value.filesize)
+displayitem(form.value.mtime)
+if form.value.grep.value ~= "" then
+ displayitem(form.value.grep)
+end
+%>
+</DL>
+
+<H3>File Content</H3>
+<% if form.descr then %><P CLASS='descr'><%= string.gsub(form.descr, "\n", "<BR>") %></P><% end %>
+<% if form.errtxt then %><P CLASS='error'><%= string.gsub(form.errtxt, "\n", "<BR>") %></P><% end %>
+<form action="<%= page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>" method="POST">
+<input type="hidden" name="filename" value="<%= form.value.filename.value %>">
+<textarea name="filecontent">
+<%= html.html_escape(form.value.filecontent.value) %>
+</textarea>
+<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(form.value.filecontent.errtxt, "\n", "<BR>") %></P><% end %>
+
+<% if form.type == "form" then %>
+<H3>Save</H3>
+<DL><DT>Submit and save above changes</DT><DD><input class="submit" type="submit" name="<%= form.option %>" value="<%= form.option %>"></DD></DL>
+<% end %>
+</form>