summaryrefslogtreecommitdiffstats
path: root/logfiles-view-html.lsp
blob: e3c58df95c288949fd528e008e754e6228977959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<% 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>
<DL>
<% if form.type == "form" then %>
<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
<% 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 %>
<% displayformend(form) %>
<% end %>
</form>
</DL>