summaryrefslogtreecommitdiffstats
path: root/share/extensions/text_replace.py
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2012-07-20 05:50:22 +0000
committerJazzyNico <nicoduf@yahoo.fr>2012-07-20 05:50:22 +0000
commit5f3448f352cfb7b77890a35e17cd19d0fcb72df7 (patch)
tree49adc84a93ea485c5cc3f9a7840bef2f8898cf0f /share/extensions/text_replace.py
parentFix for Bug #1022719 (Inkscape fails to open file from the web (via URL) on t... (diff)
downloadinkscape-5f3448f352cfb7b77890a35e17cd19d0fcb72df7.tar.gz
inkscape-5f3448f352cfb7b77890a35e17cd19d0fcb72df7.zip
Extensions. Removing the Replace Text extension (replaced with the new Find dialog).
(bzr r11557)
Diffstat (limited to 'share/extensions/text_replace.py')
-rwxr-xr-xshare/extensions/text_replace.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/share/extensions/text_replace.py b/share/extensions/text_replace.py
deleted file mode 100755
index b5d960430..000000000
--- a/share/extensions/text_replace.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env python
-import chardataeffect, inkex, string
-
-class C(chardataeffect.CharDataEffect):
- def __init__(self):
- chardataeffect.CharDataEffect.__init__(self)
- self.OptionParser.add_option("-f", "--from_text", action="store", type="string", dest="from_text", default="", help="Replace")
- self.OptionParser.add_option("-t", "--to_text", action="store", type="string", dest="to_text", default="", help="by")
-
- def process_chardata(self,text, line, par):
- fr = self.options.from_text.strip('"').replace('\$','$')
- to = self.options.to_text.strip('"').replace('\$','$')
-
- return (text.replace(unicode(fr,"utf-8"), unicode(to,"utf-8")))
-
-c = C()
-c.affect()