Mercurial > pidgin.yaz
view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 30626:fcc36743697c
jabber: Fix a crash in the BoB code when receiving from Jabbim.
Actually, the real problem here is that Jabbim is leaving off a REQUIRED
attribute (see http://xmpp.org/extensions/xep-0231.html#format), but
we still shouldn't crash :). Closes #12185
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Thu, 17 Jun 2010 01:51:58 +0000 |
parents | 209da0d52824 |
children |
line wrap: on
line source
#!/bin/bash for f in `ls *.svg` do echo "Processing $f file..." inkscape --vacuum-defs $f done