Re: SSL option documentation

2005-05-13 Thread Doug Kaufman
On Thu, 12 May 2005, Hrvoje Niksic wrote: > Doug Kaufman <[EMAIL PROTECTED]> writes: > > >> That sounds like a good plan. I'll try to make such a change. If > >> we do call SSL_CTX_set_default_paths, should we document SSL_CERT_* > >> env variables

Re: questions about wget

2005-10-03 Thread Doug Kaufman
bution from my web page ("http://www.rahul.net/dkaufman/index.html";). I have version 1.10 compiled, but it isn't nicely packaged for distribution yet. If you write to me, I can make the 1.10 binary, documentation, and patch to the source code available to you.

RE: wget question (connect multiple times)

2006-10-17 Thread Doug Kaufman
On Tue, 17 Oct 2006, Tony Lewis wrote: > A) This is the list for reporting bugs. Questions should go to > wget@sunsite.dk I had always understood that "bug-wget" was just an alias for the regular wget mailing list. Has this changed recently? Doug -- Doug

Re: Weird behavour of wget on Win32 while outputting file to stdout

2006-10-17 Thread Doug Kaufman
S patch I submitted to wget-patches on April 6, 2005, for more things to consider regarding DOS and Windows forbidden names when downloading. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Release: GNU Wget 1.11.4

2008-07-01 Thread Doug Kaufman
iption for this address, mail: <[EMAIL PROTECTED]> So he could send a mesage to "[EMAIL PROTECTED]". Similarly with the confirmation mail. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Help asked for wget

2001-02-02 Thread Doug Kaufman
unix paths are expected and no special port has been done for DOS notation. Remember that because of this DJGPP feature, you can generally not run DJGPP programs in directories actually called "/dev". Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Yet another site wget won't get :-(

2001-02-04 Thread Doug Kaufman
On Sun, 4 Feb 2001, Stan Brown wrote: > Why won;t wget -r get http://www,geekbab.com/kim ? I don't see any registered domain name for geekbab.com. Are you sure this is correct? Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

DOS binary of wget 1.6 available

2001-02-04 Thread Doug Kaufman
NU archives. I'll try to compile the 1.7 development version when I get a chance, but thought I would get the stable version port available now. "http://www.rahul.net/dkaufman/index.html" Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Design issue

2001-02-09 Thread Doug Kaufman
uot; is also an illegal filename character in DOS. See the list of illegal characters in the patch to 1.6 for DOS that I submitted (called "illegal_chars_dos" and "illegal_chars_w95"). Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Design issue

2001-02-09 Thread Doug Kaufman
never been the full URL. Perhaps I am too used to DOS and Windows ports of unix programs, but the mentioned alternatives to the colon in the filename all looked reasonable and intuitive to me. I didn't perceive any obfuscation. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: wget for Windows 3.1?

2001-03-08 Thread Doug Kaufman
ry for DJGPP available on my web page should work, but it will not use any Winsock that you have. You will have to connect via a separate connection and packet driver. Let me know if you have problems. "http://www.rahul.net/dkaufman/index.html" Doug __ Doug Ka

Re: invalid char in filenames

2001-05-06 Thread Doug Kaufman
"[EMAIL PROTECTED]" to get a copy. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: print in screen (-v) and -o option

2001-05-07 Thread Doug Kaufman
"ftp://ftp.franken.de/pub/win32/develop/gnuwin32/mingw32/porters/Mikey/sh-utils112-ming.tar.bz2"; If you don't have bzip2 to decompress the archive, a Windows port is available at: "http://sources.redhat.com/bzip2/"; Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: WGET for OS/2 and Proxy-Server

2001-05-16 Thread Doug Kaufman
ht consider something like: if ((proxy = getenv("http_proxy")) == NULL) { proxy = getenv("HTTP_PROXY"); } The problem of *_proxy variables being lowercase has been discussed several times on the lynx-dev mailing list. I suspect that it will crop up in several applications an

Re: Q: (problem) wget on dos/win: question marks in url

