X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2FChangeLog;h=c2e2220c9ffd0055e394d8286af288ab9271e5b8;hb=8e742d05cfba0f99d9958a0c10f5a884477e158a;hp=e7b34f520d31d456c2e893e1255717ff11ade57a;hpb=822a32d813757ecf5cd0691bdfe22f8ba5d72336;p=wget diff --git a/src/ChangeLog b/src/ChangeLog index e7b34f52..c2e2220c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,170 @@ +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 + download, not restart it. + * http.c (gethttp): Likewise. + Suggested by: Evgeny Kapun . + +2010-11-19 Giuseppe Scrivano + + * 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'. + + * http.c (gethttp): Accept new argument `count'. When `count' is + bigger than zero, assume the file can be overwritten. + (http_loop): Pass new argument `count' to `gethttp'. + Reported by: Evgeny Kapun . + +2010-08-08 Reza Snowdon + + * main.c (main): inserted 'defaults'. + Added additional 'getopt_long' while loop to search and apply a + user specified config file before any other options. + New variables 'retconf', 'use_userconfig', + 'confval', 'userrc_ret', 'config_opt'. + * init.c: Include stdbool.h. + (commands): Added config details. + (defaults): Removed static. + (wgetrc): Removed static. + (initialize): Removed 'defaults ()', + changed 'int ok' to 'bool ok'. + * options.h: New variable 'choose_config'. + * init.h (defaults): exported function. + (run_wgetrc): exported function. + +2010-10-24 Jessica McKellar (tiny change) + + * main.c (main): Print the total download time as part of the + summary for downloads using the recursive or page requisites + options. Fixes bug #21359. + +2010-10-24 Giuseppe Scrivano + + * gnutls.c (wgnutls_peek): Do not return an error when + `gnutls_record_recv' fails but some data is already available. + +2010-10-23 Giuseppe Scrivano + + * Makefile.am (LIBS): Remove @LIBGNUTLS@ and use @W32LIBS@ as last + component. + + * gnutls.c (wgnutls_peek): Block until data is available. + +2010-10-21 Giuseppe Scrivano + + * retr.c (retrieve_url): Do not register HTML files twice. + Reported by: Manfred Koizar . + +2010-10-18 Manfred Koizar (tiny change) + + * html-url.c (tag_handle_link): Do not assume external links type + to be always "text/html". + +2010-10-16 Giuseppe Scrivano + + * connect.c (socket_ip_address): Initialize `sockaddr' to zero. + * ftp-basic.c (ftp_epsv): Remove dead assignment to `s'. + * ftp-ls.c (ftp_parse_vms_ls): Remove dead assignment to `len'. + * http.c (skip_short_body): Remove dead assignment to `ret'. + * init.c (wgetrc_user_file_name): Remove dead assignment to `home'. + * main.c (main): Silent warning reported by clang. + (http_loop): Silent warning reported by clang. + * retr.c (retrieve_url): Likewise. + * url.c (init_seps): Remove dead assignment to `p'. + +2010-10-11 Giuseppe Scrivano + + * ftp.c (getftp): Fix indentation. + +2010-10-11 Steven Schubiger + + * ftp.c (getftp): Initialize `targ'. + +2010-10-08 Ivanov Anton (tiny change) + + * src/html-url.c (check_style_attr): Skip quotes when they are present. + +2010-10-06 Giuseppe Scrivano + + * main.c (main): Remove unused variable `status'. + +2010-09-25 Merinov Nikolay + + * init.c: Add "unlink" command into command list. + * main.c: Add "unlink" option into option_data list. + * options.h: Adding unlink field into struct options. + * wget.h: Addind UNLINKERR error into uerr_t enum. + * exits.c (get_status_for_err): define status for UNLINKERR. + * ftp.c (getftp): unlink file if exists, instead clobbering. + (ftp_loop_internal): processing UNLINKERR. + * http.c (gethttp): unlink file if exists, instead clobbering. + (http_loop): processing UNLINKERR. + +2010-09-24 Dennis, CHENG Renquan + + Fix problem when content-disposition is used with recursive downloading. + * url.h (url_file_name): Add a new argument `replaced_filename'. + * url.c (url_file_name): Likewise. + * http.c (parse_content_disposition): Do not add a prefix to the return + value. + (test_parse_content_disposition): Adjust tests. + (gethttp): Pass additional parameter to `url_file_name'. + (http_loop): Likewise. + * ftp.c (ftp_loop_internal, ftp_get_listing, ftp_retrieve_list) + (ftp_loop): Likewise. + +2010-09-14 Giuseppe Scrivano + + * convert.c (local_quote_string): Accept new parameter `no_html_quote'. + Inhibit HTML quoting when `no_html_quote'. + (convert_links): Disable HTML quoting in CSS files. + Reported by: Manuel Reinhardt . + 2010-09-12 Giuseppe Scrivano * main.c (print_help): Align --trust-server-names help text with