2005-08-31 09:50:23 +00:00
|
|
|
<% request.setCharacterEncoding("UTF-8"); %>
|
2005-08-21 18:08:05 +00:00
|
|
|
<%
|
|
|
|
java.util.Map params = request.getParameterMap();
|
|
|
|
response.setContentType(net.i2p.syndie.web.ArchiveViewerBean.getAttachmentContentType(params));
|
|
|
|
int len = net.i2p.syndie.web.ArchiveViewerBean.getAttachmentContentLength(params);
|
|
|
|
if (len >= 0)
|
|
|
|
response.setContentLength(len);
|
|
|
|
net.i2p.syndie.web.ArchiveViewerBean.renderAttachment(params, response.getOutputStream());
|
|
|
|
%>
|