Mercurial > moin > 1.9
view MoinMoin/filter/application_vnd_sun_xml.py @ 5952:f6a74810da73
updated CHANGES
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Sun, 10 Mar 2013 15:28:04 +0100 |
parents | b2e96d4cac1c |
children |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - OpenOffice.org *.sx? Filter Depends on: nothing (only python with zlib) @copyright: 2006-2009 MoinMoin:ThomasWaldmann @license: GNU GPL, see COPYING for details. """ import re, zipfile from MoinMoin import log logging = log.getLogger(__name__) rx_stripxml = re.compile("<[^>]*?>", re.DOTALL|re.MULTILINE) def execute(indexobj, filename): try: zf = zipfile.ZipFile(filename, "r") data = zf.read("content.xml") zf.close() data = " ".join(rx_stripxml.sub(" ", data).split()) except (zipfile.BadZipfile, RuntimeError), err: logging.error("%s [%s]" % (str(err), filename)) data = "" try: data = data.decode('utf-8') except UnicodeDecodeError: # protected with password? no valid OpenOffice file? data = u'' return data