<% local view, viewlibrary, page_info, session = ... require("viewfunctions") %> <% --[[ DEBUG INFORMATION io.write("

DEBUGGING

DEBUG INFO: CFE

") io.write(html.cfe_unpack(view)) io.write("
") --]] %> <% displaycommandresults({"commit"}, session, true) %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") if session.permissions.lbu.commit then viewlibrary.dispatch_component("commit") end end %> <% if session.permissions.lbu.getpackage then %>

Download Overlay

Generate and download overlay
<% end %>

Changes Since Last Commit

Files changed since last commit
<% 
		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
	%>