X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2FChangeLog;h=9e74e474683e9f5bfd2ae9bda109f2876bf98cd3;hp=b6fe05951f3a9c29116789e7a72972e1de5180c1;hb=38a7829dcb4eb5dba28dbf0f05c6a80fea9217f8;hpb=a25607f788fe8b31f954ea8174f92b77e2dd8a59 diff --git a/src/ChangeLog b/src/ChangeLog index b6fe0595..f07ddc5f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,1016 @@ +2014-05-03 Tim Ruehsen + + * ftp-ls.c (ftp_parse_vms_ls): Explicitly typecast strlen's output + * ftp.c (getftp): Prevent declaration of shadow variable + * html-url.c (tag_handle_base, tag_handle_form, tag_handle_link, + tag_handle_meta): Compiler directive to ignore unused variable + * html-url.h (cleanup_html_url): Add function declaration + * http-ntlm.c (ntlm_input, mkhash): Use ssize_t to declare variables that store + sizes. + (mkhash): Explicitly typecast output of c_toupper + (short_pair): Add typecasts to prevent compiler warnings + (ntlm-output): Fix datatypes of various variables + * http.c (gethttp): Prevent declaration of shadow variable err + (gethttp): remove unreachable code + (test_parse_content_disposition): Fix variable declarations and use + countof() macro + * init.c (run_command): Prevent declaration of ghost variable + (cmd_string, cmd_string_uppercase, cmd_file, cnd_vector, + cmd_directory_vector, cmd_spec_dirstruct, cmd_spec_header, + cmd_spec_warc_header, cmd_spec_htmlify, cmd_spec_mirror, + cmd_spec_prefer_family, cmd_spec_progress, cmd_spec_recursive, + cmd_spec_regex_type, cmd_spec_restrict_file_names, cmd_spec_report_speed, + cmd_spec_timeout, cmd_spec_useragent, cmd_spec_verbose): Add compiler + directive to ignore unused variable + (cleanup_html_url, spider_cleanup): Remove declarations + (test_commands_sorted): Cleanup code + (test_cmd_spec_restrict_file_names): Use correct data types + * iri.c (remote_to_utf8): Use more verbose variable name + * main.c (init_switches): Prevent declaration of ghost variable + * netrc.c (netrc_cleanup): Create cleanup function on common naming scheme + * netrc.h (netrc_cleanup): Declare function + * openssl.c (openssl_write, openssl_errstr): Compiler directive to ignore + unused parameter + (openssl_errstr): Explcicitly typecasr output of ASN1_STRING_length + * options.h (struct options): Declare includes and excludes as const char ** + * progress.c (progress_interactive_p, progress_handle_sigwinch): Compiler + directive to ignore unused parameter + * res.c (test_is_robots_txt_url): Fix datatypes + * retr.c (line_terminator): Add compiler directive for ignoring unused + paramter. Remove unused variable. + * spider.h (spider_cleanup): Declare function + * test,c (main): declare unused paramter + * test.h (test_*): Declare functions + * url.c (url_string): Explicit typecast of password strings + (run_test): Declare *test, struct tests and *expected_result as const + (test_path_simplify, test_append_uri_pathl, test_are_urls_equal): Fix datatypes + * utls.c (fork_to_background): Be more verbose when errors occur + (dir_matches_p, test_dir_matches_p): Declare char * as const as required + (base64_encode, base64_decode, get_max_length): Set correct return type + (match_pcre_regex, match_posix_regex): Use correct datatypes and typecasts + (test_subdir_p): static const struct + * utils.h (base64_encode, base64_decode, get_max_length): Fix return type + * warc.c (ward_write_cdx_record): unused parameter + (struct hash_table *warc_cdx_dedup_table): Declare as static + +2014-05-01 Benjamin Goose + + * http.c: Fix small memory leak + +2014-05-01 Darshit Shah (tiny change) + + * progress.c (dot_finish): Do not print extra newlines when not in verbose + mode. (Purely aesthetic change) + (get_eta): Add extra space when eta is printed. + (create_image): Remove erroneous space from being added to progress bar when + filename > MAX_FILENAME_LEN + (create_image): Remove extra space before printed download speeds + Make the filename a fixed width column. + +2014-04-19 Darshit Shah + + * log.h (log_options): Add new logging options, LOG_PROGRESS. All progress + bar related output should use LOG_PROGRESS. + * log.c (CHECK_VERBOSE): Implement LOG_PROGRESS output + * progress.c (dot_create, print_row_stats, dot_update, dot_finish, + bar_finish, display_image): Output progress information through LOG_PROGRESS + (progress_implementation, dot_create, bar_create, progress_create): The + progress bar create functions accept an extra paramter for the filename of the + local file + (bar_progress): Add new variable to store filename of currently downloading + file + (bar_finish): Aesthetic change. Print two newlines if in verbose mode, else + only one. + (MACRO): Define new macro, MIN + (create_image): Implement displaying filename in progress bar output + Filename tick implementation copied from Giuseppe's patch on parallel-wget + * progress.h (progress_create): Accept another parameter for filename + * http.c (gethttp): Remove unnecessary conditional + (read_response_body): Send local filename to fd_read_body so that it can be + printed on the progress bar + * main.c (option_data): Add new switch, --show-progress + (main): If in verbose output, show progress bar by default + (main): Set progress implemetation when displaying progress bar + (no_prefix): Increase buffer size to 2048 to prevent overflows + * init.c (commands): Add new command, showprogress + (defaults): By default initialize show_progress to false + * options.h (options): Add new option, show_progress + * retr.c (fd_read_body): Accept new parameter for filename of currently + downlaoding file + (fd_read_body): Create and update progress bar when opt.show_progress is set + (fd_read_body): Display progress information in Windows console titlebars + * retr.h (fd_read_body): Update declaration + * ftp.c (getftp): Send filename of the local file so that it can be printed + with the progress bar. + +2013-11-02 Giuseppe Scrivano + + * progress.c (struct progress_implementation): New method draw. + (bar_update): Split into... + (bar_draw): ...this new function. + (dot_update): Split into... + (dot_draw): New function. + (progress_update): Also invoke draw on `current_impl'. + +2014-04-22 Tim Ruehsen + + * http.c (gethttp): Fix 204 response handling + +2014-03-26 Darshit Shah + + * ftp.c (getftp): Rearrange parameters to fix compiler warning + * utils.c (get_dir_matches_p): Do not pass a const char** to a function that + expects char** + +2014-03-25 Daniel Stenberg + + * url.c (shorten_length): Remove unused function. + +2014-03-19 Yousong Zhou + + * init.c, main.c, options.h: Add option --start-pos for specifying + start position of a download. + * http.c: Utilize opt.start_pos for HTTP download. + * ftp.c: Utilize opt.start_pos for FTP retrieval. + +2014-03-04 Giuseppe Scrivano + + * http.c (modify_param_value, extract_param): Aesthetic change. + +2014-02-14 Vladimír Pýcha (tiny change) + + * http.c (parse_content_disposition, extract_param) + (append_value_to_filename, digest_authentication_encode): URL-decode the + filename parameter of Content-Disposition HTTP header if it is encoded. This + is related to --content-disposition. + New parameter of extract_param(), "is_url_encoded". + Add argument NULL to the call of extract_param() in + digest_authentication_encode(). + * http.h: Add the new parameter to the declaration of extract_param(). + * cookies.c (parse_set_cookie, test_cookies): Add argument NULL to the calls + of extract_param(). + * url.c (url_unescape): Remove "static" modifier. + * url.h: Add declaration of url_unescape(). + +2014-02-06 Giuseppe Scrivano + + * main.c (print_version): Move copyright year out of the localized + string and update it. + +2014-01-29 Darshit Shah + + * main.c: Remove pre-processor variable WHEN_DEBUG + (option_data[]): Do not fail on --debug even if debug support is not + compiled in. + (main): Explicitly set opt.debug to false in case debugging support was not + compiled. + * init.c (commands[]): Support --debug wven when support is not compiled in. + * options.h: Same + +2014-01-17 Darshit Shah + + * init.c (commands[]): Add --no-config. + * options.h: Same. + * main.c (option_data[]): Same. + (print_help): Same. + (main): If --no-config is set, then do not read the wgetrc files. + +2014-01-05 Håkon Vågsether (tiny change) + + * http.c (http_loop): Fix checking the URL length when filename is + specified. + +2013-12-29 Giuseppe Scrivano + + * init.c (home_dir): Remove useless 'if'. + * warc.c (warc_start_new_file): Likewise. + (warc_process_cdx_line): Likewise. + (warc_write_response_record): Likewise. + +2013-12-26 Tim Ruehsen + + * gnutls.c (ssl_connect_wget): Fix connect timeout failure + +2013-11-02 Giuseppe Scrivano + + * http.c (gethttp): Increase max header value length to 512. + +2013-01-30 Pavel Mateja (tiny change) + + * http.c (gethttp): Specify "Host" for CONNECT method. + +2013-10-30 Giuseppe Scrivano + + * http.c (skip_short_body): Remove assert which is always true. + Reported by: David Binderman + +2013-10-17 Andrea Urbani + + * ftp.c (getftp): force "LIST" or "LIST -a" + according to the remote system type. If the remote + system is not known, it tries, only the first time, + "LIST -a", after "LIST" and decides which one to use. + For more information look for "__LIST_A_EXPLANATION__" + * ftp.h (enum ustype): New ustype enum. + * ftp.h (ftp_syst): New enum ustype *unix_type parameter. + * ftp.h (ftp_list): Removed enum stype rs parameter, added. + bool avoid_list_a, bool avoid_list, bool *list_a_used + parameters. + * ftp.h (wget_ftp_fstatus): New AVOID_LIST_A, AVOID_LIST, + LIST_AFTER_LIST_A_CHECK_DONE values. + * ftp-basic.c (ftp_list): it handles the new avoid_list_a, + avoid_list and list_a_used parameters. + * ftp.h (ftp_syst): it stores information about the "215 UNIX" + systems into the new unix_type parameter. + +2013-10-26 Bykov Aleksey + + * utils.c (match_tail): Fix cookies reject + + * ftp-ls.c (ftp_parse_unix_ls): Fix parsing month name in uppercase + +2013-09-09 Tim Ruehsen + + * gnutls.c (ssl_connect_wget): changed checking of option "PFS" + to be better prepared for some kinds of backports. + Reported by: Daniel Kahn Gillmor + +2013-10-10 Giuseppe Scrivano + + * url.c (url_parse): Try to convert UTF-8 URLs to IDN. + * html-url.c (append_url): Parse URLs specifying an IRI structure. + +2013-09-13 Tim Ruehsen + + * recur.c (download_child_p): fix compile error when + configured using --without-ssl. + +2013-09-07 Tim Ruehsen + + * gnutls.c (ssl_connect_wget): use gnutls_check_version() + to check if option "PFS" is available + Reported by: Daniel Kahn Gillmor + +2013-09-03 Tim Ruehsen + + * main.c: Add new value 'PFS' to --secure-protocol to + enforce the so-called Perfect Forward Security. + * init.c (cmd_spec_secure_protocol): added secure_protocol_pfs + * openssl.c, gnutls.c, options.h: likewise + +2013-08-22 Tim Ruehsen + + * main.c: Add new option --https-only. + * options.h: Likewise. + * recur.c (download_child_p): add check for HTTPS. + +2013-08-09 Tim Ruehsen + + * gnutls.c (ssl_init): Prevent CA files from being loaded twice + if possible. + * gnutls.c (ssl_check_certificate): Added some error messages + * gnutls.c: Fixed some compiler warnings + +2013-08-08 Will Dietz (tiny change): + + * main.c (format_and_print_line): Wrap correctly long tokens. + +2013-07-16 Darshit Shah + + * wget.h (err_t): Added new errors, ATTRMISSING and UNKNOWNATTR to + handle missing attributes and Unknown attribute values respectively in + HTTP Headers. + * exits.c (get_status_for_err): ATTRMISSING is a Protocol Error while + UNKNOWNATTR is a general error, presumably because of a feature that + is not yet implemented. + * http.c (gethttp): Call create_authorization_line () separately. In + case the auth_err flag has been set with an error, handle it and exit. + * http.c (create_authorization_line): Pass a pointer, auth_err to set + the flag for different kinds of errors encountered. + * http.c (http_loop): Handle the errors raised by the authentication + handlers. + * http.c (digest_authentication_encode): Pass pointer auth_err to set + the error flags. + Set qop to NULL in case the value of the qop / algorithm attribute is + unknown to Wget. Set an appropriate error too. + +2013-07-13 Tim Ruehsen + + * http.c (digest_authentication_encode): Fix a crash when the algorithm + is not specified in the server response. Free dynamic memory used by + the function when the function exits. + * http-ntlm.c [HAVE_NETTLE]: Include and . + (setup_des_key) [HAVE_NETTLE]: New function to deal with + libnettle. + (calc_resp) [HAVE_NETTLE]: Add support for libnettle. + (mkhash) [HAVE_NETTLE]: Likewise. + Reported by: Tim Ruehsen . + +2013-07-13 Steven M. Schweda + + * warc.c (warc_tempfile): Fix a portability issue on VMS. + +2013-07-10 Giuseppe Scrivano + + * http.c (read_response_body) [ALLOW_CLOBBER]: Move definition to.. + * options.h (struct options): Make `backups' an int. + * url.h [ALLOW_CLOBBER]: .. Here. Do not clobber when backups are used. + * url.c (url_file_name): Use the ALLOW_CLOBBER macro instead of + repeating the code. + +2013-07-08 Steven M. Schweda + + * retr.c (rotate_backups): Support for VMS files. + +2013-07-12 Giuseppe Scrivano + + * http.c (digest_authentication_encode): Set default value of + `algorithm' to "MD5". Check if `qop' is not-NULL before access it. + +2013-07-11 Karsten Hopp + + * openssl.c (struct openssl_read_args, struct scwt_context): New struct. + (openssl_read, ssl_connect_with_timeout_callback): New function. + (ssl_connect_wget): respect connect timeout. + +2013-07-11 Tim Ruehsen + + * gnutls.c (ssl_connect_wget): respect connect timeout. + +2013-07-11 Tomas Hozza + + * ftp.c (ftp_loop): Use ftp_retrieve_glob() also in case + --preserve-permissions was specified. + +2013-03-20 Tomas Hozza + + * http.c (gethttp): Set "sock" to -1 if it's not and we have no + persistent connection + +2013-04-26 Tomas Hozza (tiny change) + + * log.c (redirect_output): Use DEFAULT_LOGFILE in diagnostic message + when `logfile' is NULL. + * utils.c (unique_create): Ensure `logfile' has always a value. + +2013-06-26 Darshit Shah + + * http.c (gethttp): Reverse change by commit 90896 that prevented + downloading response body data to non-GET Request methods. + +2013-06-19 Ciprian Vieru (tiny change) + + * html-url.c: Define TAG_TD, TAG_TH, TAG_VIDEO, TAG_AUDIO, TAG_SOURCE. + (tag_url_attributes, known_tags): Likewise. + +2013-06-22 Ángel González + + * init.c (cmd_string_uppercase): Rewrite function. + +2013-06-19 Tim Ruehsen + + * connect.c (socket_ip_address): zero out ip address structure to + avoid access to uninitialized values by inet_ntop(). + * ftp.c (ftp_loop_internal): fix segfault caused by warc_tmp NULL pointer. + +2013-05-21 Ray Satiro + + * url.c (url_file_name): Use MAX_PATH in Windows. + +2013-06-13 Darshit Shah + + * http.c (gethttp): Follow RFC 2616 and httpbis specifications when + handling redirections. Do not suspend the method on 301/302 redirects. + (gethttp): If method if not GET, we do not intend to download + anything. + * main.c (main): Set spider mode when opt.method is HEAD. This will + prevent Wget from downloading any file. + * retr.c (SUSPEND_METHOD): Rename macro SUSPEND_POST_DATA to + SUSPEND_METHOD to more accurately reflect its use. Similarly rename + related variables. + +2013-05-14 Bykov Aleksey + + * warc.c (warc_tempfile): For fix "Could not open temporary WARC manifest + file." issue in Win system force to use `mkostemp(filename, O_TEMPORARY)' + instead of `mkstemp(filename)'. Thank to Angel Gonzalez for help. + +2013-05-14 Tim Ruehsen + + * cookies.c (cookie_jar_load): Replaced read_whole_file() by getline(). + * init.c (run_wgetrc): Likewise. + * netrc.c (parse_netrc): Likewise. + * utils.c: Likewise. + * ftp.c (getftp): Likewise. + * ftp-ls.c (ftp_parse_unix_ls, ftp_parse_winnt_ls, ftp_parse_vms_ls): Likewise. + * ftp-ls.c (clean_line): Accept the string length as parameter. + * ftp-ls.c: Replaced indent tabs by spaces. + * ftp.c: Likewise. + * utils.c: Removed read_whole_file() definition. + * netrc.c: Removed read_whole_file() definition for STANDALONE. + * utils.h: Removed read_whole_file() declaration. + +2013-05-09 Tim Ruehsen + + * utils.c (acceptable): use standard string functions instead of + self-written code. + (match_tail): Likewise. + (suffix): Likewise. + (has_wildcards_p): Likewise. + (test_subdir_p): Fix some warnings. + (test_dir_matches_p): Likewise. + +2013-05-05 mancha (tiny change) + + * gnutls.c (ssl_connect_wget): Don't abort on non-fatal alerts + received during handshake. For example, when connecting to servers + using TSL-SNI that send warning-level unrecognized_name alerts. + +2013-05-04 Darshit Shah + + * init.c (cmd_string_uppercase): Fix issue that cased invalid headers + when converting to uppercase. + +2013-05-01 Gijs van Tulder + + * retr.c (retrieve_url): New variable `saved_method'. + (SUSPEND_POST_DATA): Save the method to `saved_method'. + (RESTORE_POST_DATA): Restore the method from `saved_method'. + +2013-05-01 Giuseppe Scrivano + + * init.c: Declare `cmd_string_uppercase'. + (commands): Now `method' uses cmd_string_uppercase. + (cmd_string_uppercase): New method + * http.c (gethttp): Do not transform opt.method to uppercase. + Reported by: Stefano Lattarini + +2013-04-24 Darshit Shah + + * http.c (gethttp): Remove check for opt.post_data and + opt.post_file_name. + * main.c (main): Change location in code where --post-data and + --post-file options are converted to --body-data --body-file. + +2013-04-21 Gijs van Tulder + + * http.c: Copy opt.body_data to the WARC file, instead of + opt.post_data (the old option). + +2013-04-12 Gijs van Tulder + + * warc.c: Generate unique UUIDs for the manifest and the record + holding the command-line arguments. + Write the manifest to a "metadata" record to follow the WARC + implementation guidelines. + * warc.h: Declare new function warc_write_metadata_record. + +2013-03-15 Darshit Shah + + * http.c (post_file): Rename function to body_file_send to more + accurately reflect its use. + * http.c (gethttp): Add support for --method, --body-data and + --body-file + * init.c (commands): Same. + * options.h (options): Same. + * main.c (option_data): Same. + * main.c (print_help): Add --method command. + * main.c (main): Make old --post-{data,file} commands aliases to + --method. + Add sanity checks for --method, --body-data and --body-file. + * retr.c (SUSPEND_POST_DATA): Edit Macro Definition to use body_data. + * retr.c (RESTORE_POST_DATA): Same. + +2013-03-31 Gijs van Tulder + + * warc.c: Correctly write the field length in the skip length field + of .warc.gz files. (Following the GZIP spec in RFC 1952.) + +2013-03-12 Darshit Shah + + * http.c (gethttp): Make wget return FILEBADFILE error and abort if + post-file does not exist. + + * http.c (http_loop): Handle FILEBADFILE as a valid err. + + * exits.c (get_status_for_err): Mark FILEBADFILE as an IO error. + +2013-02-15 Darshit Shah + + * cookies.c (cookie_handle_set_cookie): Set cookie->discard_requested + to true on domain mismatch. + +2012-12-20 Tim Ruehsen + + * gnutls.c (ssl_connect_wget): added +VERS-SSL3.0 to fix + --secure-protocol=SSLv2/SSLv3. + +2012-12-09 Giuseppe Scrivano + + * main.c (main): Keep looking for "config" until there are + arguments to parse. + Reported by: Adrien Dumont + + * test.c: Include "wget.h". + +2012-12-08 Michael Stapelberg (tiny change) + + * retr.c (retrieve_url): Set iri->orig_url to NULL after it is + freed. + +2012-11-26 Giuseppe Scrivano + + * wget.h (MAX_INT_TO_STRING_LEN): Define macro. + * warc.c (warc_write_block_from_file): Use `MAX_INT_TO_STRING_LEN' + to find the buffer size. + (warc_write_cdx_record): Likewise. + +2012-09-03 Tim Ruehsen + + * http.c (digest_authentication_encode): Add support for RFC 2617 + MD5-sess authentication algorithm. + Feature request and testing by: Avinash + +2012-11-14 Ángel González + + * warc.c (warc_sha1_stream_with_payload): Fix compilation under + gcc -std=c89. + +2012-11-24 Gijs van Tulder + + * warc.c (warc_write_cdx_record): Use `number_to_string' to + convert the offset to a string. + +2012-11-24 Giuseppe Scrivano + + * warc.c (warc_write_block_from_file): Use `number_to_string' to + convert the content-length to a string. + +2012-11-15 Giuseppe Scrivano + + * retr.c (write_data): Fix comment. + +2012-11-13 Giuseppe Scrivano + + * retr.c (fd_read_body): Correctly check the return code from + write_data. + Reported by: Torsten Scheck + +2012-08-29 Rohit Mathulla (tiny change) + + * html-url.c (get_urls_file): Convert shorthand URLs. + +2012-10-07 Ray Satiro + + * url.c: Change the functions of a growable string object to null + terminate the string. + * url.c (append_null): New function to null terminate a growable + string object. + * url.c (shorten_length): New function to shorten the length of a + growable string object. + +2012-10-03 Merinov Nikolay + + * ftp.c (ftp_loop_internal): Ignore --no-clobber option when + receiving directory listing. + +2012-10-07 Tim Ruehsen + Giuseppe Scrivano + + * utils.c (get_max_length): If `pathconf' is not available + fallback to PATH_MAX. + +2012-10-06 Giuseppe Scrivano + + * http.c (http_loop): Send a HEAD request when -c and + --content-disposition are used together. + +2012-09-29 Merinov Nikolay + + * ftp-ls.c (ftp_parse_winnt_ls): Support filename extracting with + new listing format. + +2012-09-29 Tim Ruehsen + + * url.h (CHOMP_BUFFER): Add definition. + * url.c (url_file_name): New local variables `fname_len_check' and + `max_length'. Check that the length of the file name is acceptable. + * utils.h (get_max_length): Declare function. + * utils.c (get_max_length): New function. + +2012-09-28 Steven Schubiger + + * src/recur.c (retrieve_tree): Combine duplicated code. + +2012-09-02 Nguyễn Thái Ngọc Duy (tiny change) + + * src/main.c (main): mark more strings for translation. + * src/mswindows.c (fork_to_background): Likewise. + * src/recur.c (download_child_p): Likewise. + +2012-08-28 Tim Ruehsen + + * gnutls.c (ssl_check_certificate): deinit gnutls_x509_crt_t. + * gnutls.c (ssl_init): don't error if CA directory is empty. + +2012-07-07 Giuseppe Scrivano + + * html-url.c (cleanup_html_url): Remove "static" modifier. + * init.c (cleanup_html_url): Likewise. + Reported by: Mike Frysinger . + +2012-08-25 Hrvoje Niksic + + * warc.c (warc_find_duplicate_cdx_record): Use hash_table_get + instead of hash_table_get_pair. + +2012-08-21 (tiny change) + + * connect.c (connect_to_ip) [ENABLE_IPV6]: Attempt to use IPv6. + * http.c (gethttp): Likewise. + +2012-07-03 Steven Schubiger + + * init.c: Include warc.h for warc_close in cleanup function. + +2012-07-08 Steven Schubiger + + * exits.h: Fix comment. + * exits.c: Likewise. + +2012-07-07 Tim Ruehsen + + (digest_authentication_encode): Add support for RFC 2617 Digest + Access Authentication. + +2012-07-07 Giuseppe Scrivano + + * http.c (http_loop): Fix log message. + * main.c (main): Likewise. + Reported by: Petr Pisar + +2012-06-17 Giuseppe Scrivano + + * wget.h: Define `CLOSEFAILED'. + * init.c: Include "exits.h". + (cleanup): Check `fclose' failure. + * exits.c (get_status_for_err): Handle `CLOSEFAILED'. + +2012-06-16 Giuseppe Scrivano + + * main.c (main): Move some cleanup related function to... + * init.c (cleanup): ...here. + + * main.c: Do not include "stdout.h". + (main): Do not register `close_stdout' at exit. + Reported by: Micah Cowan . + +2012-06-09 Giuseppe Scrivano + + * main.c (print_help): Move --report-speed under the section + "Logging and input file". + +2012-06-06 Giuseppe Scrivano + + * main.c (print_help): Rename --bits to --report-bps. + (cmdline_options): Likewise. + * init.c (commands): Rename --report-bps to --report-speed. + (cmd_spec_report_speed): New function. + + * options.h (struct options): Rename `bits_fmt' to `report_bps'. + * main.c (print_help): Rename --bits to --report-bps. + (cmdline_options): Likewise. + * init.c (commands): Likewise + + * progress.c (create_image): Adjust caller. + * retr.c (retr_rate): Likewise. + * utils.c (convert_to_bits): Likewise. + +2012-06-04 Tim Ruehsen + + * main.c (main): Check for filename != NULL. + * warc.c (warc_process_cdx_line): Fix memory leak. + * utils.c (match_posix_regex, compile_posix_regex): Remove dead + assignment. + * openssl.c (ssl_init): Fix old-style function definition. + +2012-06-02 Giuseppe Scrivano + + * connect.c: Include and . + +2012-05-30 Gijs van Tulder + + * warc.c: Fix segfault if CDX record is not found. + +2011-05-26 Steven Schweda + * connect.c [HAVE_SYS_SOCKET_H]: Include . + [HAVE_SYS_SELECT_H]: Include . + +2012-05-26 Mike Frysinger + + * warc.c: Change type of `warc_current_gzfile' to gzFile. + +2012-05-26 Giuseppe Scrivano + + * warc.c (warc_load_cdx_dedup_file): Change type of `line_length' to + ssize_t. + Suggested by: Ángel González + +2012-05-18 Tim Ruehsen + + * gnutls.c (wgnutls_poll): Honor the specified `timeout' value. + (wgnutls_peek): Likewise. + +2012-05-19 illusionoflife (tiny change) + + * convert.c (register_html,register_css): Fixed functions signature to + not accept unused argument + * retr.c (retrieve_url): Changed register_{css,html} usage according + new signature. + +2012-05-16 Giuseppe Scrivano + + * warc.h: Cut length lines to 80 columns. + * warc.c: Likewise. + +2012-05-14 Tim Ruehsen + + * gnutls.c (wgnutls_read_timeout): removed warnings, moved fcntl stuff + outside loop. + + * hash.h (hash_table_put): Make argument "value" const. + * hash.c (hash_table_put): Make argument value const. Cast `value' to + void. + * http.c (request_set_header): Make argument `name' const. Cast `value' + and `name' to void*. + (request_remove_header): Make argument `name' const. + * url.c (url_file_name): Make `index_filename' static. + * warc.h (warc_write_cdx_record): Make `url', `timestamp', `mime_type', + `payload_digest', `redirect_location', `warc_filename', response_uuid' + arguments const. Make `checksum' const. + * warc.c (warc_write_date_header): Make the `timestamp' argument const. + Make `extension' const. + (warc_write_cdx_record): Make `url', `timestamp', `mime_type', + `payload_digest', `redirect_location', `warc_filename', response_uuid' + arguments const. Make `checksum' const. + +2012-05-13 Tim Ruehsen + + * gnutls.c (credentials): Change type to + gnutls_certificate_credentials_t. + (ssl_init): Do not use deprecated types. + (ssl_connect_wget): Likewise. + +2012-04-11 Gijs van Tulder + + * init.c: Add --accept-regex, --reject-regex and --regex-type. + * main.c: Likewise. + * options.c: Likewise. + * recur.c: Likewise. + * utils.c: Add regex-related functions. + * utils.h: Add regex-related functions. + +2012-03-30 Tim Ruehsen + + * convert.c (convert_links_in_hashtable): Mmake it static. + * cookies.c (parse_set_cookie): Remove empty else branches. + * css-url.c: Include "css-url.h". + (get_uri_string): Make it static. + * css-url.h (get_urls_css): Add protoype. + * gnutls.c (ssl_init): Add prototype. + * html-parse.c (tagstack_push): Make it static. + * html-parse.c (tagstack_pop): Make it static. + * html-parse.c (tagstack_find): Make it static. + * html-url.c (cleanup_html_url): Make it static. + * progress.c (count_cols): Make it static. + * progress.c (get_eta): Make it static. + * retr.h (convert_to_bits): Remove prototype. + * util.h (convert_to_bits): Add prototype. + * spider.c (spider_cleanup): Make it static. + * warc.c (warc_write_start_record): Add prototype. + * warc.c (warc_write_end_record): Add prototype. + * warc.c (warc_start_cdx_file): Add prototype. + * warc.c (warc_init): Add prototype. + * warc.c (warc_load_cdx_dedup_file): Add prototype. + * warc.c (warc_write_metadata): Add prototype. + * warc.c (warc_close): Add prototype. + * warc.c (warc_tempfile): Add prototype. + * warc.c (warc_write_warcinfo_record): Make it static. + * warc.c (warc_load_cdx_dedup_file): Make it static. + * warc.c (warc_write_metadata): Make it static. + * warc.h (warc_init): Fix prototype. + * warc.h (warc_close): Fix prototype. + * warc.h (warc_tempfile): Fix prototype. + +2012-03-30 Tim Ruehsen + + * url.c: Use empty query in local filenames. + +2012-04-22 Tim Ruehsen + + * main.c (main): Dynamically allocate `opt.progress_type'. + +2012-04-21 Tim Ruehsen + + * ftp-basic.c (ftp_pasv): Fix memory leak. + + * http.c (gethttp): Fix memory leak. + + * ftp.c (getftp): Silent compiler warning. + +2009-06-14 Phil Pennock (tiny change) + * host.h: Declare `is_valid_ip_address'. + * host.c (is_valid_ip_address): New function. + * http.c (gethttp): Specify the hostname to ssl_connect_wget. + * gnutls.c (ssl_connect_wget): Specify the server name. + * openssl.c (ssl_connect_wget): Likewise. + * ssl.h: Change method signature for ssl_connect_wget. + +2012-04-13 Tim Ruehsen (tiny change) + + * warc.c (warc_load_cdx_dedup_file): Fix a memory leak by freeing + `lineptr'. + +2012-04-07 Daniel Kahn Gillmor (tiny change) + + * gnutls.c (key_type_to_gnutls_type): New function. + (ssl_init): Use correctly the specified gnutls certificate. + +2012-04-01 Gijs van Tulder + + * html-url.c: Prevent crash on incomplete STYLE tag. + +2012-04-01 Giuseppe Scrivano + + * gnutls.c (wgnutls_read_timeout): Ensure timer is freed. + + * gnutls.c (wgnutls_read_timeout): Do not use timer if it is not + allocated. + Reported by: Xu Zhongxing + +2012-03-30 Tim Ruehsen (tiny change) + + * warc.c: make warc_uuid_str() implementation depend on HAVE_LIBUUID. + +2012-03-29 Tim Ruehsen (tiny change) + + * utils.c (library): Include . + +2012-03-25 Giuseppe Scrivano + + * utils.c: Include . + + * ptimer.c: Include . + + * connect.c: Include , , . + Reported by: Ray Satiro . + +2012-03-25 Ray Satiro + + * build_info.c.in: Check that HAVE_LIBSSL32 is defined when OpenSSL + is used. + +2012-03-07 Steven Schubiger + + * init.c (wgetrc_user_file_name): Correct typo. + +2012-03-06 Sasikantha Babu + + * utils.c (convert_to_bits): Added new function convert_to_bits to + convert bytes to bits. + * retr.c (calc_rate): Modified the function to handle --bits + option and download rate calculated as bits per sec (SI-prefix) + for --bits otherwise bytes (IEC-prefix). + (retr_rate): Rates will display in bits per sec for --bits. + * options.h (struct opt): Added --bit option bool variable bits_fmt. + * main.c (print_help) : Added help for --bit. + * init.c: Defined command for --bit option. + * retr.h: Added function prototype. + +2012-02-26 Giuseppe Scrivano + + * main.c: Include "closeout.h" + (main): Register close_stdout at exit. + +2012-02-01 Gijs van Tulder + + * warc.c: Fix large file support with ftello, fseeko. + * warc.h: Fix large file support. + * http.c: Fix large file support. + +2012-02-23 Giuseppe Scrivano + + * main.c (main): Write diagnostic messages to `stderr' not to `stdout'. + + * main.c (main): Fail gracefully if `malloc' fails. + + * gnutls.c (wgnutls_read): Remove unused variables `timer' and `flags'. + +2012-02-17 Steven Schubiger + + * warc.c: Add license header. + +2012-01-27 Gijs van Tulder + + * retr.c (fd_read_body): If the response is chunked, the chunk + headers are now written to the WARC file, making the WARC file + an exact copy of the HTTP response. + +2012-01-27 Gijs van Tulder + + * retr.c (fd_read_body): Fix a memory leak with chunked responses. + * http.c (skip_short_body): Fix the same memory leak. + +2012-01-09 Gijs van Tulder + + * init.c: Disable WARC compression if zlib is disabled. + * main.c: Do not show the 'no-warc-compression' option if zlib is + disabled. + * warc.c: Do not compress WARC files if zlib is disabled. + +2012-01-09 Sasikantha Babu (tiny change) + * connect.c (connect_to_ip): properly formatted ipv6 address display. + (socket_family): New function - returns socket family type. + * http.c (gethttp): properly formatted ipv6 address display. + +2011-11-09 Gijs van Tulder + + * warc.c: Call gzdopen() with wb9 instead of wb+9, which fails on + zlib version >= 1.2.4. + +2011-11-04 Steven Schweda + + * warc.c [! WINDOWS]: Include . + (warc_write_warcinfo_record): Assign a new allocated buffer and + free it on errors. + +2011-11-01 Steven Schweda + + * gnutls.c (ssl_init): Ensure GNU TLS is loaded only once. + +2011-10-07 Steven Schweda + + * connect.c: Add HAVE_SYS_SELECT_H and HAVE_SYS_SOCKET_H conditions + on includes of and , respectively. + * ftp.c (getftp): Move BIN_TYPE_TRANSFER macro into VMS-specific + section. On VMS, use Stream_LF attributes for listing files. Pass + BIN_TYPE_FILE to fopen_excl() instead of constant-everywhere "true". + * ftp.c (ftp_retrieve_list): Restore lost test of opt.preserve_perm + (--preserve-permissions) on the chmod() operation. + * init.c, main.c: Remove "deprecated" from opt.preserve_perm + (--preserve-permissions). + * init.c (initialize): Use distinct messages for errors in C macro + SYSTEM_WGETRC and environment-variable SYSTEM_WGETRC. Avoid use of + C macro SYSTEM_WGETRC when it's not defined. + * log.c (log_close): Avoid closing logfp when it's stderr. + * main.c (print_help): Restore --preserve-permissions. + * main.c (main): Avoid using a negative value of longindex as a + subscript (for long_options[]) when searching for "--config". + * main.c (main): Exit the program using exit() instead of "return". + (VMS handles these differently, and exit() is better.) + * openssl.c (ssl_init): Add type cast (SSL_METHOD *) to newly "const" + "meth" argument to accommodate OpenSSL version 0.9.8, where that + argument is not "const" in the OpenSSL function (SSL_CTX_new). + * test.c: Declare "program_argstring". + * utils.c (fopen_excl): Comment typography. + * warc.h: New file. + * warc.c: New file. + +2011-10-02 Henrik Holst (tiny change) + * http.c (gethttp): If 'contentonerror' is used then do not + skip the http body on 4xx and 5xx errors. + + * init.c (commands): Add 'contentonerror'. + + * main.c (print_help, option_data): Add new option 'contentonerror' + to make wget not skip the http content on 4xx and 5xx errors. + + * options.h: New variable 'content_on_error'. + +2011-09-19 Giuseppe Scrivano + + * main.c (print_version): Update copyright year. + (print_version): Fix typo. + +2011-09-13 Giuseppe Scrivano + + * ftp.c (ftp_retrieve_glob): Propagate correctly the `res' error + code. + +2011-09-07 Giuseppe Scrivano + + * http.c (gethttp): Don't inhibit arest request if opt.timestamping is + set. + Reported by + +2011-09-06 Jakob Matthes (tiny change) + + * main.c (print_version): Do not exit prematurely when --help is passed. + +2011-09-04 Christian Jullien (tiny change) + + * gnutls.c: Include . + 2011-09-02 Mojca Miklavec (tiny change) * main.c (print_version): Do not exit prematurely when --version is passed.