Re: [Bug-wget] Feature request: option to not download rejected files

2018-07-03 Thread Tim Rühsen
On 07/03/2018 12:48 PM, Zoe Blade wrote: >> In Wget2 there is an extra option for this, --filter-urls. > > Thank you Tim, this sounds like exactly what I was after! (It's especially > important when you have wget logged in as a user, to be able to tell it not > to go to the logout page.)

Re: [Bug-wget] Feature request: option to not download rejected files

2018-07-03 Thread Zoe Blade
> In Wget2 there is an extra option for this, --filter-urls. Thank you Tim, this sounds like exactly what I was after! (It's especially important when you have wget logged in as a user, to be able to tell it not to go to the logout page.) Though if that feature could be ported to the original

Re: [Bug-wget] Feature request: option to not download rejected files

2018-06-29 Thread Tim Rühsen
On 06/29/2018 03:20 PM, Zoe Blade wrote: > For anyone else who needs to do this, I adapted Sergey Svishchev's 1.8-era > patch for 19.1 (one of the few versions I managed to get to compile in OS X; > I'm on a Mac, and not the best programmer): > > recur.c:578 > - if (blacklist_contains

Re: [Bug-wget] Feature request: option to not download rejected files

2018-06-29 Thread Zoe Blade
For anyone else who needs to do this, I adapted Sergey Svishchev's 1.8-era patch for 19.1 (one of the few versions I managed to get to compile in OS X; I'm on a Mac, and not the best programmer): recur.c:578 - if (blacklist_contains (blacklist, url)) + if (blacklist_contains (blacklist, url)

Re: [Bug-wget] Feature request: option to not download rejected files

2018-06-29 Thread Zoe Blade
> ...it would be more useful to avoid downloading rejected files altogether... Hmm, after a bit more digging, I see this isn't a new request: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=217243 Is anyone working on this?