# # Copyright (c) 2012 Helmut Merz helmutm@cy55.de # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # """ View definitions for generation of documents. """ import os import quopri from zope.app.pagetemplate import ViewPageTemplateFile from zope.cachedescriptors.property import Lazy from zope.publisher.browser import BrowserPage word_template = ViewPageTemplateFile('word_page.pt') body_template = ViewPageTemplateFile('word_body.pt') class Base(BrowserPage): #encoding = 'UTF-8' encoding = 'ISO8859-15' def __call__(self, *args, **kw): content = self.index(*args, **kw).encode(self.encoding) self.setHeader(content) return content class WordDocument(Base): isToplevel = True index = word_template bodyTemplate = body_template showLinks = False encoding = 'Windows-1252' def embed(self, *args, **kw): self.encoding = 'Windows-1252' bodyMarker = 'lxdoc_body' content = self.bodyTemplate(*args, **kw).encode(self.encoding) baseDocument = self.readDocTemplate() document = baseDocument.replace(bodyMarker, self.quopri(content)) self.setHeader(document) return document def quopri(self, s): return s.replace('="', '=3D"') def readDocTemplate(self): path = os.path.join(os.path.dirname(__file__), 'document.mht') f = open(path, 'r') doc = f.read() f.close() return doc def setHeader(self, data, filename='document'): fn = '%s.doc' % filename response = self.request.response response.setHeader('Cache-Control', '') response.setHeader('Pragma', '') response.setHeader('Content-Type', 'application/msword;charset=%s' % self.encoding) response.setHeader('Content-Length', len(data)) response.setHeader('Content-Disposition', 'filename="%s"' % fn) mswordXml = """ Print 90 """ @Lazy def css(self): return self.loadCSS() def loadCSS(self, filename='word.css', path=None): if path is None: path = os.path.dirname(__file__) fn = os.path.join(path, filename) f = open(fn, 'r') css = f.read() f.close() return css