summaryrefslogtreecommitdiffstats
path: root/provisioning-dumpdatabase-html.lsp
blob: e4c0f1d8dd4fc4e7631d4366763819fd42407326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<% local form, viewlibrary, page_info = ... 
require("htmlviewfunctions")
%>

<% if form.value.data then %>
<H1><%= html.html_escape(form.value.data.label) %></H1>
<DL>
<textarea name="filecontent">
<%= html.html_escape(form.value.data.value) %>
</textarea>
</DL>
<% end %>

<H1><%= html.html_escape(form.label) %></H1>
<%
	form.value.data = nil
	htmlviewfunctions.displayform(form, nil, nil, page_info, 2)
%>