summaryrefslogtreecommitdiffstats
path: root/lbu-listchanges-html.lsp
blob: 8adec8c9103d568f299cb0a2a88bacd37a6857c9 (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
<% local view, viewlibrary, page_info, session = ... 
require("htmlviewfunctions")
%>

<% htmlviewfunctions.displaycommandresults({"commit"}, session, true) %>

<%
	viewlibrary.dispatch_component("status")
	if viewlibrary.check_permission("commit") then
		viewlibrary.dispatch_component("commit")
	end
%>

<% if viewlibrary.check_permission("getpackage") then %>
<H1>Download Overlay</H1>
<DL>
	<DT>Generate and download overlay</DT>
	<DD><form action="<%= html.html_escape(page_info.script .. page_info.prefix) %>lbu/getpackage" method="POST">
	<input class="submit" type="submit" name="Download" value="Download"></form></DD>
</DL>
<% end %>

<H1>Changes Since Last Commit</H1>
<DL>
	<dt>Files changed since last commit</dt>
	<dd><pre><% 
		if (#view.value == 0) then
			io.write("None")
		else
			for i,file in pairs(view.value) do
				io.write((html.html_escape(file.status .. "\t" .. file.name .. "\n")))
			end
		end
	%></pre></DD>
</DL>