X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2FChangeLog;h=7a096ef32138edf49aa78cfa778fb76b6eee7c71;hp=58ee55ba1d7425e2884ce07d7714eed1711ce1fe;hb=b014f8fae9291e7504c0cca2dd8b9a0035466c03;hpb=e941befd40c22c4d66bf6587ffbdff745d6ab97c diff --git a/src/ChangeLog b/src/ChangeLog index 58ee55ba..7a096ef3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,110 @@ +2009-08-27 Micah Cowan + + * wget.h (uerr_t): added new VERIFCERTERR code for SSL certificate + problems. Marked exit codes that are defined but never used (at + least, the ones I could find). + + * retr.c, retr.h (retrieve_url): Added a new boolean argument to + determine whether an exit status should be recorded. + (retrieve_from_file): Adjust to new retrieve_url signature. + + * res.c (res_retrieve_file): Don't have retrieve_url record an + exit status for robots.txt. + + * recur.c (retrieve_tree): Adjust to new retrieve_url signature. + + * main.c (main): Use the exit status stored by retrieve_url. + + * http.c (gethttp): Distinguish certificate verification problems + from SSL connection issues. + (http_loop): Handle newly-created VERIFCERTERR error code. + + * exits.c, exits.h: Newly added. + + * Makefile.am (wget_SOURCES): Add exits.c and exits.h. + +2009-08-27 Micah Cowan + + * http.c (gethttp): Make sure Wget heeds cookies when they + are sent with a 401 response; or any other sort of response for + that matter (#26775). + +2009-08-19 Micah Cowan + + * openssl.c (ssl_check_certificate): Only warn about an attack if + the hostname would otherwise have matched. Also some formatting + cleanup. + +2009-08-19 Joao Ferreira + + * openssl.c (ssl_check_certificate): Detect embedded NUL + characters in the SSL certificate common name. + +2009-08-17 Tony Lewis + + * http.c (gethttp): Ensure that we parse Content-Length before we + attempt to refer to its value. Without this fix, NTLM support was + completely buggered. #27192 + +2009-08-09 Michael Baeuerle + + * ftp.c: #include for strcasecmp. + +2009-07-28 Micah Cowan + + * main.c (option_data): Rename --html-extension to + --adjust-extension. + (print_help): Ditto. + + * options.h (struct option): Rename html_extension to + adjust_extension. + * http.c (gethttp): Ditto. + * convert.c (local_quote_string): Ditto. + + * init.c (commands): Add "adjustextension", and reflect rename + change for opt.adjust_extension, for both "adjustextension" and + "htmlextension". + +2009-07-27 Micah Cowan + + * options.h (struct options): Added restrict_files_nonascii + boolean field. + + * url.c (FILE_CHAR_TEST): Add check for chars outside the ASCII + range. + + * init.c (defaults): Add restrict_files_nonascii to initialization. + (cmd_spec_restrict_file_names): Allow parsing of "ascii" keyword. + +2009-07-27 Marcel Telka + + * iri.c (do_conversion): Typo: invalide -> invalid + +2009-07-27 Petr Pisar + + * main.c (print_help): Fixed a couple typos. + +2009-07-26 Micah Cowan + + * main.c (option_data): Rename --locale option to --local-encoding + (print_help): Document --no-iri, --local-encoding, and + --remote-encoding, within usage message. Remove defunct + --preserve-permissions. + +2009-07-23 Micah Cowan + + * progress.c (get_eta): Change "Translation note" in comment to + "TRANSLATORS", so it actually appears in wget.pot. + +2009-07-06 Micah Cowan + + * main.c (print_help): Improve documentation of --base. + 2009-07-05 Micah Cowan + * html-url.c (tag_handle_meta): Handle meta name="robots" + properly: deal with whitespace, commas after... + * netrc.c (parse_netrc): Rename local-scope variable "quote" to "qmark", to avoid conflict with the function name.