Re: Batch files in DOS

2006-06-05 Thread Tobias Tiederle
Hi, [EMAIL PROTECTED] wrote: I'm trying to mirror about 100 servers (small fanfic sites) using wget --recursive --level=inf -Dblah.com, blah.com,blah.com some_address However, when I run the batch file, it stops reading after a while; apparently my command has too many characters. Is there

Re: Windows Title Bar

2006-04-18 Thread Tobias Tiederle
Hi, I'm using start [1]. That way I can specify the title, have it running in the background and adjust priority and stuff. If you want to use it in a batch file you can specify /wait. [Derek already got this, forgot to cc the list] TT [1] builtin command. Useable from cmd.exe or batch

Re: Download all the necessary files and linked images

2006-03-09 Thread Tobias Tiederle
Hi, Jean-Marc MOLINA schrieb: I have an other opinion about that limitation. Could it be considered as a bug ? From the Types of Files section of the manual we can read : « Note that these two options do not affect the downloading of html files; Wget must load all the htmls to know where to

Re: regex in wget, it is dificult to implement?

2005-05-27 Thread Tobias Tiederle
Oliver Schulze L. schrieb: Hi, Would it be too dificult to implement this? I'm thinking of passing an argument to a regex function that returns true or false, and then deside to download the file. Any points to where to look in the code? Yes, I know where to look at, I did a regex patch for

Re: NTLM authentication in CVS

2005-04-07 Thread Tobias Tiederle
Herold Heiko schrieb: 3) As expected msvc still throws compiler error on http.c and retr.c, (bad) workaround: disable optimization. Anybody with a cl.exe newer than Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86 can comment if this is needed with newer versions, too ?

wget regex patch

2005-04-06 Thread Tobias Tiederle
Hello, after reading so much about regex support for wget (espacially the lack of it) and experiencing myself how annoying it can be if you have downloaded a hundred /thumbs/ directories, I tried to implement regex support myself. I used pcre library from http://www.pcre.org which was pretty easy