Added url decoding of special commands.


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1623 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 9142c42d
...@@ -1174,8 +1174,8 @@ def GetSpecialCommandProcessor(value): ...@@ -1174,8 +1174,8 @@ def GetSpecialCommandProcessor(value):
return ExpandCommand return ExpandCommand
else: else:
pos = value.find('@') pos = value.find('@')
prefix = value[:pos].split() prefix = urllib.unquote(value[:pos]).split()
suffix = value[pos+1:].split() suffix = urllib.unquote(value[pos+1:]).split()
def ExpandCommand(args): def ExpandCommand(args):
return prefix + args + suffix return prefix + args + suffix
return ExpandCommand return ExpandCommand
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment