summaryrefslogtreecommitdiffstats
path: root/app/template-stream.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
commite4b39f4255aff6f974eb1a1e4e78fe01587814aa (patch)
treef59de39a0fb4325e2b8623d734cf23ab7a6ada56 /app/template-stream.lsp
parent4bf00bc98b36c0233e1ea833571acffefe2ec73b (diff)
downloadacf-core-e4b39f4255aff6f974eb1a1e4e78fe01587814aa.tar.bz2
acf-core-e4b39f4255aff6f974eb1a1e4e78fe01587814aa.tar.xz
use <% %> instead of <? ?>
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1323 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/template-stream.lsp')
-rw-r--r--app/template-stream.lsp14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/template-stream.lsp b/app/template-stream.lsp
index 1a5f3c0..88713fd 100644
--- a/app/template-stream.lsp
+++ b/app/template-stream.lsp
@@ -1,8 +1,8 @@
-<? local viewtable, viewlibrary, pageinfo, session = ... ?>
+<% local viewtable, viewlibrary, pageinfo, session = ... %>
Status: 200 OK
-Content-Type: <? print(viewtable.option or "application/octet-stream") ?>
-<? if viewtable.label ~= "" then ?>
-Content-Disposition: attachment; filename="<?= viewtable.label ?>"
-<? end ?>
-<? io.write("\n") ?>
-<?= viewtable.value ?>
+Content-Type: <% print(viewtable.option or "application/octet-stream") %>
+<% if viewtable.label ~= "" then %>
+Content-Disposition: attachment; filename="<%= viewtable.label %>"
+<% end %>
+<% io.write("\n") %>
+<%= viewtable.value %>