Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape quotes and backslashes HTTP::Request::Common [rt.cpan.org #51492] #66

Open
oalders opened this issue Mar 31, 2017 · 0 comments
Open

Comments

@oalders
Copy link
Member

oalders commented Mar 31, 2017

Migrated from rt.cpan.org#51492 (status was 'open')

Requestors:

From jschulz.cpan@bloonix.de on 2009-11-13 09:16:08:

Hi,

on line 126 of HTTP::Request::Common:

$k =~ s/([\\\"])/\\$1/g;  # escape quotes and backslashes

for some reasons I want to disable escaping of quotes.

Is that possible? Maybe with a global variable like

$HTTP::Request::Common::ESCAPEQUOTES=0;

Cheers,
Jonny

From reed@reedloden.com on 2009-12-01 08:35:51:

From my duplicate ticket #52312, here's a reason why people would want
to not have backslashes escaped:

I'm using LWP::UserAgent to send requests to a custom server-side
service. LWP::UserAgent uses HTTP::Request internally, which uses
HTTP::Request::Common to process requests. HTTP::Request::Common has a
line of code that makes sending plain '\n' in requests just not possible:
$k =~ s/([\\\"])/\\$1/g; # escape quotes and backslashes

I want to be able to send "\n" in a form value, but I can't because of
the above line. This means that even if I have a parameter "paths" with
"/img/blah.png\n/img/blah2.png", HTTP::Request::Common happily converts
the '\n' to '\\n', changing "paths" to be "/img/blah.png\\n/img/blah2.png".

I think I should be able to send "\n" in a form value.

I can write a small test script if it's needed...

From jschulz.cpan@bloonix.de on 2009-12-01 09:47:23:

Okay, then some words about my concern.

My reason is that I send a post request to a HTTP-Server (ticket 
system). The data within the post request are used to generate a email. 
If the text contains quotation marks

Foo bar "foo baz" foo bar.

then the mail text contains backslashes

Foo bar \"foo baz\" foo bar.

for this reason I want to disable quoting.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant