summaryrefslogtreecommitdiffstats
path: root/app/filedetails-html.lsp
blob: dff6eeeabd0eb872dffe47c2b3df03442b3ec01f (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
<% local form, viewlibrary, page_info = ... %>
<% require("htmlviewfunctions") %>

<% if form.type == "form" then %>
	<h1>Configuration</h1>
	<h2>Expert Configuration</h2>
<% else %>
	<h1>View File</h1>
<% end %>

<h3>File Details</h3>
<% 
htmlviewfunctions.displayitem(form.value.filename)
htmlviewfunctions.displayitem(form.value.filesize)
htmlviewfunctions.displayitem(form.value.mtime)
%>

<h3>File Content</h3>
<% 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><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<br/>") %></p>
<% end %>

<% if form.type == "form" then %>
	<% htmlviewfunctions.displayformend(form) %>
<% end %>