summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5c106ec)
raw | patch | inline | side by side (parent: 5c106ec)
author | mfloryan <mfloryan@users.sourceforge.net> | |
Wed, 11 Jun 2008 12:31:05 +0000 (12:31 +0000) | ||
committer | mfloryan <mfloryan@users.sourceforge.net> | |
Wed, 11 Jun 2008 12:31:05 +0000 (12:31 +0000) |
share/extensions/export_gimp_palette.py | patch | blob | history | |
share/extensions/inkex.py | patch | blob | history | |
share/extensions/pathmodifier.py | patch | blob | history |
index 1248a56bbed868c72d154351f6a914ba112339d3..51b9a950d4d0b45d183701d5d7223042b7d51a3a 100644 (file)
try:
from xml.dom.minidom import parse
except:
- sys.exit(_('The export_gpl.py module requires PyXML. Please download the latest version from <http://pyxml.sourceforge.net/>.'))
+ sys.exit(_('The export_gpl.py module requires PyXML. Please download the latest version from http://pyxml.sourceforge.net/.'))
colortags=(u'fill',u'stroke',u'stop-color',u'flood-color',u'lighting-color')
colors={}
index b4872368e02489027cfaf277dfe0db600c9d5a5e..c190fdde031918d62c33f6e55efcc6f792aed1da 100755 (executable)
try:
from lxml import etree
except:
- sys.exit(_('The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from <http://cheeseshop.python.org/pypi/lxml/>, or install it through your package manager by a command like: sudo apt-get install python-lxml'))
+ sys.exit(_('The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from http://cheeseshop.python.org/pypi/lxml/, or install it through your package manager by a command like: sudo apt-get install python-lxml'))
def debug(what):
sys.stderr.write(str(what) + "\n")
index e30ec51977d9840eb6bd08225296604553d45bd4..128c1b7540b79f87d99896527faf1d1378ee32bd 100644 (file)
newNode = self.unlinkClone(node,doReplace)
return self.objectToPath(newNode,doReplace)
else:
- inkex.errormsg(_("Please first convert objects to paths! (Got <%s>.)") % node.tag)
+ inkex.errormsg(_("Please first convert objects to paths! (Got [%s].)") % node.tag)
return None
def objectsToPaths(self,aList,doReplace=True):