From: aurium Date: Mon, 1 Dec 2008 22:35:10 +0000 (+0000) Subject: providing compatibility for uniconversor name variations X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3d999680aadffef1b523bc86ecce9cee06146a6d;p=inkscape.git providing compatibility for uniconversor name variations --- diff --git a/share/extensions/cdr_input.inx b/share/extensions/cdr_input.inx index 7a25ffcf4..781789719 100644 --- a/share/extensions/cdr_input.inx +++ b/share/extensions/cdr_input.inx @@ -2,7 +2,7 @@ <_name>Corel DRAW Input org.inkscape.input.cdr - uniconv + uniconv-ext.py .cdr diff --git a/share/extensions/uniconv-ext.py b/share/extensions/uniconv-ext.py index 4dba05eea..961498330 100644 --- a/share/extensions/uniconv-ext.py +++ b/share/extensions/uniconv-ext.py @@ -23,8 +23,28 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA import sys from run_command import run - -run('uniconv "%s" "%%s"' % sys.argv[1].replace("%","%%"), "UniConvertor") - +from subprocess import Popen, PIPE + +#sys.stderr.write('aaaaaaa') + +try: + p = Popen('uniconv', shell=True, stdout=PIPE, stderr=PIPE).wait() + if p!=127 : cmd = 'uniconv' + p = Popen('uniconvertor', shell=True, stdout=PIPE, stderr=PIPE).wait() + if p!=127 : cmd = 'uniconvertor' +except ImportError: + try: + from popen2 import Popen3 + p = Popen3('uniconv', True).wait() + if p!=32512 : cmd = 'uniconv' + p = Popen3('uniconvertor', True).wait() + if p!=32512 : cmd = 'uniconvertor' + except ImportError: + sys.stderr.write('You need to install the UniConvertor software.\n'+\ + 'For Linux: install the packge python-uniconvertor.\n'+\ + 'For Windows: download it from\n'+\ + 'http://sk1project.org/modules.php?name=Products&product=uniconvertor\n') + +run((cmd+' "%s" "%%s"') % sys.argv[1].replace("%","%%"), "UniConvertor") # vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 encoding=utf-8 textwidth=99