summaryrefslogtreecommitdiffstats
path: root/app/template-stream.lsp
blob: 79c828e2337c2c6cbc59b68fb9599b9dca8d604b (plain)
1
2
3
4
5
6
7
8
9
10
11
<% local viewtable, viewlibrary, pageinfo, session = ... %>
Status: 200 OK
Content-Type: <% print(viewtable.option or "application/octet-stream") %>
<% if viewtable.length then %>
Content-Length: <%= viewtable.length %>
<% end %>
<% if viewtable.label ~= "" then %>
Content-Disposition: attachment; filename="<%= viewtable.label %>"
<% end %>
<% io.write("\n") %>
<%= viewtable.value %>