Re: wget 1.10.x fixed recursive ftp download over proxy

2006-01-11 Thread CHEN Peng
= retrieve_url (*t, filename, redirected_URL, NULL, dt); Tony -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of CHEN Peng Sent: Tuesday, January 10, 2006 5:06 PM To: Tony Lewis Cc: [EMAIL PROTECTED] Subject: Re: wget 1.10.x fixed recursive ftp download over

Re: wget 1.10.x fixed recursive ftp download over proxy

2006-01-11 Thread Mauro Tortonesi
CHEN Peng wrote: Corret. The revised version should work well. Are you going to merge this to the new wget releases? if it works (sorry, i am working on my ph.d. thesis and haven't been able to test it yet), i am definitely going to merge your code in the next release of wget. your patch

Re: wget 1.10.x fixed recursive ftp download over proxy

2006-01-10 Thread CHEN Peng
Your simplified code may not work. The intention of patching is to make wget invoke retrieve_tree funtion when it IS FTP and uses proxy, while your code works when it is NOT FTP and uses proxy. On 1/10/06, Tony Lewis [EMAIL PROTECTED] wrote: I believe the following simplified code would have

RE: wget 1.10.x fixed recursive ftp download over proxy

2006-01-09 Thread Tony Lewis
I believe the following simplified code would have the same effect: if ((opt.recursive || opt.page_requisites || opt.use_proxy) url_scheme (*t) != SCHEME_FTP) status = retrieve_tree (*t);else status = retrieve_url (*t, filename, redirected_URL, NULL, dt); Tony From: [EMAIL PROTECTED]