This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
tabellio.pfbviews/tabellio/pfbviews/document.py

12 lines
284 B
Python

from Products.Five import BrowserView
class View(BrowserView):
pass
class DocumentDownload(BrowserView):
def __call__(self):
self.request.response.setHeader('Content-type',
self.context.file.contentType)
return self.context.file.data