aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/uzbl/plugins/bind.py
diff options
context:
space:
mode:
authorGravatar Mason Larobina <mason.larobina@gmail.com>2009-12-24 00:27:19 +0800
committerGravatar Mason Larobina <mason.larobina@gmail.com>2009-12-24 00:27:19 +0800
commitf200c865fb8a5daae30ff9c070eb5c929c720a4b (patch)
treeb1a8b00bbd8a637a0e6874dc12c5a98bdb84548b /examples/data/uzbl/plugins/bind.py
parent09d59497d1c06f07b1915e34c0110401916231b9 (diff)
Moved expand function to external plugin to reduce code duplication.
Diffstat (limited to 'examples/data/uzbl/plugins/bind.py')
-rw-r--r--examples/data/uzbl/plugins/bind.py27
1 files changed, 2 insertions, 25 deletions
diff --git a/examples/data/uzbl/plugins/bind.py b/examples/data/uzbl/plugins/bind.py
index 668b595..9614df6 100644
--- a/examples/data/uzbl/plugins/bind.py
+++ b/examples/data/uzbl/plugins/bind.py
@@ -303,30 +303,6 @@ class Bind(object):
return self._repr_cache
-def expand(cmd, args):
- '''Replaces "%s %1 %2 %3..." with "<all args> <arg 0> <arg 1>...".'''
-
- # Direct string replace.
- if '%s' in cmd:
- cmd = cmd.replace('%s', ' '.join(map(unicode, args)))
-
- # Escaped and quoted string replace.
- if '%r' in cmd:
- joined = ('%r' % ' '.join(map(unicode, args)))[1:]
- for char in ['\\', '@']:
- joined = joined.replace(char, '\\'+char)
-
- cmd = cmd.replace('%r', joined)
-
- # Arg index string replace.
- for (index, arg) in enumerate(args):
- index += 1
- if '%%%d' % index in cmd:
- cmd = cmd.replace('%%%d' % index, unicode(arg))
-
- return cmd
-
-
def exec_bind(uzbl, bind, *args, **kargs):
'''Execute bind objects.'''
@@ -342,8 +318,9 @@ def exec_bind(uzbl, bind, *args, **kargs):
raise ArgumentError('cannot supply kargs for uzbl commands')
commands = []
+ cmd_expand = uzbl.cmd_expand
for cmd in bind.commands:
- cmd = expand(cmd, args)
+ cmd = cmd_expand(cmd, args)
uzbl.send(cmd)