blob: 88713fd89bbe288804ce284427f63599aa3bbcd8 (
plain)
1
2
3
4
5
6
7
8
|
<% 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 %>
|