2001-07-02 Thread Doug Kaufman
.7 so I > don't know whether the translation has been reinstated. Perhaps you mean the Windows version of wget. The DOS versions that I ported both handle this OK, as far as I know. The DOS and Windows ports are quite separate. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: typo in wget 1.7 when checking timestamps in mirror mode

2001-07-03 Thread Doug Kaufman
a native speaker of American English. I am not sure what would be correct in other flavors of English. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Q: (problem) wget on dos/win: question marks in url

2001-08-07 Thread Doug Kaufman
_ much. > maybe this should be considered for the next release? See the DOS port from my web site. The patch is included in the package. "http://www.rahul.net/dkaufman/index.html"; Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: WGET 1.6 (DOS)

2001-08-17 Thread Doug Kaufman
you need a URL for the program. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Unsubscribing (Was Re: Compilation problems)

2001-11-04 Thread Doug Kaufman
t;;. To unsubscribe from the wget mailing list, send email to "[EMAIL PROTECTED]". Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: arguably a bug

2002-05-22 Thread Doug Kaufman
c" when doing a port to DOS. Make sure to have the correct permissions for your .netrc file. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: win32: how to send wget output to console and a log-file?

2002-05-24 Thread Doug Kaufman
> tee.exe wget.log' the 'wget.log' file remains empty... What is wrong? > (WinXP Pro, GNU Wget 1.8.1+cvs). Wget sends to stderr by default. Try "wget -o - |tee wget.log". This should send output to stdout, which tee can then handle. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Wget 1.8.2-pre3 ready for testing

2002-05-27 Thread Doug Kaufman
eed to rename such files. */ + extern char *basename (const char *); + char *base; + struct stat st_buf; + char fname[PATH_MAX]; + + strcpy (fname, file_name); + base = strrchr(fname, '/') + 1; + if (base == NULL) {base = fname;} + if ((stat (base, &st_buf) == 0 && S_ISCHR (st_buf.st_mode)) || (tolower(base[0]) == +'p' && tolower(base[1]) == 'r' && tolower(base[2]) == 'n' && base[3] == '\0')) +{ + size_t blen = strlen (base); + + /* Prepend a '_'. */ + memmove (base + 1, base, blen + 1); + base[0] = '_'; + strcpy (file_name, fname); +} +return file_name; +} + + +#endif /* __CYGWIN__ */ + #undef ONE_DIGIT #undef ONE_DIGIT_ADVANCE --- wget-1.8.2-pre3/src/utils.h.origFri May 17 20:05:24 2002 +++ wget-1.8.2-pre3/src/utils.h Sun May 26 22:27:48 2002 @@ -114,4 +114,9 @@ int determine_screen_width PARAMS ((void)); int random_number PARAMS ((int)); +#if defined(__DJGPP__) || defined(__CYGWIN__) +char *rename_if_dos_device_name PARAMS ((char *)); +char *msdosify PARAMS ((char *)); +#endif /* __DJGPP__ || __CYGWIN__ */ + #endif /* UTILS_H */ --- wget-1.8.2-pre3/src/wget.h.orig Fri May 17 20:14:50 2002 +++ wget-1.8.2-pre3/src/wget.h Sun May 26 22:00:48 2002 @@ -54,10 +54,12 @@ /* `gettext (FOO)' is long to write, so we use `_(FOO)'. If NLS is unavailable, _(STRING) simply returns STRING. */ #ifdef HAVE_NLS -# define _(string) gettext (string) # ifdef HAVE_LIBINTL_H # include # endif /* HAVE_LIBINTL_H */ +#ifndef _ +# define _(string) gettext (string) +#endif /* _ */ #else /* not HAVE_NLS */ # define _(string) string #endif /* not HAVE_NLS */ __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Wget 1.8.2-pre3 ready for testing

