X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2FChangeLog;h=5186f0c04bd184b355c60abf9a5750d0da4f15f1;hp=7e5602242e85795883a617aa9f50c5a7a03b2770;hb=1cba1a7659719535800d4fd53d689c9e758babdc;hpb=2aa2a913c3d28247cc9ca426c810975316775888 diff --git a/src/ChangeLog b/src/ChangeLog index 7e560224..5186f0c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,121 @@ +2011-04-04 Giuseppe Scrivano + + * Makefile.am (LIBS): Remove @LIBSSL@ @W32LIBS@ + +2011-04-03 Giuseppe Scrivano + + * gnutls.c: Include . + (wgnutls_peek): Make the socket non blocking before attempt a read. + + * gnutls.c: Include . + (wgnutls_peek) [F_GETFL]: Use fcntl. + (wgnutls_peek) [! F_GETFL]: Use ioctl. + + +2011-03-31 Giuseppe Scrivano + + * recur.c (download_child_p): When --no-parent is used, check that the + ports are the same only in case the same protocol is used. + Reported by: Karl Berry + + * res.c (res_parse): Add new line to debug messages. + +2011-03-21 Giuseppe Scrivano + + * iri.h (parse_charset) [!ENABLE_IRI]: Use the parameter to avoid a + compiler warning. + + * iri.h: Declare `dummy_iri' as extern not static. + * main.c [!ENABLE_IRI]: Define `dummy_iri'. + (main) [!ENABLE_IRI]: Initialize `dummy_iri'. + +2011-03-11 Giuseppe Scrivano + + * ftp.c (getftp): Fix some memory leaks. + * ftp-ls.c (ftp_parse_winnt_ls): Likewise. + Reported by: Zhenbo Xu . + +2010-11-20 Filipe Brandenburger (tiny change) + + * http.c (gethttp): Repeat a POST request on a 307 response. + * retr.c (retrieve_url): Use NEWLOCATION_KEEP_POST. + * wget.h: Define NEWLOCATION_KEEP_POST. + +2011-03-02 Tomasz Buchert (tiny change) + + * http.c (ensure_extension): Do not adjust the extension if the file + ends in .htm. + +2011-02-22 Gilles Carry + + * main.c (prompt_for_password): Use stderr instead of stdout + to prompt password. This allows to use --output-document=- and + --ask-password simultaneously. Without this, redirecting stdout + makes password prompt invisible and mucks up payload such as in + this example: + wget --output-document=- --ask-password -user=foo \ + http://foo.com/tarball.tgz | tar zxf - + +2011-02-22 Steven Schubiger + + * http.c (gethttp, http_loop): Move duplicated code which is run + when an existing file is not to be clobbered to a function. + (get_file_flags): New static function. + +2010-12-10 Evgeniy Philippov (tiny change) + + * main.c (main): Initialize `total_downloaded_bytes'. + +2010-12-09 Giuseppe Scrivano + + * main.c (main): If --no-clobber and --convert-links are used at the + same time, use only the latter. + Reported by: Romain Vimont + +2010-12-07 Jessica McKellar (tiny change) + + * main.c: Make help message clearer. + +2010-12-02 Giuseppe Scrivano + + * build_info.c.in: Do not list md5. + +2010-12-01 Giuseppe Scrivano + + * cmpt.c: Include inconditionally. + * connect.c: Likewise. + * convert.c: Likewise. + * ftp-basic.c: Likewise. + * ftp-ls.c: Likewise. + * ftp.c: Likewise. + * gnutls.c: Likewise. + * http.c: Likewise. + * init.c: Likewise. + * log.c: Likewise. + * main.c: Likewise. + * openssl.c: Likewise. + * progress.c: Likewise. + * ptimer.c: Likewise. + * recur.c: Likewise. + * retr.c: Likewise. + * url.c: Likewise. + * utils.c: Likewise. + + + * retr.c (fd_read_body): Dinamically allocate `dlbuf'. + +2010-11-27 Reza Snowdon + + * init.c (initialize): If 'ok' is not zero; exit, as this + indicates there was a problem parsing 'SYSTEM_WGETRC'. + Fixes bug #20370. + +2010-11-22 Giuseppe Scrivano + + Revert last commit. + * ftp.c (getftp): When count > 0, don't append to the existing file. + * http.c (gethttp): Likewise. + 2010-11-21 Giuseppe Scrivano * ftp.c (getftp): If `count' is bigger than zero, try to resume the @@ -7,7 +125,7 @@ 2010-11-19 Giuseppe Scrivano - * fttp.c (getftp): Accept new argument `count'. When `count' is + * ftp.c (getftp): Accept new argument `count'. When `count' is bigger than zero, assume the file can be overwritten. (ftp_loop_internal): Pass new argument `count' to `getftp'.