[Bug-wget] [PATCH] Test-cookies.px

2012-11-09 Thread Tim Ruehsen
To check wget for NOT sending a request header, I patched HTTPServer.pm. Here is an example taken from the patched Test-cookies.px (see below): ... request_headers => { "!Cookie" => qr|foo=bar|, }, ... That means: return an error, if there is a Cookie request header tha

[Bug-wget] [PATCH] Test-cookies.px

2012-11-09 Thread Tim Ruehsen
To check wget for NOT sending a request header, I patched HTTPServer.pm. Here is an example taken from the patched Test-cookies.px (see below): ... request_headers => { "!Cookie" => qr|foo=bar|, }, ... That means: return an error, if there is a Cookie request header tha

Re: [Bug-wget] [PATCH] Test-cookies.px

2012-11-11 Thread Giuseppe Scrivano
Tim Ruehsen writes: > To check wget for NOT sending a request header, I patched HTTPServer.pm. > Here is an example taken from the patched Test-cookies.px (see below): > ... > request_headers => { > "!Cookie" => qr|foo=bar|, > }, > ... > > That means: return an error,

Re: [Bug-wget] [PATCH] Test-cookies.px

2012-11-12 Thread Tim Ruehsen
Am Sunday 11 November 2012 schrieb Giuseppe Scrivano: > Tim Ruehsen writes: > > To check wget for NOT sending a request header, I patched HTTPServer.pm. > > Here is an example taken from the patched Test-cookies.px (see below): > > ... > > > > request_headers => { > > > >

Re: [Bug-wget] [PATCH] Test-cookies.px

2012-11-12 Thread Giuseppe Scrivano
Tim Ruehsen writes: > Sorry, here it comes. thanks, I have squashed the patches so it is a complete one with a changelog included. Giuseppe