summaryrefslogtreecommitdiffstats
path: root/lbu-listchanges-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'lbu-listchanges-html.lsp')
-rw-r--r--lbu-listchanges-html.lsp16
1 files changed, 8 insertions, 8 deletions
diff --git a/lbu-listchanges-html.lsp b/lbu-listchanges-html.lsp
index 0cc7f03..d2a9692 100644
--- a/lbu-listchanges-html.lsp
+++ b/lbu-listchanges-html.lsp
@@ -1,25 +1,25 @@
-<? local view, viewlibrary, pageinfo, session = ...
+<% local view, viewlibrary, pageinfo, session = ...
require("viewfunctions")
-?>
-<?
+%>
+<%
--[[ DEBUG INFORMATION
io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
io.write(html.cfe_unpack(view))
io.write("</span>")
--]]
-?>
+%>
-<? if viewlibrary and viewlibrary.dispatch_component then
+<% if viewlibrary and viewlibrary.dispatch_component then
viewlibrary.dispatch_component("status")
if session.permissions.lbu.commit then
viewlibrary.dispatch_component("commit")
end
-end ?>
+end %>
<H1>Changes Since Last Commit</H1>
<DL>
<dt>Files changed since last commit</dt>
- <dd><pre><?
+ <dd><pre><%
if (#view.value == 0) then
io.write("None")
else
@@ -27,5 +27,5 @@ end ?>
io.write(file.status .. "\t" .. file.name .. "\n")
end
end
- ?></pre></DD>
+ %></pre></DD>
</DL>