wmf_output.py revision a4030d5ca449e7e384bc699cd249ee704faaeab0
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico#!/usr/bin/env python
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico"""
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicowmf_output.py
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoModule for running UniConverter wmf exporting commands in Inkscape extensions
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoCopyright (C) 2009 Nicolas Dufour (jazzynico)
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoThis program is free software; you can redistribute it and/or modify
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoit under the terms of the GNU General Public License as published by
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicothe Free Software Foundation; either version 2 of the License, or
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico(at your option) any later version.
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoThis program is distributed in the hope that it will be useful,
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicobut WITHOUT ANY WARRANTY; without even the implied warranty of
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoGNU General Public License for more details.
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoYou should have received a copy of the GNU General Public License
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoalong with this program; if not, write to the Free Software
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico"""
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicoimport sys
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicofrom uniconv_output import run, get_command
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicocmd = get_command()
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNicorun((cmd + ' "%s" ') % sys.argv[1], "UniConvertor", ".wmf")
c978f17cd54294ccf4a3714c0bbda5924ecd6958JazzyNico
a4030d5ca449e7e384bc699cd249ee704faaeab0Chris Morgan# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99