Closed GoogleCodeExporter closed 9 years ago
Issue 4 has been merged into this issue.
Original comment by pedlag...@gmail.com
on 14 Aug 2010 at 3:04
Aware of this problem. Pending of revision and fix.
Original comment by pedlag...@gmail.com
on 6 Sep 2010 at 1:41
I just encountered this issue when posting base64 data to a website. Attached
is a patch that should temporarily resolve the issue. All it does is url encode
the '+' into '%2b' right after the post data is stripped of newlines. I was
looking into what causes this issue and it seems more related to the global
Firefox loadURI() function or the nsIMIMEInputStream setData() method, than to
the HackBar. This at least solves the issue for now until a better solution is
created.
Original comment by JosiahBr...@gmail.com
on 15 Feb 2011 at 1:38
Attachments:
The regular expression is overkill for replacing the '+', sorry. Patch has been
modified.
Original comment by JosiahBr...@gmail.com
on 15 Feb 2011 at 1:43
Attachments:
Hi Josiah,
sorry for the late reply... I'm currently without internet connection so no to
much time to check and update the addon but I'll do my best as soon as I get my
broadband connection sorted at home ;)
Thanks!
Original comment by pedlag...@gmail.com
on 21 Feb 2011 at 9:00
Well it appears regex was the way to go because I didn't notice that replace
only replaced the first occurrence. Patch has been modified again using a
gloabl regex.
Original comment by JosiahBr...@gmail.com
on 24 Feb 2011 at 6:07
Attachments:
Patched applied and functionality is working. It'll be included in the next
release.
Original comment by pedlag...@gmail.com
on 14 Mar 2011 at 12:01
I did a workaround myself, and added this after line 195 in main.js
postString = postString.replace( new RegExp(/\+/g), " " );
This way, when you load a URL with post parameters using + as spaces, you don't
send them back as %2b.
Original comment by ppurvia...@gmail.com
on 16 Aug 2011 at 10:32
Original issue reported on code.google.com by
raphael....@gmail.com
on 12 Aug 2010 at 12:18