2002-06-02 Thread Doug Kaufman
On Tue, 28 May 2002, Hrvoje Niksic wrote: > Doug Kaufman <[EMAIL PROTECTED]> writes: > > > > This doesn't work "out of the box" for DJGPP or for Cygwin. Appended > > is a patch to fix most of the problems. > > Thanks for the comments and the pa

Re: The exception voids GPL

2002-06-12 Thread Doug Kaufman
the GNUTLS web site. Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Development of Wget

2002-10-14 Thread Doug Kaufman
You just don't have the correct URL. You can view the latest developments via anonymous CVS. See the main wget web page for instructions: "http://wget.sunsite.dk/"; Doug __ Doug Kaufman Internet: [EMAIL PROTECTED]

Re: image tags not read

2003-01-04 Thread Doug Kaufman
e wvWare home page at "http://www.wvware.com/";. I understand that wv2 is now out in a preliminary version, but I haven't looked at it yet. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: unknown authorisation method

2003-06-21 Thread Doug Kaufman
-Length: 24 Content-Type: text/html Cache-control: private Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Capture HTML Stream

2003-07-09 Thread Doug Kaufman
1.8.2 port of wget to DOS with DJGPP. 'wget -O - "http://whatever.com/url";' works just fine. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Win32 binary without FTP vulnerability

2003-08-16 Thread Doug Kaufman
he latest Windows binaries can be found on the wget home page: "http://wget.sunsite.dk/";. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Win32 binary without FTP vulnerability

2003-08-16 Thread Doug Kaufman
version. It is available there. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: non-recursion

2003-09-18 Thread Doug Kaufman
ng since the beginnings of the > web. The lynx browser is configurable as to how it parses comments. It can change on the fly from "minimal comments" to "historical comments" to "valid comments". Which browsers act in non-compliant fashion all the time?

Re: Read error (Success) in headers using wget and ssl

2003-09-19 Thread Doug Kaufman
9:90:a6:3d:40:23:7a:11:97: 60:2f:65:44:b8:33:9d:54:56:58:8f:2b:fb:c3:1c:28:7f:15: ef:aa:fa:33:ba:12:1f:d8:82:89:8d:f0:a0:f7:a5:e1:b7:05: 40:91:b3:71:a8:b1:cf:e3:2a:7b:05:89:f2:99:19:e7:cb Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: The patch list

2003-11-04 Thread Doug Kaufman
e problems on a DOS system. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: Makefile hassles

2005-03-02 Thread Doug Kaufman
e "install" for instructions. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: converting links

2005-04-06 Thread Doug Kaufman
the links to local, but you should be able to write a script using sed, awk, or perl to do what you want. To see what wget does, look in the file "convert.c" in the wget source. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

wget 1.10alpha1 compiles under DJGPP

2005-04-06 Thread Doug Kaufman
Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: wget 1.10 alpha 1

2005-04-12 Thread Doug Kaufman
t;. I usually just run autoheader and autoconf directly. You need to have Autoconf and m4 installed. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: IPv6 on Windows

2005-04-14 Thread Doug Kaufman
patch for mingw is combined with my DOS patch. I'll try to separate the mingw parts out, so that mingw changes can be considered separately from the DOS changes. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: wget 1.10 alpha 2

2005-04-21 Thread Doug Kaufman
tributed as source code. Or see "consoletelnet", distributed both as source and binary. Doug -- Doug Kaufman Internet: [EMAIL PROTECTED]

Re: SSL option documentation

2005-04-24 Thread Doug Kaufman
On Sun, 24 Apr 2005, Hrvoje Niksic wrote: > Doug Kaufman <[EMAIL PROTECTED]> writes: > > > I just grep'd again through the openssl distribution, and there is > > no mention of the environment variables in any of the documentation, > > just in the code

Re: SSL option documentation

2005-04-24 Thread Doug Kaufman
On Sun, 24 Apr 2005, Hrvoje Niksic wrote: > Doug Kaufman <[EMAIL PROTECTED]> writes: > > I am certainly not an encryption specialist, but I would favor > > different defaults for this. I would think that verifying the cert > > for a "secure" site should be