There is a problem with wget recursively retrieving pages over https. With debu\
g on you get the following.

Not following non-HTTP schemes.

A quick fix is supplied below. You may which to add a --follow-https option.

Also, when using a proxy with https wget requests GET https-url HTTP/1.0 when it 
should request CONNECT host HTTP/1.0. Unfortunately, I don't have patch at this time.

Jeff.

 diff -Nau wget-1.8/src/recur.c wget-1.8-patched/src/recur.c
--- wget-1.8/src/recur.c        Wed Dec  5 14:51:23 2001
+++ wget-1.8-patched/src/recur.c        Thu Aug  1 11:54:46 2002
@@ -429,7 +429,7 @@
      the list.  */

   /* 1. Schemes other than HTTP are normally not recursed into. */
-  if (u->scheme != SCHEME_HTTP
+  if (u->scheme != SCHEME_HTTP && u->scheme != SCHEME_HTTPS
       && !(u->scheme == SCHEME_FTP && opt.follow_ftp))
     {
       DEBUGP (("Not following non-HTTP schemes.\n"));



Reply via email to