]> sjero.net Git - wget/blobdiff - src/ChangeLog
[svn] Fix breakage in ls output parsing. By Larry Jones.
[wget] / src / ChangeLog
index 7b45114141be23c807beebd3e26f0dd80c467cd9..b8e207a7c59ad2e5dd923513631ad1190404b5bb 100644 (file)
@@ -1,3 +1,109 @@
+2006-05-18  Lawrence Jones  <lawrence.jones@ugs.com>
+
+       * ftp-ls.c (ftp_parse_unix_ls): Correct size parsing, add size
+       and filename debugging output.
+
+2006-04-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
+
+       * http.c: If Content-Disposition header is present, allow unique
+       filename generation unless -nc is given. Permit to disable parsing of
+       Content-Disposition header.
+
+       * options.h: Added option --no-content-disposition to disable parsing
+       of HTTP Content-Disposition header.
+
+       * init.c: Ditto.
+       
+       * main.c: Ditto.
+
+2006-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * hash.c (TOLOWER): Wrap macro arg in parentheses.
+
+2006-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * http.c (parse_content_disposition): Doc fix.
+
+2006-03-15  Mauro Tortonesi  <mauro@ferrara.linux.it>
+
+       * utils.c: Restricted operational semantics of frontcmp and proclist
+       from generic strings to directory names and them to subdir_p and
+       dir_matches_p respectively.  Applied George Ogata's one line patch to
+       restrict algorithm of subdir_p to full directory name matching.  Added
+       testcases for subdir_p and dir_matches_p.
+
+       * utils.h: Changed all frontcmp occurrences to subdir_p.
+       
+       * recur.c: Ditto.
+       
+       * test.c: Changed type returned by test functions from char * to const
+       char *.  Added test_subdir_p and test_dir_matches_p to the list of
+       tests to run.
+
+       * http.c (test_parse_content_disposition): Changed return type from
+       char * to const char *. 
+
+2006-03-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
+
+       * recur.c (struct queue_element): Changed type of html_allowed member
+       to bool.
+       
+2006-03-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
+
+       * ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST'
+       in case of failure.
+
+2006-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * hash.c (TOLOWER): Fix definition when STANDALONE.
+       Reported by Beni Serfaty.
+
+2006-03-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
+
+       * http.c (http_loop): Fixed recursive HTTP retrieval.
+
+2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * http.c (extract_param): Declare extern so it can be used from
+       other files.
+       (extract_param): Return error for empty name.
+
+2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * url.c (find_last_char): Define in terms of memrchr.
+
+       * cmpt.c (memrchr): Define it on systems that don't have it.
+
+       * http.c (extract_param): New function for parsing header values
+       with parameters.
+       (parse_content_disposition): Use it.  Don't allow slashes and
+       backslashes in the file name.
+
+2006-02-27  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * url.c (path_simplify): Don't preserve ".." at beginning of path.
+       Suggested by Frank McCown.
+
+2006-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * http.c (gethttp): Only use FILE.N.html if FILE.html exists.
+
+2006-02-09  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * mswindows.c (run_with_timeout): Made thread_hnd non-static.
+
+2006-02-05  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * retr.c (sleep_between_retrievals): Sleep at a minimum of 1/2 of
+       the specified wait period.
+
+2006-02-03  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * utils.c (number_to_string): Don't use sprintf for printing
+       WGINT_MIN; simply divide n by 10 and defer printing the last
+       digit.
+       (number_to_string): Removed the SPRINTF_WGINT macro.
+
 2006-02-03  Mauro Tortonesi  <mauro@ferrara.linux.it>
 
        * http.c: Fixed support for Content-Disposition header.