summaryrefslogtreecommitdiffstats
path: root/lbu-listchanges-html.lsp
diff options
context:
space:
mode:
authorNatanael Copa <natanael.copa@gmail.com>2008-07-28 06:48:16 +0000
committerNatanael Copa <natanael.copa@gmail.com>2008-07-28 06:48:16 +0000
commitf94551200d095d42b721a44086d6eafcecacbd88 (patch)
tree0f7e203f097f5a17c7caa375ac76cd969e3c5bc2 /lbu-listchanges-html.lsp
parenta0f64cff3dfc675ed5ea641c10be72c842b693d5 (diff)
downloadacf-alpine-conf-f94551200d095d42b721a44086d6eafcecacbd88.tar.bz2
acf-alpine-conf-f94551200d095d42b721a44086d6eafcecacbd88.tar.xz
use <% %> instead of <? ?>
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-conf/trunk@1323 ab2d0c66-481e-0410-8bed-d214d4d58bed
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>