/inkscape/packaging/wix/ |
H A D | files.py | 30 wxs.write(indent(level)+ "<Component Id='component" + _id + "' Guid='" + str(uuid.uuid4()) + "' DiskId='1' Win64='$(var.Win64)'>\n") 34 wxs.write(indent(level + 1)+ "<File Id='file" + _id + "' Name='" + file + "' DiskId='1' Source='" + file_key + "' KeyPath='yes' />\n") 35 wxs.write(indent(level)+ "</Component>\n") 43 wxs.write(indent(level) + "<Directory Id='" + directory_ids[directory_key] + "' Name='" + dir + "'>\n") 45 wxs.write(indent(level) + "</Directory>\n") 55 wxs.write(indent(level) + "<ComponentGroup Id='" + name + "'>\n") 57 wxs.write(indent(level + 1) + "<ComponentRef Id='" + file_ids[component] + "' />\n") 58 wxs.write(indent(level) + "</ComponentGroup>\n") 63 wxs.write("<!-- do not edit, this file is created by files.py tool any changes will be lost -->\n") 64 wxs.write("<Wi [all...] |
H A D | version.py | 60 wxi.write("<?xml version='1.0' encoding='utf-8'?>\n")
61 wxi.write("<!-- do not edit, this file is created by version.py tool any changes will be lost -->\n")
62 wxi.write("<Include>\n")
63 wxi.write("<?define ProductVersion='" + version + "' ?>\n")
64 wxi.write("<?define FullProductName='Inkscape " + versionstr + "' ?>\n")
66 wxi.write("<?define ProgramFilesFolder='ProgramFiles64Folder' ?>\n")
67 wxi.write("<?define Win64='yes' ?>\n")
68 wxi.write("<?define InstallerVersion='200' ?>\n")
69 wxi.write("<?define Platform='x64' ?>\n")
71 wxi.write("< [all...] |
H A D | next_uuid.py | 9 out.write(str(uuid.uuid4()) + '\n')
|
/inkscape/share/patterns/ |
H A D | i18n.py | 10 sys.stdout.write("char * stringlst = [") 16 sys.stdout.write("N_(\"" + stockid + "\"),") 18 sys.stdout.write("];")
|
/inkscape/share/symbols/ |
H A D | i18n.py | 6 sys.stdout.write("char * stringlst = [") 14 sys.stdout.write("\n/* Symbols: " + filename + " */ NC_(\"Symbol\", \"" + symbol.firstChild.nodeValue + "\"),") 16 sys.stdout.write("];")
|
/inkscape/share/templates/ |
H A D | i18n.py | 8 sys.stdout.write("char * stringlst = [") 18 sys.stdout.write("N_(\"" + lines[0].firstChild.nodeValue + "\"),") 20 sys.stdout.write("];")
|
/inkscape/share/palettes/ |
H A D | i18n.py | 7 sys.stdout.write("char * stringlst = [") 19 sys.stdout.write('\n/* Palette: ' + filename + ' */') 22 sys.stdout.write("/* xgettext:no-c-format */") 23 sys.stdout.write("NC_(\"Palette\", \"" + match.group(1) + "\"),") 25 sys.stdout.write("];")
|
/inkscape/share/extensions/Barcode/ |
H A D | __init__.py | 15 # along with this program; if not, write to the Free Software 50 return sys.stderr.write("No barcode format given!\n") 57 sys.stderr.write("Invalid type of barcode: %s\n" % code) 59 sys.stderr.write("Barcode module is missing barcode class: %s\n" % code)
|
/inkscape/share/filters/ |
H A D | i18n.py | 10 sys.stdout.write("char * stringlst = [") 24 sys.stdout.write(comment + "\n" + label + ",\n" + menu + ",\n" + desc + ",\n") 26 sys.stdout.write("];")
|
/inkscape/src/ |
H A D | sp-desc.cpp | 24 Inkscape::XML::Node* SPDesc::write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags) { function in class:SPDesc 29 SPObject::write(doc, repr, flags);
|
H A D | sp-title.cpp | 21 Inkscape::XML::Node* SPTitle::write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) { function in class:SPTitle 28 SPObject::write(xml_doc, repr, flags);
|
H A D | sp-desc.h | 26 virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
|
H A D | sp-style-elem.h | 18 virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
|
H A D | sp-title.h | 25 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
|
H A D | sp-path.h | 38 void set_original_curve (SPCurve *curve, unsigned int owner, bool write); 55 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags); 62 virtual void update_patheffect(bool write);
|
H A D | sp-defs.h | 30 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
|
H A D | sp-polygon.h | 27 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
|
H A D | sp-polyline.h | 16 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
|
H A D | sp-script.h | 33 virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
|
H A D | sp-mesh-row.h | 31 virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
|
/inkscape/share/extensions/ink2canvas/ |
H A D | canvas.py | 15 along with this program; if not, write to the Free Software 34 def write(self, text): member in class:Canvas 65 self.write("ctx.beginPath();") 69 self.write("var %s = \ 74 self.write("var %s = ctx.createRadialGradient\ 78 self.write("%s.addColorStop(%f, %s);" % (href, pos, color)) 101 self.write("ctx.globalAlpha = %.1f;" % float(value)) 110 self.write("ctx.fillStyle = %s;" % fill) 117 self.write("ctx.strokeStyle = %s;" % self.getColor(value, alpha)) 120 self.write("ct [all...] |
/inkscape/cxxtest/ |
H A D | cxxtestgen.py | 19 --part Don\'t write CxxTest globals 63 sys.stderr.write( usageString() ) 72 sys.stderr.write( '\n' ) 73 sys.stderr.write( problem ) 74 sys.stderr.write( '\n\n' ) 144 sys.stdout.write( "This is CxxTest version 3.10.1.\n" ) 248 sys.stdout.write( "%s:%s: Warning: Inline test suites are deprecated.\n" % (fileName, lineNo) ) 378 output.write( line ) 384 output.write( line ) 389 '''Create output file and write heade [all...] |
/inkscape/src/debug/ |
H A D | log-display-config.cpp | 49 Logger::write<Monitor>(screen, i); 64 Logger::write<Screen>(screen); 69 Logger::write<Screen>(screen); 78 Logger::write<Display>();
|
/inkscape/share/extensions/ |
H A D | eqtexsvg.py | 26 along with this program; if not, write to the Free Software 43 tex.write("""%% processed with eqtexsvg.py 49 tex.write(add_header) 50 tex.write("""\\thispagestyle{empty} 53 tex.write(equation) 54 tex.write("\n\\end{document}\n") 139 # temporary files to cwd and needs write permissions 151 sys.stderr.write(line + '\n')
|
H A D | svg_and_media_zip_output.py | 28 along with this program; if not, write to the Free Software 93 sys.stdout.write(out.read()) 122 z.write(absref, image_path.encode(self.encoding)) 126 z.write(os.path.join(self.tmp_dir, absref), image_path.encode(self.encoding)) 140 self.document.write(stream) 142 z.write(dst_file,docstripped.encode(self.encoding)+'.svg') 193 stream.write(_("Didn't find any fonts in this document/selection.")) 196 stream.write(_("Found the following font only: %s") % findings[0]) 198 stream.write(_("Found the following fonts:\n%s") % '\n'.join(findings)) 200 z.write(dst_fil [all...] |