/inkscape/share/extensions/ |
H A D | run_command.py | 48 from subprocess import Popen, PIPE namespace 49 p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | text_extract.py | 33 from subprocess import Popen, PIPE namespace 71 p = Popen('inkscape --query-all "%s"' % (file), shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | text_merge.py | 33 from subprocess import Popen, PIPE namespace 79 p = Popen('inkscape --query-all "%s"' % (file), shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | dimension.py | 38 from subprocess import Popen, PIPE namespace 119 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query,id,file), shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | restack.py | 30 from subprocess import Popen, PIPE namespace 99 p = Popen('inkscape --query-all "%s"' % (file), shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | summersnight.py | 32 from subprocess import Popen, PIPE namespace 76 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query,id,file), shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | uniconv-ext.py | 34 from subprocess import Popen, PIPE namespace 35 p = Popen('uniconvertor', shell=True, stdout=PIPE, stderr=PIPE).wait() 39 p = Popen('uniconv', shell=True, stdout=PIPE, stderr=PIPE).wait()
|
H A D | uniconv_output.py | 49 from subprocess import Popen, PIPE namespace 50 p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE) 100 from subprocess import Popen, PIPE namespace 101 p = Popen('uniconvertor', shell=True, stdout=PIPE, stderr=PIPE).wait() 105 p = Popen('uniconv', shell=True, stdout=PIPE, stderr=PIPE).wait()
|
H A D | printing_marks.py | 27 from subprocess import Popen, PIPE, STDOUT namespace 202 float(Popen(args, stdout=PIPE, stderr=PIPE).communicate()[0])
|
H A D | gimp_xcf.py | 24 from subprocess import Popen, PIPE namespace 164 p = Popen(command, shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE) 246 p = Popen(command, shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
|
H A D | generate_voronoi.py | 33 from subprocess import Popen, PIPE namespace 101 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query, self.options.ids[0], self.args[-1]), shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | guillotine.py | 45 from subprocess import Popen, PIPE namespace 220 p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | synfig_prepare.py | 44 from subprocess import Popen, PIPE namespace 133 p = Popen('inkscape "%s" %s' % (filename, cmd), shell=True, stdout=PIPE, stderr=PIPE)
|
H A D | perspective.py | 26 from subprocess import Popen, PIPE namespace 81 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query,id,file), shell=True, stdout=PIPE, stderr=PIPE)
|