Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the WWW-Mechanize CPAN distribution.

Report information
The Basics
Id: 8048
Status: resolved
Priority: 0/
Queue: WWW-Mechanize

People
Owner: MARKSTOS [...] cpan.org
Requestors: dom [...] idealx.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Date: Tue, 19 Oct 2004 11:34:30 +0200
From: Dominique Quatravaux <dom [...] idealx.com>
To: bug-www-mechanize [...] rt.cpan.org
CC: www-mechanize-development [...] lists.sf.net
Subject: Re: [mech-dev]Taint bug fixes for 5.6.1
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Andy Lester wrote: | | | When you make patches, please send them to bug-www-mechanize at | rt.cpan.org. Will do. Speaking of which - Here comes another one for the newly-created upload.t (What about creating a t/test-lib.pl that every test script would reference?) Regards, - -- Dominique QUATRAVAUX Ingénieur senior 01 44 42 00 08 IDEALX -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBdN+lMJAKAU3mjcsRAtP5AJ4iemqmwjRrcTgwa+Rlr7I3ilhGAQCfUYzx HAZZuId6pEP+1FgNNdhxjmo= =0Kb1 -----END PGP SIGNATURE-----
diff -r -U3 www-mechanize.ORIG/t/upload.t www-mechanize/t/upload.t --- www-mechanize.ORIG/t/upload.t Tue Oct 19 02:18:40 2004 +++ www-mechanize/t/upload.t Tue Oct 19 11:28:41 2004 @@ -4,6 +4,7 @@ use Test::More tests => 6; use URI::file; +BEGIN { delete @ENV{ qw( http_proxy HTTP_PROXY PATH IFS CDPATH ENV BASH_ENV) }; } use_ok( 'WWW::Mechanize' ); my $mech = WWW::Mechanize->new( cookie_jar => undef );
From: dom [...] idealx.com
[dom@idealx.com - Tue Oct 19 05:54:53 2004]: Yet another taint-related patch - Hopefully the last one, all tests are now OK for me.
diff -U3 -r1.4 find_link-warnings.t --- t/find_link-warnings.t 27 Sep 2004 22:40:52 -0000 1.4 +++ t/find_link-warnings.t 21 Oct 2004 10:40:32 -0000 @@ -4,6 +4,7 @@ use strict; use Test::More; use URI::file; +BEGIN { delete @ENV{ qw( http_proxy HTTP_PROXY PATH IFS CDPATH ENV BASH_ENV) }; } BEGIN { eval "use Test::Warn";
[guest - Thu Oct 21 06:41:19 2004]: Show quoted text
> [dom@idealx.com - Tue Oct 19 05:54:53 2004]: > > Yet another taint-related patch - Hopefully the last one, all tests > are > now OK for me.
Applied. Thanks. Mark