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 ther

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 files

current wget crashes when using -c

2006-03-22 Thread Tobias Tiederle
Hi, current trunk build crashes when trying to continue a download. builds from tags WGET_1_10, WGET_1_10_1 and WGET_1_10_2 run correctly. Build environment: Windows XP Visual Studio 2005 Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.42 for 80x86 OpenSSL 0.9.8a Following out

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

Re: Get complete page?

2006-03-01 Thread Tobias Tiederle
Hi Juman, first execute this command: wget --help It is of utmost importance to read carefully the output of that command! Then you might try: wget --page-requisites --convert-links --span-hosts --html-extension --no-directories --execute=robots=off [URL] or wget -pkHEnd --execute=robots=off [URL

Re: How do I prevent wget from creating index.html?C=M;O=A ?

2005-11-07 Thread Tobias Tiederle
Evert Meulie schrieb: Hi! Thanks for the reply. Since I have no control over the server from which I'm pulling the mirror AND I do not want to live with these files ( 8-) ), I was wondering whether there's a way to exclude certain file names, so that I can exclude the index.html?* wildcard..

Re: How do I prevent wget from creating index.html?C=M;O=A ?

2005-11-07 Thread Tobias Tiederle
Evert Meulie schrieb: I'm using wget to mirror (part of) a site. This site contains a couple of directories which do not have a index.html in them, just a bunch of various files. When wget hits this dir, it creates: index.html index.html?C=M;O=A index.html?C=M;O=D index.html?C=N;O=A index.html?

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 1.

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, to

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