Mercurial > moin > 1.9
view MoinMoin/filter/application_msword.py @ 1918:bb2e053067fb
fixing copyright headers: remove umlauts (encoding troubles), make epydoc compatible, reformat
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Tue, 27 Mar 2007 21:07:33 +0200 |
parents | c907c2942372 |
children | 01f05e74aa9c |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - msword filter Depends on: antiword command from antiword package @copyright: 2006 MoinMoin:ThomasWaldmann @license: GNU GPL, see COPYING for details. """ from MoinMoin.filter import execfilter def execute(indexobj, filename): return execfilter("HOME=/tmp antiword '%s'", filename) # no HOME makes antiword complain