]> sjero.net Git - wget/blob - src/ChangeLog
Use Gnulib's quote function in gnutls.c.
[wget] / src / ChangeLog
1 2008-04-16  Steven Schubiger  <schubiger@gmail.com>
2
3         * ftp.c: Use Gnulib's quote function for printing filenames and
4         such.
5         * connect.c: Likewise.
6         * convert.c: Likewise.
7         * cookies.c: Likewise.
8         * ftp-opie.c: Likewise.
9         * gnutls.c: Likewise.
10
11 2008-04-16  Steven Schubiger  <schubiger@gmail.com>
12
13         * sysdep.h: Comment the defines __EXTENSIONS__ and _GNU_SOURCE 
14         out, because they're now defined independently by config.h.
15
16 2008-04-14  Steven Schubiger  <schubiger@gmail.com>
17
18         * http.c: Use Gnulib's quote function for printing filenames and
19         such.
20         * wget.h: #include "quote.h".
21
22 2008-04-12  Rabin Vincent  <rabin@rab.in>
23
24         * mswindows.c (fake_fork_child): Don't create a logfile for
25         --background when --quiet is used, but not --server-response.
26         Fixes bug #20917.
27
28         * utils.c (fork_to_background): Likewise.
29
30 2008-04-12  Micah Cowan  <micah@cowan.name>
31
32         * utils.c (aprintf): Minor formatting changes to Alex's code (80-
33         column limit, concatenated string literals, avoiding nesting
34         levels), and removed invocation of free (since we're aborting
35         anyway).
36
37 2008-04-11  Alexander Dergachev  <cy6erbr4in@gmail.com>
38
39         * utils.c (aprintf): Now we are setting limits (1 Mb) for text
40         buffer when we use non-C99 vsnprintf.
41         
42 2008-04-11  Micah Cowan  <micah@cowan.name>
43
44         * ftp.c (getftp, ftp_loop_internal): Don't append to an existing
45         .listing when --continue is used.  Fixes bug #22825. Thanks to
46         Rabin Vincent <rabin@rab.in> for pointing the way with a
47         suggested fix!
48
49 2008-04-10  Alexander Dergachev  <cy6erbr4in@gmail.com>
50
51         * xmalloc.c, xmalloc.h (memfatal): Now exported; accepts an
52         "unknown" value for the attempted allocation size.
53         * utils.c (aprintf): Now calls memfatal, instead of aborting.
54
55 2008-03-19  Micah Cowan  <micah@cowan.name>
56
57         * utils.c (test_dir_matches_p): More tests related for
58         dir_matches_p.
59
60 2008-03-17  Micah Cowan  <micah@cowan.name>
61
62         * connect.c: Include sys/time.h to support use of the select
63         function on older systems.
64
65 2008-02-11  Benno Schulenberg  <bensberg@justemail.net>
66
67         * http.c: More accurate and descriptive messages for when a file
68         won't be retrieved during spider-mode.
69
70 2008-02-10  Micah Cowan  <micah@cowan.name>
71
72         * http.c: Added existence_checked member to the http_stat
73         struct.
74         (gethttp): Mark hs->existence_checked when we've checked whether
75         a file-to-download exists; so we don't check it again if the
76         connection gets lost (and potentially pick a new "unique" name).
77         This fixes bug 22251.
78         * progress.c (create_image): Add space for an extra column in
79         the "eta" portion of the progress bar image; to deal with
80         too-long Czech translation.
81         * main.c, http.c, init.c: Added --auth-no-challenge option, to
82         bring back 1.10.2 unsafe auth behavior when needed. This fixes
83         bug #22242.
84
85 2008-02-07  Micah Cowan  <micah@cowan.name>
86
87         * progress.c (create_image): Remove assertion on exceeding
88         screen width, which given the less-than-robust code there, can
89         be broken by a number of factors (such as large file downloads).
90
91 2008-02-06  Micah Cowan  <micah@cowan.name>
92
93         * progress.c (countcols): Use strlen() when mbtowc or wcwidth
94         not available (or not using NLS).
95         * utils.c: Ensure we use single-byte separators when not doing
96         NLS progress-bars.
97         * wget.h: Determine whether to use NLS for progress-bars, based
98         on whether wcwidth and mbtowc are available.
99
100 2008-02-03  Micah Cowan  <micah@cowan.name>
101
102         * progress.c (create_image): Use number of characters/columns
103         consumed, rather than number of bytes, to determine how much of
104         a line we've used. Fixes assertion errors and field alignment
105         bugs (#22161, #20481)
106         (get_eta, count_cols): Added to support the changes for
107         create_image.
108         * http.c (http_loop): Put no-clobber logic back into http_loop,
109         before starting to fetch, for when we're not doing
110         content-disposition.
111
112 2008-01-31  Micah Cowan  <micah@cowan.name>
113
114         * http.c (gethttp): Don't derive hs->contlen from possibly
115         invalid/missing Content-Length; instead, get the appropriate
116         value from the Content-Range header values.
117         (parse_content_range): Handle '*' instance-length field.
118
119 2008-01-25  Micah Cowan  <micah@cowan.name>
120
121         * main.c: Added notes to translators regarding (C), diacritics
122         in names.
123         * Makefile.am, cmpt.c, connect.c, connect.h, convert.c,
124         cookies.c, cookies.h, ftp-basic.c, ftp-ls.c, ftp-opie.c, ftp.c,
125         ftp.h, gen-md5.c, gen-md5.h, gnutls.c, hash.c, hash.h, host.c,
126         host.h, html-parse.c, html-parse.h, html-url.c, http-ntlm.c,
127         http-ntlm.h, http.c, http.h, init.c, init.h, log.c, log.h,
128         main.c, mswindows.c, mswindows.h, netrc.c, netrc.h, openssl.c,
129         options.h, progress.c, progress.h, ptimer.c, ptimer.h, recur.c,
130         recur.h, res.c, res.h, retr.c, retr.h, spider.c, spider.h,
131         ssl.h, sysdep.h, test.c, test.h, url.c, url.h, utils.c,
132         utils.h, wget.h, xmalloc.c, xmalloc.h: Updated copyright year.
133
134 2007-12-10  Micah Cowan  <micah@cowan.name>
135
136         * main.c: The option is --content-disposition, not
137         --no-content-disposition (at the moment).
138
139 2007-12-08  Hrvoje Niksic  <hniksic@xemacs.org>
140
141         * ftp.c (ftp_retrieve_glob): Print both arguments of fnmatch in
142         fnmatch error message.
143         (ftp_retrieve_glob): Don't match with fnmatch if we're only
144         supposed to get one file.
145
146 2007-12-07  Micah Cowan  <micah@cowan.name>
147
148         * Makefile.am: Plug in vars to include stuff from
149         $(top_srcdir)/md5 when appropriate.
150
151 2007-12-05  Micah Cowan  <micah@cowan.name>
152
153         * utils.c (subdir_p): Handle the case where d1 is "".
154         * convert.c (convert_all_links): Don't return without
155         deallocating timer.
156
157 2007-11-28  Micah Cowan  <micah@cowan.name>
158
159         * Makefile.am, cmpt.c, connect.c, connect.h, convert.c,
160         convert.h, cookies.c, cookies.h, ftp-basic.c, ftp-ls.c,
161         ftp-opie.c, ftp.c, ftp.h, gen-md5.c, gen-md5.h, gnutls.c,
162         hash.c, hash.h, host.c, host.h, html-parse.c, html-parse.h,
163         html-url.c, http-ntlm.c, http-ntlm.h, http.c, http.h, init.c,
164         init.h, log.c, log.h, main.c, mswindows.c, mswindows.h,
165         netrc.c, netrc.h, openssl.c, options.h, progress.c, progress.h,
166         ptimer.c, ptimer.h, recur.c, recur.h, res.c, res.h, retr.c,
167         retr.h, safe-ctype.c, safe-ctype.h, spider.c, spider.h, ssl.h,
168         sysdep.h, test.c, test.h, url.c, url.h, utils.c, utils.h,
169         wget.h, xmalloc.c, xmalloc.h: Updated license exception for
170         OpenSSL, per the SFLC.
171
172 2007-10-30  Micah Cowan  <micah@cowan.name>
173
174         * main.c (main): Declare argv parameter as char **argv, rather
175         than char *const *argv. This fixes usage of getopt_long,
176         regardless of whether getopt_long has a constified argv or not.
177
178 2007-10-22  Gisle Vanem  <gvanem@broadpark.no>
179
180         * mswindows.c: Move INHIBIT_WRAP macro definition up with wget.h
181         inclusion.
182
183 2007-10-18  Steven Schweda  <sms@antinode.org>
184
185         * sysdep.h: #include <stdint.h> as well as <inttypes.h>, to work
186         around a glitch on Tru64 systems.
187
188 2007-10-18  Micah Cowan  <micah@cowan.name>
189
190         * Makefile.am: version.c should not be distributed. Removed
191         config-post.h. Add version.c dependency and gnulib include path
192         for libunittest.a.
193         * sysdep.h: Got contents of config-post.h
194         * config-post.h: Removed.
195         * wget.h: #include "config.h".
196         * alloca.c, cmpt.c, connect.c, convert.c, cookies.c,
197         ftp-basic.c, ftp-ls.c, ftp-opie.c, ftp.c, gen-md5.c, gnutls.c,
198         hash.c, host.c, html-parse.c, html-url.c, http-ntlm.c, http.c,
199         init.c, log.c, main.c, mswindows.c, netrc.c, openssl.c,
200         progress.c, ptimer.c, recur.c, res.c, retr.c, spider.c, url.c,
201         utils.c, xmalloc.c: Use wget.h at very top, and instead of
202         config.h.
203
204 2007-10-15  Micah Cowan  <micah@cowan.name>
205
206         * Makefile.am: Remove intermediary hg-id file generation, make
207         version.c-generation more portable.
208
209 2007-10-14  Micah Cowan  <micah@cowan.name>
210
211         * cmpt.c, cookies.c, ftp-basic.c, ftp-ls.c, ftp.c, hash.c,
212         host.c, html-parse.c, html-url.c, http-ntlm.c, http.c, init.c,
213         log.c, main.c, netrc.c, openssl.c, res.c, url.c, utils.c,
214         wget.h: Replace uses of ISSPACE, etc with c_isspace, etc.
215         * gnu-md5.c, gnu-md5.h: Removed, in deference to gnulib.
216         * Makefile.am: Removed gnu-md5.h from wget_SOURCES.
217         * gen-md5.c: Changed #inclusion of gnu-md5.h to md5.h (gnulib's).
218         * recur.c (download_child_p): Print error if unlink of
219         robots.txt fails.
220         * main.c (main): --spider or --delete-after now implies
221         --no-directories (thanks, Josh Williams).
222
223 2007-10-14  Joshua David Williams  <yurimxpxman@gmail.com>
224
225         * recur.c (download_child_p): Remove robots.txt if
226         --delete-after or --spider is on.
227
228 2007-10-13  Micah Cowan  <micah@cowan.name>
229
230         * Makefile.am: Make version.c depend on Wget dependencies (source
231         files, plus such things as LIBOBJS so we get things like
232         http-ntlm.c). Removed getopt.[ch], as we're now using gnulib for
233         these.
234
235 2007-10-10  Micah Cowan  <micah@cowan.name>
236
237         * http-ntlm.c: Include openssl/opensslv.h explicitly, instead of
238         hoping it'll be included by accident in openssl/des.h.
239
240 2007-10-09  Gisle Vanem  <gvanem@broadpark.no>
241
242         * mswindows.c: 'argc' and 'argv' in 'windows_main()' are no longer
243         needed.  Hence simply the prototype. Free 'exec_name' at exit.
244
245 2007-10-09  Micah Cowan  <micah@cowan.name>
246
247         * gettext.h: Imported from /usr/share/gettext, fuller handling
248         of --disable-nls.
249         * wget.h: Remove logic for handling lack of NLS (now in
250         gettext.h).
251         * main.c: Use gettext's ENABLE_NLS rather than HAVE_NLS.
252         * Makefile.am: added @LIBINTL@ to LIBS (though it probably
253         belongs in LDADD, along with everything else currently assigned
254         to LIBS).
255
256 2007-10-08  Micah Cowan  <micah@cowan.name>
257
258         * http.c (http_loop): Add send_head_first conditional back
259         around code that needs it, but not around the last-modified
260         header-parsing stuff this time. Removed no-longer-useful (was it
261         ever?) restart_loop boolean, continuing unconditionally at end
262         of send_head_first conditional block (if we haven't jumped out).
263
264 2007-10-04  Micah Cowan  <micah@cowan.name>
265
266         * http.c (http_loop): We've got_name if content_disposition
267         support isn't on; make sure we continue properly in that case,
268         even though we're not sending HEAD.
269         * Makefile.in: Removed, replaced by Makefile.am.
270         * Makefile.am: Converted from Makefile.in.
271
272 2007-10-02  Gisle Vanem  <gvanem@broadpark.no>
273         
274         * ftp.c: Use "_listing" for MSDOS (".listing" is illegal).
275
276         * url.c: Update comment for 'filechr_not_windows'.
277
278         * utils.c: Include <process.h> for 'getpid()' on Watcom.
279
280 2007-10-02  Micah Cowan  <micah@cowan.name>
281
282         * ftp.c (getftp, ftp_loop_internal), http.c (http_loop), main
283         (main): Use datetime_str instead of time_str, for those who have
284         potentially long-running sessions. Based on suggestions by Saso
285         Tomat <miskox@hotmail.com> and Steven M. Schweda
286         <sms@antinode.org>.
287         * http.c (gethttp): Warn about host lookup failures. Adjusted
288         from Stephen Gildea's patch.
289
290 2007-10-02  Stephen Gildea  <stepheng+wget@gildea.com>
291
292         * connect.c (connect_to_host): Warn about host lookup failures.
293
294 2007-09-25  Micah Cowan  <micah@cowan.name>
295
296         * Makefile.in: Use EXEEXT instead of exeext.
297
298 2007-09-24  Gisle Vanem  <giva@bgnett.no>
299
300         * connect.c, init.c, main.c, openssl.c, options.h, sysdep.h,
301         url.c, utils.c: Added support for building on MS-DOS.
302
303 2007-09-24  Jochen Roderburg  <roderburg@uni-koeln.de>
304
305         * http.c (http_zero): Remove no-longer-used local_size variable.
306         Fixes bug #21057.
307
308 2007-09-12  Micah Cowan  <micah@cowan.name>
309
310         * http.c (http_loop): Remove send_head_first from condition for
311         parsing timestamp.
312
313 2007-08-29  Micah Cowan  <micah@cowan.name>
314
315         * openssl.c (ssl_init): Re un-const-ified the meth local
316         variable, to match current versions of openssl.
317         * spider.c: Removed visited_url function, as it may be very
318         inefficient.
319         (print_broken_links): Removed traversal of referrers, until such
320         time as a more efficient implementation can be written.
321         * spider.h: Replaced declaration of visited_url with an
322         empty-bodied, function-like macro.
323
324 2007-08-27  Gisle Vanem  <giva@bgnett.no>
325
326         * mswindows.c (run_with_timeout): Ensure that the correct
327         conversion specification is used for the return result of
328         the GetLastError function.
329         * getopt.c: Fix missing (but, accidentally, legal) comment
330         delimiter after licensing text.
331         * recur.c (retrieve_tree): Inserted missing cast for strip_auth.
332         Includes adjustment by Ralf Wildenhues.
333         * openssl.c (ssl_init): const-ified the meth local variable.
334         * main.c: Include all the static function definitions in the
335         "#ifndef TESTING" clause, leaving just the definitions for
336         exec_name (not set), and opt.
337         * utils.c (run_with_timeout): Now returns bool, to align with
338         declaration in utils.h.
339
340 2007-08-27  Micah Cowan  <micah@cowan.name>
341
342         * wget.h: Added macro replacement for ngettext, for environs
343         that lack NLS.
344
345 2007-08-26  Micah Cowan  <micah@cowan.name>
346
347         * spider.c (print_broken_links): Fixed incorrect plurals msgid
348         usage, switched to use ngettext function.
349
350 2007-08-24  Micah Cowan  <micah@cowan.name>
351
352         * http.c (http_loop): Introduced time_came_from_head boolean
353         flag, to help avoid parsing the same Last-Modified header twice.
354         Replaced spidering returns of RETRUNNEEDED for some situations,
355         to RETROK, as otherwise it will be interpreted as an error.
356         RETRUNNEEDED appears never to be referenced outside of
357         http.c (and wget.h), and, when returned by gethttp, is
358         translated by http_loop to RETROK.
359         * url.c (are_urls_equal): Don't call getchar_from_escaped_string
360         if u2 is shorter than u1.
361         (getchar_from_escaped_string): Don't decode reserved characters.
362         Handle illegally appearing '%'s as literal '%'s. Ensure hex
363         digits before attempting to decode.
364         (test_are_urls_equal): Added tests to handle u2 shorter than u1,
365         and %2f not treated the same as /.
366         * spider.c (in_url_list_p): Don't call are_urls_equal if one of
367         them is NULL.
368
369 2007-08-23  Joshua David Williams  <yurimxpxman@gmail.com>
370
371         * spider.c (in_url_list_p): Removed the bool verbose argument
372
373 2007-08-22  Mauro Tortonesi  <mauro@ferrara.linux.it>
374
375         * http.c (http_loop): Fall back to GET if HEAD fails with a 500 or 501
376         error code.
377
378 2007-08-21  Mauro Tortonesi  <mauro@ferrara.linux.it>
379         
380         * http.c (http_loop): Send preliminary HEAD request if -N is given and
381         the destination file exists already.
382
383 2007-08-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
384
385         * http.c (http_loop): Fixed HTTP HEAD requests logic when --spider is
386         given.
387
388 2007-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
389
390         * url.c (append_uri_pathel): Do not assume dest string to be
391         zero-terminated.
392         (test_append_uri_pathel): Terminate string to fix test failure.
393
394 2007-08-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
395
396         * url.c (url_string): Use comparison, not assignment, in
397         check for auth_mode == URL_AUTH_HIDE_PASSWD.
398
399 2007-08-09  Micah Cowan  <micah@cowan.name>
400
401         * http.c (http_loop): If we got a HEAD and then a GET, and the
402         GET had a timestamp, use that one, not any we may have gotten
403         from the HEAD.
404
405 2007-08-08  Micah Cowan  <micah@cowan.name>
406
407         * init.c (defaults): Content disposition will not be default,
408         since it currently results in extra round-trips.
409
410 2007-07-31  Micah Cowan  <micah@cowan.name>
411
412         * http.c (gethttp): Set contlen = -1 when we encounter a
413         negative-valued Content-Length header, so we don't consider it
414         an internal error later on and call abort().
415
416 2007-07-29  Micah Cowan  <micah@cowan.name>
417
418         * url.h, url.c (url_string): Replaced bool arg of the url_string
419         function with enum url_auth_mode, with added option to
420         completely remove user/pass auth information.
421         * http.c, ftp.c, url.c, recur.c: Adapted call to url_string
422         function to fit new usage.
423         * recur.c (retrieve_tree): Remove auth info from Referer header.
424
425 2007-07-28  Micah Cowan  <micah@cowan.name>
426
427         * options.h, init.c, retr.c, main.c: renamed opt maxredirect
428         field to max_redirect, for improved consistency.
429         * init.c: changed max_redirect parser from cmd_number_inf to
430         cmd_number, as infinite redirects may not be appropriate.
431         Alternatively, if cmd_number_inf should be used, then
432         opt.max_redirect's value should be checked a bit differently in
433         retr.c, to allow for the "infinite" meaning of zero.
434
435 2007-07-25  Micah Cowan  <micah@cowan.name>
436
437         * http.c (create_authorization_line)
438         (basic_authentication_encode, known_authentication_scheme_p)
439         (load_cookies): Moved declarations up.
440         (basic_authed_hosts): Added. Tracks what hosts have issued Basic
441         challenge and been given the global username, password.
442         (maybe_send_basic_creds): Added. Sends Basic creds for hosts that
443         have issued Basic challenges.
444         (register_basic_auth_host): Added. Instantiates
445         basic_authed_hosts if necessary, then registers the host that
446         has issued a challenge.
447         (gethttp) <auth>: Only send authentication credentials after
448         we've received a challenge from that host. This is a stop-gap
449         fix until a proper fix can be implemented; still isn't quite
450         right, as we should only be sending credentials automatically
451         for authenticated paths and below, and not for the entire host.
452
453 2007-07-16  Joshua David Williams  <yurimxpxman@gmail.com>
454
455         * options.h: added maxredirect to options struct
456         * init.c: added maxredirect to list of variables
457         * retr.c (retrieve_url): replaced MAX_REDIRECTIONS with opt.maxredirect
458         * main.c: added option --max-redirect
459
460 2007-07-16  Joshua David Williams  <yurimxpxman@gmail.com>
461
462         * test.h: tests made more verbose; now displays the name
463         of each test run.
464
465 2007-07-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
466
467         * http.c (http_loop): Fixed the HTTP requests logic. Now it skips the 
468         preliminary HEAD request if either -O or --no-content-disposition are 
469         given, and neither --spider and -N are given.
470
471 2007-07-05  Micah Cowan  <micah@cowan.name>
472
473         * cmpt.c, connect.c, connect.h, convert.c, convert.h:
474         * cookies.c, cookies.h, ftp-basic.c, ftp.c, ftp.h, ftp-ls.c:
475         * ftp-opie.c, gen-md5.c, gen-md5.h, getopt.c, getopt.h, gnu-md5.c:
476         * gnu-md5.h, gnutls.c, hash.c, hash.h, host.c, host.h:
477         * html-parse.c, html-parse.h, html-url.c, http.c, http.h:
478         * http-ntlm.c, http-ntlm.h, init.c, init.h, log.c, log.h, main.c:
479         * Makefile.in, mswindows.c, mswindows.h, netrc.c, netrc.h:
480         * openssl.c, options.h, progress.c, progress.h, ptimer.c:
481         * ptimer.h, recur.c, recur.h, res.c, res.h, retr.c, retr.h:
482         * safe-ctype.c, safe-ctype.h, spider.c, spider.h, ssl.h, sysdep.h:
483         * test.c, test.h, url.c, url.h, utils.c, utils.h, wget.h:
484         * xmalloc.c, xmalloc.h:
485         Updated GPL reference to version 3 or later, removed FSF
486         address.
487
488 2007-07-04  Mauro Tortonesi  <mauro@ferrara.linux.it>
489
490         * http.c (http_loop): Skip HEAD request and start immediately with GET
491         if -O is given.
492
493 2007-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
494
495         * http.c (print_server_response): Escape non-printable characters
496         in server respone.
497
498 2007-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
499
500         * netrc.c: Don't make netrc_list static, as it prevents
501         compilation with DEBUG_MALLOC.
502
503         * utils.c (aprintf): Don't use vasprintf when DEBUG_MALLOC is
504         requested because, in that case, we want the calls to malloc to be
505         coming from us.
506
507 2007-01-23  Hrvoje Niksic  <hniksic@xemacs.org>
508
509         * cookies.c (parse_set_cookie): Would erroneously discard cookies
510         with unparsable expiry time.
511
512 2007-01-23  Hrvoje Niksic  <hniksic@xemacs.org>
513
514         * progress.c (create_image): Check for ETA overflow.
515         (print_row_stats): Ditto.
516
517 2007-01-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
518
519         * init.c (cmd_spec_prefer_family): Small fix to get rid of a gcc
520         warning about strict-aliasing violation.
521
522 2007-01-09  Steven M. Schweda  <sms@antinode.org>
523
524         * ftp-basic.c (ftp_syst): Fixed segfault if response text is missing.
525
526 2006-12-29  Gisle Vanem  <giva@bgnett.no>
527
528         * mswindows.c: Avoid a warning if 'ws_hangup()' is unused.
529
530 2006-12-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
531
532         * http.c (parse_content_disposition): Consider directory prefix, if
533         specified.
534
535 2006-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
536
537         * retr.c (retrieve_from_file): Ditto.
538         (url_uses_proxy): New function.
539
540         * main.c (main): Don't check for opt.use_proxy when deciding
541         whether to call retrieve_url or retrieve_tree; check whether the
542         proxy would be used for *this* URL.
543
544 2006-10-17  Mike Grant  <mggr@pml.ac.uk>
545
546         * ftp.c (ftp_loop_internal): Would incorrectly skip changing
547         working directory when retrying after a failed FTP attempt.
548         Originally reported by Nate Eldredge.
549
550 2006-10-12  Mauro Tortonesi  <mauro@ferrara.linux.it>
551
552         * convert.c (downloaded_file): Fixed bug which used to break -E -k -K 
553         mode.
554
555 2006-08-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
556
557         * http.c: #include'd spider.h to get rid of compiler warnings.
558
559         * main.c: Ditto.
560
561         * recur.c: Ditto.
562
563 2006-08-24  Mauro Tortonesi  <mauro@ferrara.linux.it>
564
565         * Makefile.in: Added spider.c to the list of files to compile and
566         spider.h to the list of header files. Updated copyright information.
567
568         * http.c: Major changes to recursive spider mode. Now for every
569         resource we are supposed to check, we send a HEAD request to find out
570         if it exists. If the resource is a HTML file, we retrieve it and parse
571         it to discover links to other resources.
572
573         * recur.c: Ditto.
574
575         * res.c (res_retrieve_file): Disable opt.timestamping and opt.spider
576         when retrieving robots.txt. Updated copyright information.
577
578         * convert.c: Moved code tracking broken links to spider.c.
579
580         * convert.h: Ditto.
581
582         * spider.c: Created new file to keep track of visited URLs in spider
583         mode.
584
585         * spider.h: Ditto.
586
587 2006-08-21  Mauro Tortonesi  <mauro@ferrara.linux.it>
588
589         * http.c: Fixed timestamping-related bug.
590
591 2006-08-16  Mauro Tortonesi  <mauro@ferrara.linux.it>
592
593         * http.c: Fixed bug which broke --continue feature. Now if -c is
594         given, http_loop sends a HEAD request to find out the destination
595         filename before resuming download.
596
597 2006-08-08  Hrvoje Niksic  <hniksic@xemacs.org>
598
599         * utils.c (datetime_str): Avoid code repetition with time_str.
600
601 2006-07-21  Hrvoje Niksic  <hniksic@xemacs.org>
602
603         * init.c (commands): Correctly place "contentdisposition".
604
605 2006-07-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
606         
607         * sysdep.h: If intptr_t isn't defined, simply typedef it to long.
608
609         * http.c: Added explicit cast to int in logprintf call to remove
610         compiler warnings on 64-bit platforms.
611
612         * connect.c: Added a few casts to intptr_t to remove compiler warnings
613         on 64-bit platforms.
614         
615         * main.c: Disable -r, -p and -N when -O is used. Disable -k when -O is
616         used and multiple URLs are given. Update maintainer information.
617         
618         * all: Update copyright information.
619         
620 2006-07-10  KJKHyperion  <hackbunny@reactos.com>
621
622         * url.c (filechr_table): Mark DEL (0x7f) as a control character
623         and | as a character Windows can't handle.
624
625 2006-06-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
626
627         * res.c: Implemented is_robots_txt_url function for detection of
628         robots.txt URLs and related test routine.
629
630         * res.h: Ditto.
631
632         * url.c: Implemented are_urls_equal function for URL comparison and
633         related testing routine.
634
635         * url.h: Ditto.
636
637         * convert.c: Fixes for recursive spider mode: don't consider
638         non-existing robots.txt as a broken link, and use are_urls_equal
639         instead of strcasecmp for referrer URLs comparison.
640
641         * test.c: Call tests routines for are_urls_equal and 
642         is_robots_txt_url.
643
644 2006-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
645
646         * wget.h (wgint): Typedef to any 64-bit (or larger) type we can
647         find, not necessarily off_t or long.
648
649 2006-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
650
651         * cmpt.c (strtoll): Check for overflow and underflow without
652         relying on (technically) undefined behavior.  Don't assume that
653         strtoll_type is 64 bits wide.
654
655 2006-06-21  Hrvoje Niksic  <hniksic@xemacs.org>
656
657         * utils.c (base64_encode): Cast void pointer to char * before
658         doing arithmetic.
659
660 2006-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
661
662         * utils.c (base64_encode): Made TBL const.
663         (base64_decode): Made the base64_char_to_value table const.
664
665 2006-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
666
667         * utils.c (base64_encode): Made the DATA pointer void * so the
668         callers can pass it any kind of pointer (including both signed and
669         unsigned char pointers).
670         (base64_decode): Ditto for DEST.
671
672 2006-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
673
674         * utils.c (base64_encode): Would read past end of STR.
675         Reported by rick@eckle.org.
676
677 2006-06-13  Mauro Tortonesi  <mauro@ferrara.linux.it>
678
679         * options.h (struct options): Introduced member restrict_files_case to
680         keep track of preferences on character case restrictions for
681         filenames.
682
683         * init.c: Modified defaults and cmd_spec_restrict_file_names to
684         support character case restrictions for filenames. Added
685         test_cmd_spec_restrict_file_names unit test.
686
687         * url.c: Modified append_uri_pathel to support character case
688         restrictions for filenames. Added test_append_uri_pathel unit test.
689
690         * test.c: Added test_cmd_spec_restrict_file_names and
691         test_append_uri_pathel to the list of unit tests to run.
692
693 2006-06-12  Mauro Tortonesi  <mauro@ferrara.linux.it>
694
695         * retr.c (retrieve_from_file): Use retrieve_tree and automatically
696         turn on opt.follow_ftp in case of recursive FTP retrieval through HTTP
697         proxy.
698
699         * main.c: Automatically turn on opt.follow_ftp in case of recursive
700         FTP retrieval through HTTP proxy.
701
702 2006-06-12  Tony Lewis  <tlewis@exelana.com>
703
704         * main.c: Improved CHEN Peng's patch by proposing a simpler logic.
705
706 2006-06-12  CHEN Peng  <chenpeng@alumni.nus.edu.sg>
707
708         * main.c: Use retrieve_tree in case of recursive FTP retrieval through
709         HTTP proxy.
710
711 2006-05-25  Mauro Tortonesi  <mauro@ferrara.linux.it>
712
713         * convert.c: Added mechanisms to keep track broken links.
714
715         * convert.h: Ditto.
716
717         * wget.h: Reordered and enumerated uerr_t constants.
718
719         * recur.c: Fixes to support recursive spider mode.
720
721         * http.c: Ditto.
722
723         * main.c: Print broken links in case of recursive spider mode.
724
725         * retr.c: Changed interface of retrieve_url.
726
727         * retr.h: Ditto.
728
729         * ftp.c: Changed interface of ftp_loop.
730
731         * ftp.h: Ditto.
732
733         * res.c: Minor change to reflect changes in interface of retrieve_url.
734
735 2006-05-18  Lawrence Jones  <lawrence.jones@ugs.com>
736
737         * ftp-ls.c (ftp_parse_unix_ls): Correct size parsing, add size
738         and filename debugging output.
739
740 2006-04-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
741
742         * http.c: If Content-Disposition header is present, allow unique
743         filename generation unless -nc is given. Permit to disable parsing of
744         Content-Disposition header.
745
746         * options.h: Added option --no-content-disposition to disable parsing
747         of HTTP Content-Disposition header.
748
749         * init.c: Ditto.
750         
751         * main.c: Ditto.
752
753 2006-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
754
755         * hash.c (TOLOWER): Wrap macro arg in parentheses.
756
757 2006-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
758
759         * http.c (parse_content_disposition): Doc fix.
760
761 2006-03-15  Mauro Tortonesi  <mauro@ferrara.linux.it>
762
763         * utils.c: Restricted operational semantics of frontcmp and proclist
764         from generic strings to directory names and them to subdir_p and
765         dir_matches_p respectively.  Applied George Ogata's one line patch to
766         restrict algorithm of subdir_p to full directory name matching.  Added
767         testcases for subdir_p and dir_matches_p.
768
769         * utils.h: Changed all frontcmp occurrences to subdir_p.
770         
771         * recur.c: Ditto.
772         
773         * test.c: Changed type returned by test functions from char * to const
774         char *.  Added test_subdir_p and test_dir_matches_p to the list of
775         tests to run.
776
777         * http.c (test_parse_content_disposition): Changed return type from
778         char * to const char *. 
779
780 2006-03-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
781
782         * recur.c (struct queue_element): Changed type of html_allowed member
783         to bool.
784         
785 2006-03-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
786
787         * ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST'
788         in case of failure.
789
790 2006-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
791
792         * hash.c (TOLOWER): Fix definition when STANDALONE.
793         Reported by Beni Serfaty.
794
795 2006-03-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
796
797         * http.c (http_loop): Fixed recursive HTTP retrieval.
798
799 2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
800
801         * http.c (extract_param): Declare extern so it can be used from
802         other files.
803         (extract_param): Return error for empty name.
804
805 2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
806
807         * url.c (find_last_char): Define in terms of memrchr.
808
809         * cmpt.c (memrchr): Define it on systems that don't have it.
810
811         * http.c (extract_param): New function for parsing header values
812         with parameters.
813         (parse_content_disposition): Use it.  Don't allow slashes and
814         backslashes in the file name.
815
816 2006-02-27  Hrvoje Niksic  <hniksic@xemacs.org>
817
818         * url.c (path_simplify): Don't preserve ".." at beginning of path.
819         Suggested by Frank McCown.
820
821 2006-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
822
823         * http.c (gethttp): Only use FILE.N.html if FILE.html exists.
824
825 2006-02-09  Hrvoje Niksic  <hniksic@xemacs.org>
826
827         * mswindows.c (run_with_timeout): Made thread_hnd non-static.
828
829 2006-02-05  Hrvoje Niksic  <hniksic@xemacs.org>
830
831         * retr.c (sleep_between_retrievals): Sleep at a minimum of 1/2 of
832         the specified wait period.
833
834 2006-02-03  Hrvoje Niksic  <hniksic@xemacs.org>
835
836         * utils.c (number_to_string): Don't use sprintf for printing
837         WGINT_MIN; simply divide n by 10 and defer printing the last
838         digit.
839         (number_to_string): Removed the SPRINTF_WGINT macro.
840
841 2006-02-03  Mauro Tortonesi  <mauro@ferrara.linux.it>
842
843         * http.c: Fixed support for Content-Disposition header.
844
845         * test.c: Added test_parse_content_disposition to the list of unit
846         tests to run.
847
848 2006-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
849
850         * hash.c: Don't define countof if it's already defined.
851
852         * hash.c: Obtain the definition of uintptr_t when standalone.
853
854 2006-01-30  Mauro Tortonesi  <mauro@ferrara.linux.it>
855
856         * http.c: Changed output format. Removed excessively verbose debugging
857         output.
858
859 2005-12-07  Mauro Tortonesi  <mauro@ferrara.linux.it>
860
861         * http.c: Fixed pre-download verbose output which was broken by 
862         HTTP code refactoring.
863
864 2005-11-23  Mauro Tortonesi  <mauro@ferrara.linux.it>
865
866         * http.c: Refactored HTTP code.  If -O is not used, the new code
867         delays the choice of the file name where the downloaded resource
868         will be saved until the HTTP headers have been retrieved.
869         Added support for Content-Disposition header. 
870
871 2005-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
872
873         * hash.c (INVALID_PTR): Use uintptr_t instead of unsigned long.
874         (hash_pointer): Don't assume a pointer fits in `unsigned long'.
875
876 2005-11-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
877
878         * Makefile.in: Removed support for unit testing (now it is in
879         tests/Makefile.in).
880
881 2005-10-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
882
883         * Makefile.in: Added basic support for unit testing.
884
885         * test.c: Ditto.
886         
887         * test.h: Ditto.
888         
889 2005-10-13  Daniel Stenberg  <daniel@haxx.se>
890
891         * http-ntlm.c (ntlm_output): Fixed buffer overflow vulnerability.
892
893 2005-10-09  Russ Allbery  <rra@stanford.edu>
894
895         * snprintf.c: Remove round to round_int and pow10 to pow10_int, to
896         avoid warnings from GCC 4.0.
897
898 2005-10-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
899
900         * retr.c: Changed semantics of no_proxy_match.
901
902 2005-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
903
904         * main.c (main): Don't print the summary if nothing has been downloaded.
905
906 2005-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
907
908         * retr.c (retr_rate): Rename parameter from MSECS to SECS since it
909         no longer holds milliseconds.
910
911 2005-09-01  Hrvoje Niksic  <hniksic@xemacs.org>
912
913         * progress.c: Introduce symbolic constants for "magic" values of
914         0.2 and 0.9, REFRESH_INTERVAL and ETA_REFRESH_INTERVAL.
915
916 2005-08-27  Hrvoje Niksic  <hniksic@xemacs.org>
917
918         * cmpt.c (strtoll): Correctly handle strtoll("0x", ptr, 0) and
919         strtoll("0x<nonhexchar>", ptr, 0) -- in both cases *ptr must be
920         set to the position of 'x', not after it.
921
922 2005-08-27  Hrvoje Niksic  <hniksic@xemacs.org>
923
924         * hash.c (hash_table_map): Rename to hash_table_for_each and
925         update callers.
926         Document the meaning of the callback's return value.
927         (hash_table_iterate): New function.
928         (hash_table_iter_next): Likewise.
929         Update most places that used hash_table_for_each to use the
930         iteration, which doesn't require a temporary function with
931         explicit state management.
932
933 2005-08-26  Albert Chin  <wget@mlists.thewrittenword.com>
934
935         * Makefile.in: Use @datadir@.  Define localedir as $(datadir)/locale.
936
937 2005-08-26  Jeremy Shapiro  <jnshapiro@gmail.com>
938
939         * openssl.c (ssl_init): Set SSL_MODE_AUTO_RETRY.
940
941 2005-08-23  Hrvoje Niksic  <hniksic@xemacs.org>
942
943         * host.c (address_list_from_ipv4_addresses): Use IP_INADDR_DATA.
944
945 2005-08-12  Hrvoje Niksic  <hniksic@xemacs.org>
946
947         * wget.h: Renamed strtoll_return to strtoll_type.
948
949 2005-08-11  Hrvoje Niksic  <hniksic@xemacs.org>
950
951         * progress.c (eta_to_human_short): Switch to days when printing
952         more than 48h rather than 100h.  (It's not immediately apparent
953         how many days there are in 83h.)
954
955 2005-08-11  Hrvoje Niksic  <hniksic@xemacs.org>
956
957         * cmpt.c (strtoll): Define it if missing on the system and if Wget
958         needs it.
959
960         * mswindows.c (str_to_int64): Move to cmpt.c and rename to strtoll.
961
962 2005-08-10  Hrvoje Niksic  <hniksic@xemacs.org>
963
964         * host.c (print_address): Always use inet_ntop when IPv6 is
965         enabled.
966
967         * host.h (ip_address): Simplify the data union.
968
969 2005-08-09  Hrvoje Niksic  <hniksic@xemacs.org>
970
971         * mswindows.c (inet_ntop): Also handle IPv4 addresses for
972         completeness.
973
974 2005-08-09  Hrvoje Niksic  <hniksic@xemacs.org>
975
976         * http.c (gethttp): Don't read more than the amount of data
977         specified by the content-length header.
978
979 2005-08-09  Vasil Dimov  <vd@datamax.bg>
980
981         * ftp.c (getftp): Don't free RESPLINE if ftp_response returns a
982         status other than FTPOK.
983
984 2005-08-04  Giuseppe Bonacci  <g.bonacci@libero.it>
985
986         * ftp-ls.c (ftp_parse_unix_ls): Remember the position of the
987         previous token instead of backtracking back to it.
988
989 2005-07-08  Gisle Vanem  <giva@bgnett.no>
990
991         * mswindows.h: Include process.h to get getpid() declaration.
992
993 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
994
995         * utils.c (aprintf): Use vasprintf where available.
996
997 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
998
999         * url.c (rewrite_shorthand_url): Simplify code using aprintf and
1000         strspn.
1001
1002 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
1003
1004         * gnutls.c (ssl_check_certificate): Check for the validity of the
1005         presented X509 certificate.
1006
1007 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
1008
1009         * openssl.c (ssl_check_certificate): Print custom error messages
1010         for frequent X509 certificate problems.
1011
1012 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
1013
1014         * mswindows.h: Define an alias for stat and fstat, as requested by
1015         config-compiler.h.
1016         (gai_strerror): Define to windows_strerror if NEED_GAI_STRERROR is
1017         defined.
1018
1019 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
1020
1021         * mswindows.h: Use strtoll where available.
1022
1023 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
1024
1025         * sysdep.h: Add a full declaration of fnmatch.h.
1026
1027 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
1028
1029         * utils.c: Unconditionally include <setjmp.h>.
1030
1031 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
1032
1033         * utils.c (fnmatch_nocase): New function.
1034         (proclist): Use it instead of fnmatch when opt.ignore_case is
1035         requested.
1036         (in_acclist): Respect opt.ignore_case.
1037         (frontcmp): Respect opt.ignore_case.
1038
1039         * options.h (struct options): New flag opt.ignore_case.
1040
1041 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
1042
1043         * ptimer.c: Measure time in seconds rather than milliseconds.
1044         Adjusted all callers.
1045
1046 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
1047
1048         * http.c (gethttp): When freeing MESSAGE, take into account that
1049         it can be NULL.
1050
1051 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
1052
1053         * cmpt.c (timegm): Handle years after 2099.
1054
1055 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
1056
1057         * cmpt.c (timegm): Remove unused variable.
1058
1059 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
1060
1061         * cmpt.c (timegm): Don't call mktime; simply count the seconds
1062         between 1970-01-01 and the specified date.
1063
1064 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
1065
1066         * wget.h (or): Define HAVE_SSL when either HAVE_OPENSSL or
1067         HAVE_GNUTLS are defined.
1068
1069         * gnutls.c: New file.
1070
1071 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
1072
1073         * http.c (gethttp): Don't print the request write error message
1074         twice.
1075
1076 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
1077
1078         * openssl.c (openssl_errstr): Instead of always using a large
1079         static buffer, only allocate the error string when there is an
1080         actual error.
1081
1082 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
1083
1084         * xmalloc.c (debugging_free): Prefix hex pointer value with "0x"
1085         when printing.
1086
1087 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
1088
1089         * utils.c (NEXT_BASE64_CHAR): Rename to NEXT_CHAR and simplify to
1090         get the next non-whitespace character.
1091
1092 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
1093
1094         * utils.c (base64_decode): Don't silently tolerate non-base64
1095         non-white-space characters in the base64 stream.
1096
1097 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
1098
1099         * connect.c (LAZY_RETRIEVE_INFO): Make last_tick unsigned to match
1100         transport_map_modified_tick.
1101
1102 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
1103
1104         * config-post.h (alloca): Updated declaration to not enumerate all
1105         Windows compilers.
1106
1107 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
1108
1109         * openssl.c (openssl_errstr): Separate error messages with "; ".
1110
1111 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
1112
1113         * ftp.c (getftp): Ditto.
1114
1115         * http.c (gethttp): Use fd_errstr.
1116
1117         * connect.c (fd_register_transport): Restructure parameters to
1118         include only a single structure that describes transport
1119         implementation.
1120
1121         * openssl.c (openssl_errstr): New function: dump SSL error strings
1122         into a static buffer and return a pointer to the buffer.
1123
1124         * connect.c (fd_errstr): New function; returns transport-specific
1125         error message, or strerror(errno) if transport doesn't supply one.
1126
1127 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
1128
1129         * mswindows.h: Also wrap accept() and listen().
1130
1131 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
1132
1133         * url.c (path_end): Skip separators appropriate for the scheme.
1134         (strpbrk_or_eos): Remove gcc-specific version, as the optimization
1135         it tried to perform no longer applies.
1136
1137 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
1138
1139         * host.c: Don't include "connect.h" now that we no longer have
1140         socket_has_inet6.
1141
1142 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
1143
1144         * host.c: Remove extraneous definition of netdb.h.
1145
1146 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
1147
1148         * http.c (gethttp): Skip error message body in the keep-alive
1149         case.
1150
1151 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
1152
1153         * url.c (url_parse): Would crash when parsing fragments.  Support
1154         fragments for FTP URLs too.
1155
1156 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
1157
1158         * version.c: Don't use "cvs" in version name, since we're not
1159         using CVS anymore.
1160
1161 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
1162
1163         * progress.c (create_image): Ditto.
1164
1165         * retr.c (retr_rate): Display smaller rate numbers with greater
1166         precision.
1167
1168 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
1169
1170         * http.c (response_head_terminator): Minor optimization.
1171
1172         * retr.c (fd_read_hunk): Call terminator with pointer to the start
1173         of the data and the pointer to the current data.  Changed all
1174         callers.
1175
1176 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
1177
1178         * url.c (url_parse): Make sure u->params is not initialized for
1179         http/https URLs.
1180         (url_parse): Don't crash on garbage following []-delimited IPv6
1181         addresses.
1182
1183 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
1184
1185         * main.c (print_help): Don't refer to the non-existent -nr in
1186         description of --mirror.
1187
1188 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
1189
1190         * host.c (pretty_print_address): Renamed to just print_address.
1191         Clarify documentation.
1192
1193 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
1194
1195         * http.c (gethttp): Explicitly document the different cases when
1196         generating the Host header.
1197
1198 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
1199
1200         * host.c (pretty_print_address): Handle error result from
1201         inet_ntop.
1202
1203 2005-06-30  Gisle Vanem  <giva@bgnett.no>
1204
1205         * mswindows.c (inet_ntop): New function.  Print IPv6 addresses
1206         using WSAAddressToString.
1207
1208 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1209
1210         * progress.c (dot_update): Remove unused variable row_qty.
1211
1212 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
1213
1214         * main.c: Check for both SIGHUP and SIGUSR1 before using them.
1215
1216 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
1217
1218         * utils.c: Unconditionally include locale.h.
1219
1220 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
1221
1222         * ptimer.c: Include sys/time.h to get struct timeval.
1223
1224 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
1225
1226         * wget.h: Remove obsolete definition of with_thousand_seps_sum.
1227
1228 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
1229
1230         * gnu-md5.h: Unconditionally include limits.h.
1231
1232 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
1233
1234         * utils.c (random_number): Use lrand48 if available.
1235         (random_float): Use drand48 if available.
1236
1237 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
1238
1239         * main.c (secs_to_human_time): Use print_decimal when printing
1240         total download time in seconds.
1241
1242         * progress.c (print_row_stats): Use it to print total download
1243         time at the end of the download.
1244         (create_image): Ditto.
1245
1246         * utils.c (print_decimal): New function; print small decimal
1247         numbers with more precision than large ones.
1248
1249         * progress.c (print_row_stats): New function.  Print ETA after the
1250         download rate at the end of each row.
1251
1252 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
1253
1254         * init.c (parse_line): Check for alphanumerics.
1255
1256 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
1257
1258         * (dot_create): Remove unnecessary casts.
1259
1260 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
1261
1262         * ftp.c (getftp): Delete trailing newlines from LIST output so
1263         lines don't come out with trailing \015\012 with -S.
1264
1265 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1266
1267         * mswindows.h: Remove superfluous includes.
1268
1269 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1270
1271         * config-post.h (alloca): Amend alloca declaration to take care of
1272         all Win32 compilers, not just MSVC and MinGW.
1273
1274 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1275
1276         * utils.c (get_grouping_data): Force separator to "." rather than
1277         " " when "," is taken.
1278
1279 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1280
1281         * wget.h (PTR_FORMAT): Cast the result of sizeof to int before
1282         passing it to printf's %*.
1283
1284         * retr.h: Declare output_stream and output_stream_regular.
1285
1286         * ftp.h: Declare ftp_last_respline.
1287
1288         * convert.h: Declare dl_url_file_map.
1289
1290         * http.h: New file.
1291
1292 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1293
1294         * cookies.c: Make cookies_now static.
1295
1296 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1297
1298         * utils.c (human_readable): Remove intermediary cast to long; MSVC
1299         has problems casting *unsigned* __int64 to double.
1300
1301 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1302
1303         * sysdep.h: Use the system-provided fnmatch by default.
1304
1305 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1306
1307         * http.c (mktime_from_utc): Renamed to timegm and moved to cmpt.c.
1308         Don't compile it if GNU timegm is available.
1309         (http_atotm): Use timegm.
1310
1311 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1312
1313         * http.c (http_atotm): Correctly query the old locale value.
1314
1315 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1316
1317         * config-post.h (alloca): Don't #define alloca under MinGW32,
1318         which defines it in malloc.h, included from mswindows.h.
1319
1320 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1321
1322         * utils.c (get_grouping_data): Force the use of separators in C
1323         locale.
1324
1325 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1326
1327         * main.c (i18n_initialize): Set all locale categories.
1328
1329         * http.c (http_atotm): Temporarily set locale to "C".
1330
1331 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1332
1333         * http.c (gethttp): Improve "POST data file missing" error
1334         message.
1335
1336 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1337
1338         * progress.c (set_progress_implementation): Type COLON as const
1339         char *.
1340
1341 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
1342
1343         * utils.c (with_thousand_seps): Handle negative numbers.
1344
1345 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
1346
1347         * progress.c (create_image): Mark the "eta" string for translation.
1348
1349 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
1350
1351         * html-url.c (get_urls_file): Don't explicitly set entry->next to
1352         NULL since entry is already zeroed out.
1353
1354 2005-06-26  Gisle Vanem  <giva@bgnett.no>
1355
1356         * mswindows.h: Define gai_strerror under MinGW.
1357
1358 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
1359
1360         * utils.c (with_thousand_seps): Correctly implement thousand seps
1361         consisting of more than one character.
1362
1363 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
1364
1365         * main.c (secs_to_human_time): Ditto.
1366
1367         * progress.c (create_image): Print more exact duration of very
1368         short downloads.
1369
1370         * main.c (secs_to_human_time): Don't translate time suffixes "h",
1371         "m", and "s", which are not strictly SI, but are "accepted for use
1372         with SI".
1373         (secs_to_human_time): Print really small intervals as 0s, not
1374         0.00s.
1375
1376 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
1377
1378         * config-post.h: Replace the alloca declaration with the one from
1379         the latest Autoconf manual.  This should remove a warning with GCC
1380         on AIX.
1381
1382 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
1383
1384         * ftp.c (getftp): Always invoke SIZE, not only when continuing a
1385         download.
1386
1387         * main.c (main): Ditto here.
1388
1389         * progress.c (create_image): When the download is finished, print
1390         how long it took.
1391
1392 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
1393
1394         * main.c (main): Print the downloaded and quota amounts with the
1395         "human_readable" function.
1396
1397         * ftp.c (print_length): Ditto.
1398
1399         * http.c (gethttp): Don't display thousand separators.
1400
1401         * utils.c (with_thousand_seps): Rewritten to respect locale
1402         settings and to be type size agnostic.
1403
1404 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1405
1406         * utils.c (human_readable): Divide with 1024 instead of shifting
1407         so the operation can work with non-integer N.
1408
1409 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1410
1411         * progress.c (eta_to_human): New logic for more human-readable
1412         ETA.
1413
1414 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1415
1416         * utils.c (with_thousand_seps_sum): Decrease buffer size so it
1417         cannot overrun add_thousand_seps's buffer.
1418
1419 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1420
1421         * utils.c (SPRINTF_WGINT): The correct format is %I64d, not just
1422         %I64.
1423
1424 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1425
1426         * http.c (http_loop): Don't warn about wildcards in HTTP URLs if
1427         globbing isn't requested in the first place.
1428
1429         * retr.c (retrieve_url): Temporarily turn off globbing when
1430         processing HTTP->FTP redirects.
1431
1432 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1433
1434         * utils.c (with_thousand_seps_sum): Now defined only if
1435         SUM_SIZE_INT is double.
1436
1437         * wget.h (SUM_SIZE_INT): Instead of bothering with long, long
1438         long, __int64, and friends, simply either use wgint or double, end
1439         of story.  Since we know how to print either, we no longer need
1440         LARGE_INT_FMT.
1441
1442         * sysdeps.h (LARGE_INT): Renamed to SUM_SIZE_INT to better reflect
1443         its intent, and moved to wget.h.
1444
1445 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1446
1447         * Makefile.in: No need to clean .libs.
1448
1449 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
1450
1451         * cookies.c (parse_set_cookies): Cast pointer subtraction to int
1452         before using it with %d; AIX compiler warns on this.
1453         Reported by Jens Schleusener.
1454
1455 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
1456
1457         * http.c (gethttp): Don't prepend / here.
1458
1459         * cookies.c (cookie_handle_set_cookie): Prepend / to PATH.
1460         (cookie_header): Ditto.
1461
1462 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
1463
1464         * init.c: opt.verbose must be declared as int.
1465
1466 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
1467
1468         * cmpt.c (strpbrk): Removed.
1469         (mktime): Removed.
1470         Include <time.h>.
1471
1472 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
1473
1474         * utils.c (read_file): Ditto.
1475
1476         * main.c (main): Use struct_fstat.
1477
1478         * mswindows.h (struct_fstat): Define a struct_fstat to deal with
1479         the fact that Borland 5.5 has 64-bit stat, but not 64-bit fstat!
1480
1481 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
1482
1483         * sysdep.h: Remove code that deals with Watcom.
1484
1485 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1486
1487         * all: Use bool instead of int and false/true instead of 0/non-0
1488         for boolean variables and values.
1489
1490 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1491
1492         * sysdep.h: Include the stdbool.h/_Bool/bool blurb from Autoconf.
1493
1494 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1495
1496         * init.c (cmd_lockable_boolean): Removed.
1497
1498 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1499
1500         * cookies.c (struct cookie): Use 1-bit bitfields for booleans
1501         which makes the structure takes less space at no cost in
1502         complexity.
1503
1504 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1505
1506         * Makefile.in ($(OBJ)): Add the config.h dependency.
1507
1508 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1509
1510         * openssl.c, connect.c, host.c: Replace instances of #ifdef
1511         ENABLE_DEBUG if (opt.debug) {...} #endif with IF_DEBUG {...}.
1512
1513         * main.c: Rename the IF_DEBUG defined here to WHEN_DEBUG.
1514
1515         * wget.h (IF_DEBUG): New macro.
1516         (DEBUGP): Define in terms of IF_DEBUG.
1517
1518 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1519
1520         * http.c (gethttp): Only handle --set-cookies (and assert that
1521         cookie jar exists) if opt.cookies is true.  Failure to do so
1522         triggered the assert when --no-cookies was used and the server
1523         sent a Set-Cookie header.  Ouch!
1524
1525 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1526
1527         * connect.c (select_fd): Expect select() to exist.
1528
1529         * utils.c (xsleep): Always use select() as sleep fallback on
1530         non-Windows platforms.
1531
1532         * ptimer.c: Delete the implementation of PTIMER_TIME.
1533
1534         * main.c: Assume existence of signal(), test for different signal
1535         names instead.
1536
1537         * cmpt.c: Better document reasons why certain functions are
1538         included.
1539
1540 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
1541
1542         * Makefile.in: Remove the manually maintained dependency list;
1543         make all object files depend on every header.
1544
1545 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
1546
1547         * hash.c: Rename "mapping" to "cell" to avoid confusion with the
1548         term "mapping" (or "map") sometimes being used for the entire hash
1549         table.  Also rename "non-empty" to "occupied" for easier reading
1550         of if (!NON_EMPTY (...)) ... .
1551
1552 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
1553
1554         * main.c, ptimer.c, sysdep.h, utils.c: Use #elif to simplify reading of
1555         chained if-else-else-else-... statements.
1556
1557 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
1558
1559         * all: Return type of signal handlers is `void'.  Include signal.h
1560         unconditionally.
1561
1562         * all: Don't explicitly cast values returned by malloc.  We no
1563         longer support ancient compilers that don't declare malloc, and we
1564         never supported C++ builds.
1565
1566 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
1567
1568         * all: Don't declare errno.  Include both time.h and sys/time.h,
1569         as long as sys/time.h exists.  Don't dereference function pointers
1570         when invoking the functions they point to.
1571
1572         * cmpt.c (memmove): Remove function mandated by C89.
1573         (strerror): Ditto.
1574         (strstr): Ditto.
1575
1576         * all: Undo the K&R-ization changes from 2005-05-03.
1577
1578         * all: Remove support for K&R compilers: use C89 function
1579         declarations, remove definition of PARAMS, remove support for
1580         varargs, and remove ansi2knr.  Assume the presence of time.h,
1581         string.h, and other headers mandated by C89.
1582
1583 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
1584
1585         * init.c (cmd_lockable_boolean): Don't recognize literal "2" and
1586         "-1" values; unlike 0 and 1, those should never be exposed to the
1587         user.  Update the error message to be more self-consistent, as
1588         proposed by Benno Schulenberg.
1589
1590 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
1591
1592         * http.c (gethttp): Don't free "head" before using it to save
1593         headers.
1594
1595 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
1596
1597         * http.c (gethttp): When -E is in use, check for file existence
1598         after appending ".html" to the name and modify the file name if
1599         necessary.
1600
1601 2005-06-17  Hrvoje Niksic  <hniksic@xemacs.org>
1602
1603         * connect.c (socket_has_inet6): Removed.
1604
1605         * host.c (lookup_host): Don't use the AI_ADDRCONFIG getaddrinfo
1606         hint.
1607
1608 2005-06-16  Hrvoje Niksic  <hniksic@xemacs.org>
1609
1610         * init.c (cmd_lockable_boolean): Improve the error message so it
1611         lists the more useful values first.
1612
1613 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
1614
1615         * http.c (gethttp): Also report the system error when the POST
1616         data file is missing.
1617
1618 2005-06-15  Benno Schulenberg  <benno@nietvergeten.nl>
1619
1620         * ftp.c, http.c, connect.c, cookies.c, html-url.c, init.c, res.c:
1621         Gettext-ize messages that were previously missed.
1622
1623 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
1624
1625         * host.h (ip_address): Remove the trailing comma from the type
1626         enum in the no-IPv6 case.
1627
1628         * main.c (struct cmdline_option): Remove the trailing comma from
1629         the enum.
1630
1631         Reported by Jens Schleusener.
1632
1633 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
1634
1635         * url.c (strpbrk_or_eos): Check for a recent GCC version before
1636         using the statement-as-expression extension.
1637
1638 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
1639
1640         * http.c (gethttp): Don't attempt to "skip short body" if we're
1641         issuing a HEAD request (in which case the response head is not
1642         followed by a body).
1643
1644 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
1645
1646         * init.c (cmd_spec_header): Don't split the string along the
1647         commas using cmd_vector; just append the new value using
1648         vec_append instead.
1649
1650         * utils.c (vec_append): New function.
1651
1652 2005-05-27  Andreas Beckmann  <debian@abeckmann.de>
1653
1654         * html-url.c (tag_handle_link): Mark the content from the <link
1655         src="..."> tag as expecting HTML.
1656
1657 2005-05-24  Hrvoje Niksic  <hniksic@xemacs.org>
1658
1659         * http.c (http_atotm): Document the origin of the "cookie date"
1660         format.
1661
1662 2005-05-21  Hrvoje Niksic  <hniksic@xemacs.org>
1663
1664         * init.c (setval_internal): Report exact command name alongside
1665         the "display name".
1666
1667 2005-05-18  Hrvoje Niksic  <hniksic@xemacs.org>
1668
1669         * cookies.c (update_cookie_field): Explicitly cast -1 to time_t to
1670         cope with systems where time_t is unsigned.
1671
1672         * cookies.c: Remove unnecessary casts to time_t from values
1673         already of that type.
1674
1675 2005-05-17  Hrvoje Niksic  <hniksic@xemacs.org>
1676
1677         * ftp.c (ftp_loop_internal): Same here.
1678
1679         * http.c (http_loop): Don't clobber the file when -c is specified
1680         and the first attempt to retrieve the file fails.
1681
1682 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
1683
1684         * openssl.c (ssl_check_certificate): Print all issues with a
1685         certificate.
1686
1687 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
1688
1689         * ftp-basic.c: Don't xfree() the line returned by ftp_response if
1690         the returned code is not FTPOK.
1691
1692 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
1693
1694         * init.c (cleanup): Don't free the non-existent opt.ftp_acc.  Free
1695         the SSL-related stuff.
1696
1697 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
1698
1699         * ftp.c (print_length): Consistently print \n at end of the
1700         "Length" line.
1701
1702 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
1703
1704         * openssl.c (ssl_connect): Announce the beginning and the end of
1705         the SSL handshake when in debug mode.
1706
1707         * wget.h (PTR_FORMAT): New macro for easier printing of pointer
1708         values.  Use %0*lx along with PTR_FORMAT instead of %p.
1709
1710 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
1711
1712         * http.c (gethttp): Would forget to close the connection when
1713         keep_alive was not used.
1714
1715 2005-05-13  Hrvoje Niksic  <hniksic@xemacs.org>
1716
1717         * openssl.c (pattern_match): Document the code that decides
1718         whether "*" matches ".".
1719
1720 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
1721
1722         * ftp-ls.c (ftp_index): Use %d to print the port number, which is
1723         now int.
1724         From Steven M. Schweda's VMS patches.
1725
1726 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
1727
1728         * url.c (rewrite_shorthand_url): Don't rewrite "https://host" to
1729         "ftp://https//host" when SSL is not used.
1730
1731 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
1732
1733         * openssl.c (ssl_check_server_identity): Renamed to
1734         ssl_check_certificate because it does more than just checking the
1735         server's identity.
1736         (ssl_check_certificate): Tell the user about
1737         --no-check-certificate.
1738
1739 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
1740
1741         * openssl.c (ssl_init): Always use SSL_VERIFY_NONE, so that the
1742         handshake finishes even if the certificate is invalid.  That way
1743         ssl_check_server_identity can provide better diagnostics on why
1744         the verification failed.
1745
1746 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
1747
1748         * openssl.c (pattern_match): New function.
1749         (ssl_check_server_identity): Treat peer certificate common name as
1750         wildcard.
1751
1752 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
1753
1754         * openssl.c (ssl_check_server_identity): Print certificate subject
1755         and issuer.
1756
1757 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
1758
1759         * res.c (res_register_specs): Correctly pass pointers to
1760         hash_table_get_pair.
1761
1762 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
1763
1764         * http.c (gethttp): Call ssl_check_server_identity.
1765
1766         * openssl.c (ssl_check_server_identity): New function, verifies
1767         that the host name in the certificate matches the actual host
1768         name.
1769         (verify_cert_callback): Removed, since it didn't do anything
1770         except returning the preverify_ok argument.
1771
1772         * connect.c (fd_transport_context): Allow retrieval of the context
1773         pointer registered with fd_register_transport.
1774
1775 2005-05-09  Hrvoje Niksic  <hniksic@xemacs.org>
1776
1777         * openssl.c (verify_cert_callback): Renamed from verify_callback.
1778         Always return the received "ok" value.  Print the X509 name in
1779         debug mode.
1780         (ssl_init): Enable partial writes in SSL context.
1781
1782 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
1783
1784         * http.c (http_loop): Check for wildcards in the URL path
1785         component, not in the whole URL.
1786
1787         * ftp.c (ftp_loop): Check for wildcards in URL path before
1788         unescaping, so the users can escape globbing metacharacters with %
1789         escapes.
1790
1791 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
1792
1793         * init.c (run_command): Correctly interpret the return value of
1794         parse_line.
1795         (commands): Re-alphabetize.
1796
1797 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
1798
1799         * netrc.c (parse_netrc): Explicitly check for assignment != NULL
1800         to silence warning from Borland C.
1801
1802         * url.c (sync_path): Don't unnecessarily increment p.
1803         (url_parse): Don't unnecessarily set url_encode to NULL just
1804         prior to return from the function.
1805
1806 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
1807
1808         * log.c (escnonprint_internal): Place variable declarations
1809         before other statements.
1810
1811 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
1812
1813         * html-url.c: Include recur.h.
1814
1815         * http.c (request_new): Define as accepting no args.
1816
1817 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
1818
1819         * url.c (strpbrk_or_eos): Made inline.  Use strchr(s, '\0') for
1820         finding the NUL char position.
1821
1822 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
1823
1824         * url.c (decide_copy_method): Renamed to char_needs_escaping.
1825         Since it now returns only two possible values, change it to return
1826         boolean (int).
1827
1828 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
1829
1830         * ftp-basic.c (ftp_request): Prevent newlines in VALUE causing
1831         inadvertent sending of multiple FTP commands.
1832
1833 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
1834
1835         * url.c (decide_copy_method): Never cause reencode_escapes to
1836         decode % escapes; it is too intrusive and breaks some servers.
1837
1838 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
1839
1840         * http.c (gethttp): When tunnelling SSL traffic over proxy with
1841         CONNECT, we're really talking to the remote server directly.
1842         Because of this, the request-line argument must be the URL path
1843         rather than the whole URL, as it would be when using regular
1844         proxies.
1845         Reported by Charles Lane.
1846
1847 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
1848
1849         * init.c (cmd_spec_useragent): Allow empty User-Agent.
1850
1851         * http.c (gethttp): Don't print "unknown authentication scheme"
1852         for failed Basic authentication.
1853         (SET_USER_AGENT): Don't set user-agent if opt.useragent is empty.
1854         (gethttp): Use alloca for allocation of www_authenticate.
1855
1856 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
1857
1858         * main.c (print_help): Fix wording of --secure-protocol help text.
1859
1860 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
1861
1862         * cmpt.c (strstr): Updated from glibc 2.3.5.
1863
1864 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1865
1866         * http.c (http_atotm): Zero out the whole struct tm being passed
1867         to strptime.
1868
1869 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1870
1871         * main.c (main): Propagate option name to setoptval.
1872
1873         * init.c (setoptval): Accept another argument, OPTNAME.  Propagate
1874         that argument as the option name independently of the actual
1875         command, determined by command_by_name(com).
1876
1877 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1878
1879         * init.c (parse_line): Make the return value indicate whether
1880         there was a syntax error or a setter failed.
1881         (run_wgetrc): Return an indication on whether an error has been
1882         encountered.
1883         (initialize): Abort if there have been errors running either
1884         .wgetrc file.
1885
1886 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1887
1888         * log.c (copy_and_escape): Slightly reduce code repetition between
1889         the two loops.
1890
1891 2005-05-05  Charles C.Fu  <ccwf@bacchus.com>
1892
1893         * utils.c (proclist): Strip leading slash when calling fnmatch
1894         too, otherwise wildcard comparisons always fail.
1895
1896 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1897
1898         * utils.c (touch): Set access time to current time.
1899
1900 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1901
1902         * url.c (url_unescape): Don't unescape %00, it effectively
1903         truncates the string.
1904
1905 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1906
1907         * log.c (copy_and_escape): Replace the FOR_URI argument with a
1908         slightly more general mechanism for specifying different kinds of
1909         escape.
1910
1911 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1912
1913         * ftp-basic.c (ftp_response): Fix printing FTP server response.
1914
1915 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
1916
1917         * retr.c (limit_bandwidth_reset): Reset sleep_adjust.
1918         (limit_bandwidth): Don't allow huge "adjustment" values that
1919         result from being suspended for a while.
1920
1921 2005-05-04  Hrvoje Niksic  <hniksic@xemacs.org>
1922
1923         * wget.h: If gettext was found but libtintl.h wasn't, declare
1924         gettext's return type to avoid type mismatches.
1925
1926 2005-05-03  Hrvoje Niksic  <hniksic@xemacs.org>
1927
1928         * url.c (url_parse): Rename label `error' to avoid conflict with
1929         identifier.
1930
1931         * retr.c (fd_read_body): Rename label `out' to avoid conflict with
1932         identifier.
1933         (fd_read_hunk): Use explicit double constant.
1934         (retrieve_from_file): Don't use string concatenation.
1935         (sleep_between_retrievals): Make sure xsleep is called with a
1936         `double' argument.
1937         (no_proxy_match): Define as static, like it is declared.
1938
1939         * progress.c (bar_create): Use 0.0 instead of 0 because K&R
1940         compilers can't automatically promote it.
1941
1942         * http-ntlm.c (ntlm_output): Replace \xHH sequences with \OOO for
1943         the sake of old compilers.
1944
1945         * ftp.c (ftp_loop_internal): Don't use string concatenation.
1946
1947         * http.c (request_send): Use explicit double constants when
1948         calling fd_read and fd_write.
1949         (post_file): Ditto.
1950         (gethttp): Ditto.
1951         (skip_short_body): Ditto.
1952
1953         * ftp-basic.c: When calling fd_write, specify the last argument as
1954         a `double' constant for the sake of K&R compilers which don't see
1955         the prototype and therefore can't promote it to double
1956         automatically.
1957
1958         * cookies.c (cookie_jar_load): Rename abort label to abort_cookie
1959         to avoid name conflict in K&R compilers.
1960
1961 2005-04-29  Hrvoje Niksic  <hniksic@xemacs.org>
1962
1963         * ptimer.c (posix_init): Since we allow _POSIX_MONOTONIC_CLOCK==0,
1964         it is not enough to check for _POSIX_MONOTONIC_CLOCK-0, we must
1965         also check for defined(_POSIX_MONOTONIC_CLOCK).
1966
1967 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
1968
1969         * ftp.c, hash.c, connect.c, host.c, http.c: Remove unreached code,
1970         such as "break" following return or abort.
1971
1972 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
1973
1974         * init.c (commands): Wrap the use of opt.random_file in #ifdef
1975         HAVE_SSL.
1976
1977 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
1978
1979         * http.c (gethttp): Correctly set the user agent.
1980
1981 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
1982
1983         * init.c (cmd_spec_useragent): Free the old value of
1984         opt.useragent before setting the new one.
1985
1986 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
1987
1988         * main.c: Map --ftp-password, --http-password and --proxy-password to
1989         the new ftppassword, httppassword and proxypassword commands
1990         respectively.  Document the --user and --password options in the help
1991         string.
1992         
1993 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
1994
1995         * ftp.c: Add support for --user and --password.
1996         
1997         * http.c: Add support for --user and --password.
1998         
1999         * init.c: Deprecated ftppasswd, httppasswd, login, passwd and
2000         proxypasswd commands.  Added ftppassword, ftpuser, httppassword,
2001         password, proxypassword and user commands.
2002
2003         * main.c: Renamed --ftp-passwd to --ftp-password.  Added --ftp-user,
2004         --http-password, --password, --proxy-password and --user.  Deprecated
2005         --http-passwd and --proxy-passwd.  Added documentation for new options
2006         and removed documentation for deprecated options in the help string.
2007         
2008         * options.h (struct options): Added user and passwd members to handle
2009         --user and --password respectively.  Renamed ftp_acc and ftp_pass
2010         members to ftp_user and ftp_passwd for consistency.
2011
2012 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
2013
2014         * main.c (print_help): Advertise "DER", not "ASN1".
2015
2016 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
2017
2018         * openssl.c (init_prng): Disable the weak random seed by default.
2019
2020         * http.c (gethttp): Simplify SSL initialization; disable SSL when
2021         anything goes wrong with the initialization.
2022
2023         * options.h (struct options): New option opt.random_file.
2024
2025 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
2026
2027         * init.c: Wrap private key commands in IF_SSL.
2028
2029 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
2030
2031         * openssl.c (ssl_init): Ditto.
2032
2033         * options.h (struct options): Allow separate specification of key
2034         type and certificate type.
2035
2036         * init.c (cmd_spec_cert_type): Provide a "der" synonym for "asn1"
2037         certificate encoding.
2038
2039 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
2040
2041         * openssl.c: Renamed "gen_sslfunc.c" to "openssl.c" and
2042         "gen_sslfunc.h" to "openssl.h".  This reflects the intent of
2043         openssl.c encapsulating the OpenSSL-specific code.
2044
2045 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
2046
2047         * init.c: Renamed "closure" (a synonym for context in some
2048         cultures) to "place", which more accurately reflects the usage.
2049
2050 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
2051
2052         * gen_sslfunc.c (ssl_init): Use default locations for loading the
2053         certificate bundles.
2054         (ssl_init_prng): Disable the cryptographically weak PRNG
2055         initialization fallback.
2056
2057         * init.c: Renamed SSL command-line arguments and wgetrc commands.
2058         (defaults): Check the server certificate by default.
2059
2060 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
2061
2062         * cookies.c (cookie_handle_set_cookie): Delete the part of the
2063         path after the trailing slash.
2064
2065         * http.c (gethttp): Call cookie_handle_set_cookie with path that
2066         begins with '/'.
2067
2068 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
2069
2070         * http.c (gethttp): Call skip_short_body only if keep_alive is in
2071         use.
2072         (gethttp): Send the User-Agent header with the CONNECT request as
2073         well.
2074
2075 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
2076
2077         * main.c (option_data): Removed support for the undocumented flag
2078         --use-proxy.
2079
2080 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
2081
2082         * main.c (option_data): Don't treat -Y as a boolean switch; treat
2083         it as a value switch instead, so "-Y off" continues to work.
2084
2085 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
2086
2087         * utils.c (aprintf): Delete unreachable statement.
2088
2089 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
2090
2091         * host.c (cmp_prefer_ipv4): New function.
2092         (cmp_prefer_ipv6): New function.
2093         (lookup_host): Use the appropriate comparator according to
2094         opt.prefer_family.
2095
2096         * init.c: New option prefer_family.
2097
2098         * host.c (is_valid_ipv6_address): Spell NS_* constants in lower
2099         case to avoid clash with system headers.
2100         (lookup_host): Reorder the addresses so that IPv4 ones come first.
2101
2102         * utils.c (stable_sort): New function.
2103
2104 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
2105
2106         * connect.c (retryable_socket_connect_error): Return 0 for
2107         ENETUNREACH and EHOSTUNREACH.
2108
2109 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
2110
2111         * cmpt.c: Reenable the memmove implementation for systems that
2112         lack it.
2113
2114         * http.c (gethttp): Store the "authorized" state of the persistent
2115         connection.
2116         (request_remove_header): New function.
2117         (gethttp): Don't send the "Basic" authentication if the connection
2118         is already authorized.
2119
2120 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
2121
2122         * utils.c (base64_encode): Treat input as unsigned chars.
2123         Required for correct encoding of binary stuff.
2124
2125 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
2126
2127         * http-ntlm.c: Format the function definitions in an
2128         ansi2knr-friendly fashion.
2129
2130 2005-04-22  Hrvoje Niksic  <hniksic@xemacs.org>
2131
2132         * http.c (gethttp): Handle multiple WWW-Authentication headers,
2133         only one of which is recognized.  Those are sent by IIS with NTLM
2134         authorization.
2135         (create_authorization_line): Propagate information whether
2136         authorization is finished.
2137         (gethttp): Only stop authorization when it's really finished, not
2138         after fixed two steps.
2139
2140 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
2141
2142         * gen_sslfunc.c (ssl_init): Fix warning message text; mark the
2143         message as translatable.
2144
2145 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
2146
2147         * main.c (print_help): Print the EGD option outside the cluster of
2148         SSL options.
2149
2150 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
2151
2152         * http-ntlm.c (ntlm_output): Fix setting the domain.
2153         Suggested by Sami Krank.
2154
2155 2005-04-20  Mauro Tortonesi  <mauro@ferrara.linux.it>
2156
2157         * connect.c: Set IPV6_V6ONLY socket option when -6 switch is used.
2158
2159 2005-04-20  FUJISHIMA Satsuki  <sf@FreeBSD.org>
2160
2161         * http.c (request_set_header): Fix the check whether a new header
2162         needs to be allocated.
2163
2164 2005-04-18  Hrvoje Niksic  <hniksic@xemacs.org>
2165
2166         * utils.c (base64_encode): Use the parameter order that makes more
2167         sense.  Return the length of the base64 written.  Updated all
2168         callers.
2169
2170 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
2171
2172         * http.c (request_set_header): Free NAME when VALUE is NULL and
2173         freeing the header name is requested.
2174
2175 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
2176
2177         * snprintf.c (fmtstr): Declare VALUE as const char *.
2178         Based on patch by Russ Allbery.
2179
2180 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
2181
2182         * snprintf.c (fmtfp): More correct handling of significant digit
2183         count with %g -- 0.002 has one significant digit, not three.
2184
2185 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
2186
2187         * retr.c (fd_read_body): Respect read timeout with non-interactive
2188         or no progress gauge -- treat ETIMEDOUT specially only when
2189         progress_interactive.
2190         Reported by FUJISHIMA Satsuki.
2191
2192 2005-04-16  FUJISHIMA Satsuki  <sf@FreeBSD.org>
2193
2194         * http.c (gethttp): Don't use HTTP/1.0 persistent connections over
2195         proxy.
2196
2197 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
2198
2199         * snprintf.c: Use the PARAMS macro to handle prototypes.  Write
2200         function definitions in the ansi2knr-friendly way.
2201         (fmtstr): If string precision is specified, don't read VALUE past
2202         it.
2203         (dopr): Actually print %g and %e formats.
2204         (fmtfp): Fix a bug that caused 0.01 to be printed as 0.1.
2205         (fmtfp): Use LLONG in floating point conversions to be able to
2206         convert more digits.
2207         (fmtfp): Interpret precision as number of significant digits with
2208         %g.
2209         (fmtfp): Omit trailing decimal zeros with %g.
2210
2211         * snprintf.c: Don't include <ctype.h> because none of it is used.
2212         Include strings.h/string.h, as per Autoconf.
2213
2214 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
2215
2216         * ptimer.c: Use _POSIX_TIMERS - 0 > 0, which handles the case when
2217         _POSIX_TIMERS is defined but empty, as well as the case when it is
2218         undefined.  Do the same with the check for _POSIX_MONOTONIC_CLOCK.
2219         Suggested by Larry Jones.
2220
2221 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
2222
2223         * ptimer.c: Check that _POSIX_TIMERS is defined as well as > 0.
2224         Problem reported by Steven M. Schweda.
2225
2226 2005-04-14  Hrvoje Niksic  <hniksic@xemacs.org>
2227
2228         * http.c (skip_short_body): Print the skipped body data in debug
2229         mode.
2230         (skip_short_body): Don't skip more than 4k of body data.
2231         (skip_short_body): Return whether the skipping was successful.
2232         (gethttp): If skip_short_body failed, invalidate the connection.
2233
2234 2005-04-12  Gisle Vanem  <giva@bgnett.no>
2235
2236         * ftp.c (getftp): Ditto.
2237
2238         * http.c (gethttp): Open the output file in binary mode.
2239
2240 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
2241
2242         * hash.c: Conditionalize including config.h on HAVE_CONFIG_H
2243         instead of on STANDALONE.
2244
2245 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
2246
2247         * gen_sslfunc.c (ssl_print_errors): Made static.
2248         (ssl_print_errors): Eliminate potentially dangerous fixed-size
2249         error buffer.  Passing NULL to ERR_error_string causes it to use
2250         its own static buffer, which is fine for our purposes.
2251
2252         * gen_sslfunc.c: Include gen_sslfunc.h.  Make the declarations of
2253         ssl_init and ssl_conect match the actual definitions.
2254         (ssl_connect): Simply return a boolean, the SSL context is no
2255         longer useful as a return value.
2256
2257         * retr.c: Don't include SSL headers; we don't need them.
2258
2259 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
2260
2261         * config-post.h: Don't define _VA_LIST under Solaris; it breaks
2262         compilation with GCC 3.4 under Solaris 10.  (It was defined to
2263         avoid a warning with previous versions of GCC.)
2264
2265 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
2266
2267         * xmalloc.c (register_ptr): Warn the user to increase SZ prior to
2268         aborting.
2269
2270 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
2271
2272         * convert.c (convert_cleanup): Free converted_files.
2273
2274 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
2275
2276         * wget.h (DEBUGP): Use __builtin_expect to give a hint to GCC that
2277         opt.debug is false in the vast majority of cases.
2278
2279 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
2280
2281         * config-post.h: Declare alloca as void *, not char *.
2282
2283 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
2284
2285         * recur.c (download_child_p): When -p is used, (temporarily)
2286         ignore accept/reject rules for HTMLs, even when they are at the
2287         maximum recursion depth.  That is because with -p we are, if
2288         necessary, overstepping the max. depth to get the requisites.
2289
2290 2004-06-12  Larry Jones <lawrence.jones@ugsplm.com>
2291
2292         * recur.c (download_child_p): Correct the logic in check number 6:
2293         test opt.reclevel (not DEPTH) against INFINITE_RECURSION.
2294
2295 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
2296
2297         * url.c: Use "static const" in preference to "const static".
2298         Sun's cc warns that "storage class after type is obsolescent".
2299
2300         * url.c (urlchr_table): Don't mark ~ as unsafe, too many broken
2301         web sites are confused when ~ is changed to %7E.  Their servers
2302         redirect /%7Efoo/ to /~foo/, which Wget again accesses using %7E,
2303         causing further redirections, therefore looping infinitely.  See
2304         Debian bug #301624 for an example.
2305
2306 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
2307
2308         * alloca.c: Include wget.h to be able to use xmalloc.  In addition
2309         to defining malloc to xmalloc, also define free to xfree.
2310
2311 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
2312
2313         * http-ntlm.c (ntlm_output): Use "char", not "unsigned char" for
2314         ntlmbuf.  Our base64 functions accept char anyway.
2315         (ntlm_output): Join up the format string, since we nominally
2316         support K&R compilers.
2317         (ntlm_output): Ditto.
2318
2319 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2320
2321         * ptimer.c: Use Windows timers under Cygwin, whose POSIX timer
2322         implementation is incomplete.
2323
2324 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2325
2326         * ptimer.c (struct ptimer): Remove the unused initialized field.
2327
2328         * ptimer.c: Renamed function parameters from WT (which used to
2329         stand for wget_timer or wtimer) to PT.
2330
2331 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2332
2333         * ptimer.c (posix_init): Be smarter about choosing clocks.  In
2334         decreasing order of preference, use CLOCK_MONOTONIC,
2335         CLOCK_HIGHRES, and CLOCK_REALTIME.
2336         (ptimer_allocate): Removed.
2337
2338         * ptimer.c: Refactor the code by cleanly separating the
2339         architecture-dependent code from the architecture-independent
2340         code.
2341
2342 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2343
2344         * ptimer.c (ptimer_init): Explicitly check that
2345         _POSIX_MONOTONIC_CLOCK is *both* defined and >=0.  (Undefined
2346         symbols are >=0.)
2347
2348 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2349
2350         * ptimer.c (ptimer_diff): Fix typo affecting Windows build.
2351
2352 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2353
2354         * ptimer.c (ptimer_init): In fact, _POSIX_MONOTONIC_CLOCK needs to
2355         be >= 0.
2356
2357         * ptimer.c (ptimer_init): Check whether _POSIX_MONOTONIC_CLOCK is
2358         defined instead of whether it's greater than 0.  glibc defines it
2359         to 0, but still makes it available via sysconf.
2360
2361 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2362
2363         * mswindows.c (str_to_int64): Rename OVERFLOW and UNDERFLOW to
2364         INT64_OVERFLOW and INT64_UNDERFLOW, since those names are used.
2365
2366 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
2367
2368         * ptimer.c: New file.  Move the "wtimer" functions from utils.c to
2369         this file and rename them to ptimer_.
2370
2371 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
2372
2373         * host.c (NO_ADDRESS): Define NO_ADDRESS only after the system
2374         headers have been included.
2375
2376 2005-04-06  Hrvoje Niksic  <hniksic@xemacs.org>
2377
2378         * http.c (pconn): Include NTLM data, which is per-connection.
2379         (known_authentication_scheme_p): Recognize NTLM authorization.
2380         (create_authorization_line): Call ntlm_input and ntlm_output.
2381
2382         * http-ntlm.c: New file, donated by Daniel Stenberg and originally
2383         written for curl, heavily modified for Wget.
2384
2385         * utils.c (base64_encode): Relocated from http.c, since it is now
2386         used by http-ntlm.c, and will possibly be used elsewhere.
2387         (base64_decode): New function, originally based on code from GNU
2388         recode.
2389
2390 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
2391
2392         * ftp.c (ftp_loop): Ditto.
2393
2394         * ftp-basic.c (ftp_pasv): Use the xzero shorthand for memset(0).
2395         (ftp_lpsv): Ditto.
2396
2397 2005-04-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
2398
2399         * Makefile.in: removed string_t.c from list of source files.
2400
2401 2005-04-04  Mauro Tortonesi  <mauro@ferrara.linux.it>
2402
2403         * string_t.c: Removed.
2404         
2405         * string_t.h: Removed.
2406
2407 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
2408
2409         * url.c (rewrite_shorthand_url): Only accept recognized schemes.
2410         That way "foo:80" will correctly be rewritten to "http://foo:80"
2411         instead of left unchanged and ultimately rejected because of
2412         "unsupported scheme foo".
2413
2414 2005-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
2415
2416         * utils.c (number_to_string): Avoid explicit 64-bit constants;
2417         construct them by multiplication at compile-time.
2418
2419         * utils.c, elsewhere: Don't append "L" to 32-bit integer
2420         constants; we aren't really compilable on 16-bit systems anyway.
2421
2422         * hash.c (prime_size): Remove primes larger than 2^31, but include
2423         2^31-1, which is prime.
2424
2425 2005-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
2426
2427         * utils.c (string_set_to_array): New function.
2428
2429         * convert.c: Replace the use of "slists" with sets/hash-tables,
2430         which in fact suit the intended purpose much better.
2431         downloaded_html_list is removed altogether.
2432
2433 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
2434
2435         * ftp.h (enum): Rename GLOBALL, GETALL, and GETONE to
2436         GLOB_GLOBALL, GLOB_GETALL, and GLOB_GETONE to avoid conflict with
2437         Linux headers.
2438
2439 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
2440
2441         * utils.c (numdigit): More correct handling of negative numbers.
2442
2443 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
2444
2445         * http.c (gethttp): Print the human-readable size.
2446
2447         * ftp.c (getftp): Print the human-readable size of the file to be
2448         downloaded.
2449
2450         * utils.c (human_readable): New function.
2451
2452         * utils.c: Renamed "legible" to "with_thousand_seps",
2453         "legible_large_int" to "with_thousand_seps_large", and "legible_1"
2454         to "add_thousand_seps".
2455
2456 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
2457
2458         * http.c (gethttp): Inhibit persistent connections when talking to
2459         proxies, as mandated by RFC 2068.
2460
2461 2005-03-20  Hrvoje Niksic  <hniksic@xemacs.org>
2462
2463         * url.c (unescape_single_char): New function.
2464         (url_escape_dir): Use it to unescape slashes in directory
2465         components.
2466         (url_string): Escape unsafe chars in host name, except for the ':'
2467         charaters, which can appear in IPv6 addresses.
2468
2469         * main.c (main): Don't access the cookie jar directly.
2470
2471         * log.c (escnonprint_internal): Correctly calculate the needed
2472         string size.  Don't forget the buffer's new size after having
2473         reallocated it.
2474         (log_cleanup): New function.  Free the escnonprint ring data.
2475
2476         * init.c (cleanup): Don't free the cookie jar explicitly, it is
2477         now done by http_cleanup.
2478         (cleanup): opt.user_headers is now a vector, free it with
2479         free_vec.
2480
2481         * http.c (gethttp): Make sure to free the request data, the status
2482         message, and the response data before returning from the function.
2483         (save_cookies): New function.
2484         (http_cleanup): Free the cookie jar here.
2485
2486         * hash.c: Renamed string_hash to hash_string and ptrhash to
2487         hash_pointer.  Exported hash_pointer.
2488
2489         * xmalloc.c: Organized malloc_table (previously malloc_debug) as a
2490         simple EQ hash table.  register_ptr and unregister_ptr are now of
2491         O(1) complexity.
2492
2493         * xmalloc.c: Renamed "*_debug" to debugging_* and "*_real" to
2494         checking_*.
2495
2496 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
2497
2498         * utils.c (debug_test_md5): Moved to gen-md5.c.
2499
2500         * mswindows.h: Don't declare inet_ntop, since we don't use it.
2501
2502         * mswindows.h: For consistency, also wrap closesocket, it being
2503         a Winsock call.
2504
2505         * mswindows.h: Don't declare sleep and usleep; we're defining
2506         xsleep now.
2507
2508         * mswindows.h (mkdir): Don't special-case Borland C, _mkdir
2509         works there as well.
2510
2511         * host.c: Don't include winsock header files; the correct ones
2512         are already included by mswindows.h.
2513
2514         * mswindows.c (xsleep): Round toward the nearest millisecond
2515         in an attempt to avoid average short sleeps.
2516
2517         * utils.c (wtimer_granularity): Report correct values for
2518         Windows timers and for high-resolution timers.
2519
2520         * utils.c (wtimer_initialize_once): New function, called to
2521         initialize the timer frequency.
2522
2523         * utils.c: Replace the use of GetSystemTime with high-resolution
2524         counters under Windows.  When high-resolution counters are
2525         unavailable, use GetTickCount().
2526
2527 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
2528
2529         * retr.c (fd_read_body): Undo the 2004-11-18 change.  Instead,
2530         always be "exact".
2531
2532 2005-03-17  Hrvoje Niksic  <hniksic@xemacs.org>
2533
2534         * ftp-basic.c (ftp_login): Don't free the string if ftp_response
2535         returned an error status because the line didn't get allocated in
2536         the first place.
2537
2538 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
2539
2540         * http.c (read_http_response_head): Limit the response size to 64k
2541         bytes.
2542
2543         * retr.c (fd_read_hunk): Accept a MAXSIZE argument that limits the
2544         number of bytes the function is allowed to allocate.
2545         (fd_read_line): Limit the line to 4096 bytes.
2546
2547 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
2548
2549         * wget.h: Include options.h after wgint has been defined.
2550
2551         * options.h (struct options): Declare options processed with
2552         cmd_bytes as wgint, not long.
2553
2554 2005-03-18  Hrvoje Niksic  <hniksic@xemacs.org>
2555
2556         * init.c (cmd_file): Use concat_strings.
2557
2558         * http.c (basic_authentication_encode): Use concat_strings.
2559
2560         * ftp-ls.c (ftp_index): Use concat_strings.
2561
2562         * ftp-basic.c (ftp_request): Use concat_strings.
2563
2564         * utils.c (concat_strings): New function.
2565
2566 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
2567
2568         * init.c (simple_atof): Handle negative numbers; skip whitespace
2569         before the number.
2570         (simple_atoi): Ditto.  Also, check for overflow and underflow.
2571         (cmd_number): Bail out on negative numbers.
2572         (parse_bytes_helper): Ditto.
2573
2574 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
2575
2576         * http.c (gethttp): Handle multiple Set-Cookie headers sent by
2577         remote server.
2578
2579 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
2580
2581         * init.c (defaults): Use passive FTP by default.
2582
2583 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
2584
2585         * mswindows.c: Provide wrappers to Winsock functions that set
2586         errno to WSAGetLastError() in case of failure.  Also provide a
2587         Windows-specific version of strerror.
2588
2589         * mswindows.h: Wrap calls to socket, bind, connect, recv, send,
2590         select, getsockname, getpeername, and setsockopt.
2591
2592 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
2593
2594         * url.c (url_parse): Reject port numbers larger than 65535.  We
2595         also check for overflow while parsing port numbers.
2596
2597 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
2598
2599         * utils.c (read_file): Don't use wgint for file size; LFS won't
2600         work since the file is mmap'ed as a whole.
2601
2602         * options.h: Don't include stdio.h.
2603
2604         * log.c: Ditto.
2605
2606         * init.c: Disambiguate assignment from non-zero test to avoid
2607         Borland C warning.
2608
2609         * http.c (response_new): Don't needlessly post-increment count.
2610
2611         * hash.c: Include stdio.h.
2612
2613         * gnu-md5.h: Don't include stdio.h.
2614
2615         * getopt.h (struct option): Always use const.
2616
2617         * ftp.c (getftp): Avoid unnecessary assignment to RES to avoid
2618         Borland C warning.
2619
2620         * ftp-ls.c: Disambiguate assignment from non-zero test to avoid
2621         Borland C warning.
2622
2623         * cmpt.c (strptime_internal): Don't initialize rp_backup when
2624         !_NL_CURRENT to avoid Borland C warning.
2625
2626 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
2627
2628         * utils.c (fopen_excl): Fix parse error when O_BINARY is
2629         available.
2630
2631 2005-03-05  Hrvoje Niksic  <hniksic@xemacs.org>
2632
2633         * url.c (url_file_name): Don't allow hosts named ".." to be
2634         appended as path elements.
2635
2636 2005-03-03  Hrvoje Niksic  <hniksic@xemacs.org>
2637
2638         * retr.c (retrieve_url): Escape location header.
2639
2640         * http.c (print_server_response_1): Escape server response when
2641         printing it.
2642         (gethttp): Escape host name, status message, location header, and
2643         content type.
2644         (http_loop): Escape error message from server.
2645
2646         * host.c (lookup_host): Escape host name when printing it.
2647
2648         * ftp.c (getftp): Escape user name when printing it.
2649         (getftp): Escape remote file and directory for printing.
2650         (getftp): Escape server listing when printing it.
2651         (ftp_retrieve_list): Escape link name and file name.
2652         (ftp_retrieve_glob): Escape file name.
2653
2654         * ftp-basic.c (ftp_response): Escape server response when printing
2655         it.
2656
2657         * cookies.c (parse_set_cookies): Escape the cookie field when
2658         printing it.
2659         (parse_set_cookies): Escape contents of remote header.
2660         (cookie_handle_set_cookie): Escape host name and cookie domain.
2661
2662         * connect.c (connect_to_ip): Escape the host name.
2663
2664         * log.c (escnonprint): New function, used for printing strings
2665         coming from the server that possibly contain non-ASCII characters.
2666         (escnonprint_uri): Ditto.
2667
2668 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
2669
2670         * ftp.c (getftp): Ditto.
2671
2672         * http.c (gethttp): When we're not supposed to overwrite files,
2673         use fopen_excl to open the file and recompute the file name.
2674
2675         * log.c (redirect_output): Use unique_create to avoid a race
2676         condition.
2677
2678         * mswindows.c (fake_fork_child): Use unique_create.
2679
2680         * utils.c (fopen_excl): New function that opens a stdio stream
2681         with the O_EXCL flag (where available).
2682         (unique_create): New function, like unique_name, but also creating
2683         the file and returning a file pointer.
2684         (fork_to_background): Use unique_create to create the file
2685         immediately to avoid race condition with multiple instances of
2686         wget -b.
2687
2688 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
2689
2690         * host.c (lookup_host): Test for AI_ADDRCONFIG directly, instead
2691         of checking for HAVE_GETADDRINFO_AI_ADDRCONFIG.
2692
2693 2005-02-23  Hrvoje Niksic  <hniksic@xemacs.org>
2694
2695         * host.c (is_valid_ipv6_address): Move here from url.c.
2696         (lookup_host): If the address is numeric, don't print the
2697         "resolving..." line, don't set up DNS timeouts, and set the
2698         AI_NUMERICHOST hint, where available.
2699
2700 2005-02-26  Gisle Vanem  <giva@bgnett.no>
2701
2702         * utils.c: Use the nnnLL syntax under GCC.  Define struct_stat to
2703         struct _stati64 under __MINGW32__ as well as under MS VC.
2704
2705 2005-02-26  Hrvoje Niksic  <hniksic@xemacs.org>
2706
2707         * utils.c: Use the nnnI64 syntax for __int64 constants under all
2708         Windows compilers.
2709         (SPRINTF_WGINT): Use "%I64" under all Windows compilers.
2710
2711         * mswindows.h (WGINT_MAX): Use the nnnI64 syntax for
2712         __int64 constants under all Windows compilers.
2713         (struct_stat): Use `struct stati64' under Borland C.
2714         (fstat): Don't redefine to _fstati64 under Borland.
2715
2716         * mswindows.c: Define str_to_int64 under Borland C as well as
2717         under (older) Visual C.
2718
2719 2005-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
2720
2721         * ftp.c (getftp): Initialize err to suppress compiler warning.
2722
2723 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
2724
2725         * ftp.c (ftp_expected_bytes): Fix bug that caused infloop because
2726         of not correctly skipping the '(' character.
2727
2728 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
2729
2730         * mswindows.c (wget_ftello): Removed.
2731
2732         * mswindows.h: Remove bogus definition of stat.
2733         (wget_ftello): Remove the leftover ftello replacement.
2734
2735 2005-02-20  Hrvoje Niksic  <hniksic@xemacs.org>
2736
2737         * mswindows.c (wget_ftello): Wget's replacement for ftello.
2738
2739         * utils.c (file_size): Use ftello where available.
2740
2741         * ftp-ls.c (ftp_parse_unix_ls): Use str_to_wgint to parse the file
2742         size.
2743         (ftp_parse_winnt_ls): Ditto.
2744
2745         * ftp-basic.c (ftp_size): Use str_to_wgint to convert number to
2746         wgint; pass 10 instead of 0 as the BASE argument.
2747
2748         * ftp.c (ftp_expected_bytes): Use str_to_wgint to parse the file
2749         size.
2750
2751         * sysdep.h (LARGE_INT_FMT): Use __int64 as LARGE_INT on
2752         MSVC/Windows; print it with "%I64".
2753
2754         * wget.h: Define a `wgint' type, normally aliased to (the possibly
2755         64-bit variant of) off_t.
2756
2757         * all: Use `wgint' instead of `long' for numeric variables that
2758         can hold file sizes.
2759
2760         * utils.c (number_to_string): Support printing of `wgint'
2761         argument.
2762         (number_to_static_string): New function.
2763
2764         * all: Replace printf("%ld", long_value) with printf("%s",
2765         number_to_static_string(wgint_value)).
2766
2767 2005-02-18  Mauro Tortonesi <mauro@ferrara.linux.it>
2768
2769         * main.c: Added the --ftp-passwd command line option.
2770
2771         * init.c: Renamed command passwd to ftppasswd.
2772
2773 2005-02-11  Mauro Tortonesi <mauro@ferrara.linux.it>
2774         
2775         * string_t.c: Fixed a bug in do_escape and triggered escape of
2776         backslashes in string_escape to avoid ambiguities in the result
2777         string.
2778         
2779 2005-02-10  Mauro Tortonesi <mauro@ferrara.linux.it>
2780
2781         * string.h: Renamed to string_t.h to fix a compilation conflict 
2782         with the string.h header in the standard C library.
2783         
2784         * string.c: Renamed to string_t.c for consistency with string.h.
2785         
2786         * string_t.c: Ditto.
2787
2788         * string_t.h: Ditto.
2789         
2790 2004-12-31  Mauro Tortonesi <mauro@ferrara.linux.it>
2791
2792         * string.c: New file.
2793
2794         * string.h: New file.
2795
2796         * Makefile.in: Added string.c to the list of modules to compile.
2797
2798         * main.c: Updated copyright.
2799
2800 2004-11-18  Ulf Harnhammar <ulf.harnhammar.9485@student.uu.se>
2801
2802         * ftp-ls.c: Fixed a problem in ftp_parse_winnt_ls that could allow a
2803         malicious remote FTP server to crash wget.
2804
2805 2004-11-18  Hans-Andreas Engel <engel@node.ch>
2806
2807         * http.c: Enable --convert-links (-k) when a single page is downloaded
2808         via --output-document (-O).
2809
2810 2004-11-18  Mauro Tortonesi <mauro@deepspace6.net>
2811
2812         * connect.c: Minor correction to the comment in front of fd_peek.
2813
2814 2004-11-18  Leonid Petrov <nouser@lpetrov.net>
2815
2816         * retr.c: Fix a timeout problem in fd_read_body when using http_proxy.
2817
2818 2004-11-15  YAMAZAKI Makoto <Yamazaki.Makoto@fujixerox.co.jp>
2819
2820         * netrc.c: Fix termination by assertion bug in netrc parsing.
2821
2822 2004-05-09  David Fritz  <zeroxdf@att.net>
2823
2824         * mswindows.c (fake_fork): Pass entire command line to the child
2825         process.
2826
2827 2004-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
2828
2829         * http.c (gethttp): Fix typo: SCHEME_SSL -> SCHEME_HTTPS.
2830
2831 2004-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
2832
2833         * http.c (gethttp): Send the Proxy-Authorization header over
2834         non-SSL connections too.
2835
2836 2004-03-25  David Fritz  <zeroxdf@att.net>
2837
2838         * mswindows.c (fake_fork_child): Ignore error code when
2839         OpenFileMapping() fails; assume it failed because the object does
2840         not exist.
2841
2842 2004-03-24  David Fritz  <zeroxdf@att.net>
2843
2844         * mswindows.c (fake_fork): New function.
2845
2846         * mswindows.c (fork_to_background): Use it.
2847
2848 2004-03-19  David Fritz  <zeroxdf@att.net>
2849
2850         * mswindows.c (ws_hangup): Incorporate old fork_to_background()
2851         code.  Add event name argument.
2852         (fork_to_backgorund): Now a simple wrapper around ws_hangup().
2853         (ws_handler): Correctly handle the case when neither CTRLC_BACKGND
2854         nor CTRLBREAK_BACKGND are defined.  Don't bother handling close,
2855         logoff, or shutdown events.  Call ws_hangup() with the correct
2856         event name; don't assume it was CTRL+Break.
2857
2858 2004-03-19  Hrvoje Niksic  <hniksic@xemacs.org>
2859
2860         * url.c (url_parse): Decode %HH sequences in host name.
2861
2862 2004-03-04  Hrvoje Niksic  <hniksic@xemacs.org>
2863
2864         * convert.c (local_quote_string): Quote "#" as "%23" and "%" as
2865         "%25" when creating links to local files.
2866
2867 2004-03-02  David Fritz  <zeroxdf@att.net>
2868
2869         * mswindows.c (ws_percenttitle): Guard against future changes by
2870         doing nothing if the proper variables have not been initialized.
2871         Clamp percentage value.
2872
2873 2004-03-04  Gisle Vanem  <giva@bgnett.no>
2874
2875         * retr.c (fd_read_body): Don't change console title if quiet.
2876
2877 2004-02-25  David Fritz  <zeroxdf@att.net>
2878
2879         * mswindows.c (set_sleep_mode): Remove argument and return value.
2880         Call GetModuleHandle() instead of LoadLibrary()/FreeLibrary() for
2881         kernel32.dll.  Use typedef for function-pointer.  Don't cast
2882         l-value.  Don't use dereference operator when calling through
2883         function-pointer.
2884         (ws_startup): Update call to set_sleep_mode().
2885         (ws_cleanup): Remove call to set_sleep_mode().
2886
2887 2004-02-23  David Fritz  <zeroxdf@att.net>
2888
2889         * http.c (http_loop): Ditto.
2890
2891         * ftp.c (ftp_loop_internal): Update call to ws_changetitle().
2892
2893         * main.c (main): Don't bother calling ws_changetitle().
2894
2895         * mswindows.h (ws_changetitle): Update prototype.
2896
2897         * mswindows.c (ws_changetitle): Remove second argument.  Use
2898         xfree_null().
2899         (ws_percenttitle): Only update title when percentage has changed.
2900
2901 2004-02-23  David Fritz  <zeroxdf@att.net>
2902
2903         * mswindows.h: Ditto.
2904
2905         * mswindows.c: Misc. formatting/comment tweaks throughout.
2906
2907 2004-02-20  David Fritz  <zeroxdf@att.net>
2908
2909         * main.c (print_help): Remove call to ws_help().
2910
2911         * mswindows.c (ws_help): Remove.
2912
2913         * mswindows.h (ws_help): Remove.
2914
2915 2004-02-16  David Fritz  <zeroxdf@att.net>
2916
2917         * init.c (home_dir): Use aprintf() instead of xmalloc()/sprintf().
2918         Under Windows, if $HOME is not defined, use the directory that
2919         contains the Wget binary instead of hard-coded `C:\'.
2920         (wgetrc_file_name): Under Windows, look for $HOME/.wgetrc then, if
2921         not found, look for wget.ini in the directory of the Wget binary.
2922
2923         * mswindows.c (ws_mypath): Employ slightly more robust methodology.
2924         Strip trailing path separator.
2925
2926 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
2927
2928         * http.c (gethttp): Respect --ignore-length.
2929         (gethttp): Inhibit keep-alive if --ignore-length is specified.
2930
2931 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
2932
2933         * connect.c (sockaddr_set_data): Zero out
2934         sockaddr_in/sockaddr_in6.  Apparently BSD-derived stacks need this
2935         when binding a socket to local address.
2936
2937 2004-02-04  Hrvoje Niksic  <hniksic@xemacs.org>
2938
2939         * hash.c: Make the file compilable outside Wget source tree when
2940         -DSTANDALONE is used.
2941
2942 2004-01-29  Hrvoje Niksic  <hniksic@xemacs.org>
2943
2944         * utils.c (determine_screen_width): Return 0 if not running on
2945         Windows or on a TIOCGWINSZ-capable system.
2946
2947 2004-01-28  David Fritz  <zeroxdf@att.net>
2948
2949         * utils.c (determine_screen_width): Correctly determine console
2950         width under Windows.
2951
2952 2004-01-28  Christian Biere  <christianbiere@gmx.de>
2953
2954         * progress.c (bar_set_params): Fixed syntax error when HAVE_ISATTY
2955         was undefined.
2956
2957         * ftp.c (ftp_loop_internal): Allocate a larger buffer in case
2958         "try" gets translated to something large.  Ditto in http_loop in
2959         http.c.
2960
2961         * http.c (response_header_copy): Don't write to buf[BUFSIZE].
2962
2963         * ftp-opie.c (skey_response): Eliminate unnecessary string
2964         concatenation; just call gen_md5_update twice.
2965
2966 2004-01-25  Hrvoje Niksic  <hniksic@xemacs.org>
2967
2968         * utils.c (xsleep): Don't call usleep with values larger than
2969         1,000,000.
2970
2971 2003-12-16  Hrvoje Niksic  <hniksic@xemacs.org>
2972
2973         * http.c (gethttp): Fix generation of `Content-Length'.
2974
2975 2003-12-15  Gisle Vanem  <giva@bgnett.no>
2976
2977         * url.c (url_skip_credentials): Fixed return value; 'url' if no
2978         credentials.
2979
2980 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
2981
2982         * url.c (url_skip_credentials): Return a pointer directly.
2983
2984 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
2985
2986         * url.c (url_file_name): Ditto.
2987         (parse_errors): Ditto.
2988
2989         * retr.c (retr_rate): Ditto.
2990
2991         * progress.c (create_image): Ditto.
2992
2993         * netrc.c (parse_netrc): Ditto.
2994
2995         * main.c (struct cmdline_option): Ditto.
2996         (redirect_output_signal): Ditto.
2997
2998         * init.c (commands): Ditto.
2999
3000         * ftp-ls.c (ftp_index): Ditto.
3001
3002         * cookies.c (check_domain_match): Declare the pointer to a literal
3003         string as `const'.
3004
3005 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
3006
3007         * retr.c (fd_read_body): Pass total size to progress_create, not
3008         the remaining amount.
3009
3010 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
3011
3012         * retr.c (fd_read_body): Don't fiddle with "interactive timeout"
3013         if read timeout is unset.
3014
3015 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
3016
3017         * connect.c (bind_local): Don't set the IPV6_V6ONLY option on the
3018         socket.
3019
3020 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
3021
3022         * url.c (url_file_name): Respect the setting of
3023         opt.protocol_directories.
3024
3025         * main.c (main): Only check for ret=='?' when longindex is unset.
3026         (option_data): New option --protocol-directories.
3027
3028 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
3029
3030         * ftp.c (getftp): Ditto.
3031
3032         * http.c (gethttp): Correctly calculate bandwidth as total data
3033         read divided with download time.
3034
3035         * retr.c (fd_read_body): Separate the return values for data
3036         written and read.
3037
3038 2003-12-05  Hrvoje Niksic  <hniksic@xemacs.org>
3039
3040         * http.c (H_REDIRECTED): Respect the HTTP/1.1 "303 See Other"
3041         response code.
3042         Suggested by Dan Razzell.
3043
3044 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
3045
3046         * retr.c (fd_read_body): Report the amount of data *written* as
3047         amount_read.  This is not entirely logical, but that's what the
3048         callers expect, and it's not easy to change.
3049
3050         * ftp.c (ftp_loop_internal): Ditto.
3051
3052         * http.c (http_loop): Be smarter about assigning restval; if we're
3053         in the nth pass of a download, simply use the information we have
3054         about how much data has been retrieved as restval.
3055
3056         * ftp.c (getftp): Ditto for FTP "REST" command.
3057
3058         * http.c (gethttp): When the server doesn't respect range, skip
3059         the first RESTVAL bytes of the read body.  Never truncate the
3060         output file.
3061
3062         * retr.c (fd_read_body): Support skipping initial STARTPOS octets.
3063
3064 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
3065
3066         * http.c (skip_short_body): Renamed skip_body to skip_short_body;
3067         don't bother calling fd_read_body.
3068
3069 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
3070
3071         * retr.c (fd_read_body): Sanitize arguments and document them
3072         better.  Make sure the timer is created and updated only if
3073         necessary.  Updated callers.
3074
3075 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
3076
3077         * http.c (skip_body): New function.
3078         (gethttp): Use it to skip the body of the responses we don't care
3079         to download.  That allows us to reuse the connection.
3080         (gethttp): Trust that the HEAD requests will not generate body
3081         data.
3082
3083         * retr.c (fd_read_body): Don't write to OUT if it's NULL.
3084
3085 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
3086
3087         * http.c (gethttp): Initialize SSL only the first time when SSL
3088         URL is downloaded.
3089
3090 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
3091
3092         * cookies.c (cookie_header): Only generate the contents of the
3093         header, not the leading "Cookie: " or the trailing "\r\n".
3094
3095         * http.c (gethttp): When adding headers specified with `--header',
3096         allow them to override the headers generated by Wget.
3097
3098         * init.c (cmd_spec_header): Made opt.user_headers a vector.
3099
3100         * http.c (request_new): New function.  Returns a request structure
3101         which can be modified in various ways, most notably by adding HTTP
3102         headers to the request.
3103         (request_set_header): New function for adding the header to the
3104         request.  If the header is already available, it gets replaced.
3105         (request_send): Construct and send the request.
3106         (gethttp): Use the request_* functions to generate the request.
3107
3108 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
3109
3110         * http.c (gethttp): Don't include the Proxy-Authorization header
3111         in the request tunneled through proxy.
3112
3113 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
3114
3115         * http.c (gethttp): Use the CONNECT handle to establish SSL
3116         passthrough through non-SSL proxies.
3117
3118 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
3119
3120         * init.c: Don't #include netinet/Winsock stuff.
3121
3122 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
3123
3124         * http.c: Deleted the old functions header_process,
3125         header_extract_number, header_exists, header_strdup,
3126         http_process_range, http_process_none, http_process_type, and
3127         http_process_connection.
3128
3129         * http.c (response_new): New function.
3130         (response_header_bounds): Ditto.
3131         (response_header_copy): Ditto.
3132         (response_header_strdup): Ditto.
3133         (response_status): Ditto.
3134         (gethttp): Use the new response_* functions to parse the response.
3135         Support HTTP/0.9 responses.
3136
3137 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
3138
3139         * progress.c (create_image): Don't calculate ETA if nothing has
3140         been downloaded yet, because it causes division by zero.
3141
3142 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
3143
3144         * connect.c (bind_local): Rename sa_len to addrlen because IRIX
3145         headers define sa_len as a macro.
3146
3147 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
3148
3149         * html-parse.c (convert_and_copy): Remove embedded newlines when
3150         AP_TRIM_BLANKS is specified.
3151
3152 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
3153
3154         * ftp.c: Set con->csock to -1 where rbuf_uninitialize was
3155         previously used.
3156
3157 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
3158
3159         * Makefile.in (http$o): Added the trailing backslash that was
3160         missing.
3161
3162 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
3163
3164         * headers.c: Removed.  The file is no longer relevant, now that no
3165         special handling of headers is done by the rbuf code.  Moved
3166         portions to http.c.
3167
3168 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
3169
3170         * rbuf.c: Removed.
3171
3172         * ftp-basic.c (ftp_response): Use fd_read_line.  No longer use
3173         struct rbuf.  Updated all callers.
3174
3175         * http.c (gethttp): Use fd_read_head to read all the headers in
3176         one go.
3177         (next_header): New function.
3178
3179         * retr.c (fd_read_line): New function: reads a line from FD,
3180         leaving the rest of the data unread.
3181         (fd_read_head): New function.
3182
3183         * connect.c (fd_peek): New function, implements peeking.
3184         (poll_internal): New function.
3185         (fd_read): Use it.
3186         (fd_write): Ditto.
3187         (fd_peek): Ditto.
3188         (fd_register_transport): Allow registering a "peeker" callback.
3189
3190 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
3191
3192         * connect.c: Renamed xread/xwrite/xclose to
3193         fd_read/fd_write/fd_close.  The "x" prefix is not appropriate
3194         because the semantics have diverged from read/write/close too
3195         significantly.  Updated all callers.
3196
3197 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
3198
3199         * connect.c (sock_write): It's not necessary to initialize RES.
3200
3201 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
3202
3203         * main.c (main): Don't reference opt.ipv4_only and opt.ipv6_only
3204         if IPv6 is disabled.
3205
3206 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
3207
3208         * connect.c (socket_has_inet6): Only compile it if IPv6 is enabled
3209         and AI_ADDRCONFIG is missing.
3210
3211 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
3212
3213         * gen_sslfunc.c (ssl_init_prng): Warn the user when using a weak
3214         random seed.
3215
3216 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
3217
3218         * host.c (address_list_contains): Renamed address_list_find to
3219         address_list_contains because its result is boolean.
3220
3221 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
3222
3223         * connect.c (select_fd): Return 1 if select is not available.
3224
3225 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
3226
3227         * connect.c (connect_to_host): Don't reference address list after
3228         releasing it.
3229
3230 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
3231
3232         * main.c (print_help): Fix alignment of FTP options output.
3233
3234 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
3235
3236         * host.c (lookup_host): Check for the ability to create IPv6
3237         sockets here.
3238
3239         * init.c (defaults): Don't auto-set --inet4-only on IPv6-less
3240         systems.
3241
3242 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
3243
3244         * main.c (print_help): Fix typo in `-O' help message.  Fix docs of
3245         -Y/--proxy.  Fix docs of `--cookies' and `--glob'.  Improve docs
3246         of --convert-links.  Fix docs of SSL options.
3247
3248 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
3249
3250         * ftp-basic.c: Don't include <arpa/inet.h> and others because
3251         they're no longer needed.
3252
3253 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
3254
3255         * main.c (main): Don't allow setting of both opt.ipv4_only and
3256         opt.ipv6_only.
3257
3258         * init.c (defaults): Mark opt.ipv4_only specially when set
3259         automatically.
3260
3261 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
3262
3263         * host.c (lookup_host): Use AI_ADDRCONFIG only if the family is
3264         unspecified.  This ensures that specifying `--no-inet4' on systems
3265         where IPv6 resolves, but doesn't work behaves the same regardless
3266         of the availability of AI_ADDRCONFIG.
3267
3268 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
3269
3270         * host.c: Don't refer to the now-removed function
3271         forget_host_lookup in the documentation of lookup_host.
3272
3273 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
3274
3275         * http.c (persistent_available_p): Correctly specify the endpoint
3276         argument to socket_ip_address.
3277         (gethttp): When printing the "reusing connection to..." message,
3278         specify the host name of the reused connection, not the current
3279         host name.  That makes more sense because it provides a useful
3280         piece of information -- we know to which host we're supposed to
3281         connect anyway!
3282
3283 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
3284
3285         * init.c: Make sure the options are in alphabetic order!
3286
3287         * host.c (lookup_host): Merge lookup_host_passive and lookup_host
3288         after all -- having both would result in some code duplication.
3289         (lookup_host): Set hints.ai_family to AF_INET if ipv4_only is
3290         requested.  Likewise, set it to AF_INET6 for ipv6_only.  Specify
3291         AI_ADDRCONFIG where available.
3292         (lookup_host): New flag LH_REFRESH that specifies that a cached
3293         entry for HOST should be refreshed.
3294         (cache_query): New function.
3295         (cache_store): Ditto.
3296         (cache_remove): Ditto.
3297         (forget_host_lookup): No longer necessary, replaced with static
3298         function cache_remove.
3299
3300 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
3301
3302         * main.c: Enable -4 and -6 only if IPv6 is enabled.
3303
3304 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
3305
3306         * connect.c (register_transport): Renamed from register_extended.
3307         Explain the intended usage.
3308
3309 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
3310
3311         * url.c (uri_merge): Merging "foo" and "bar" should result in
3312         "bar", not in "foo/bar".
3313         (path_simplify): Don't remove empty path elements; don't
3314         special-case leading slash.
3315         (path_simplify): Don't swallow ".."'s at the beginning of string.
3316         E.g. simplify "foo/../../bar" as "../bar", not as "bar".
3317         (append_uri_pathel): Defang ".." path element upon encountering
3318         it.
3319
3320 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
3321
3322         * http.c (persistent_available_p): Don't attempt to talk to two
3323         different SSL sites over the same secure connection.
3324
3325 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
3326
3327         * http.c (gethttp): Ditto.
3328
3329         * ftp.c (getftp): Use retryable_socket_connect_error instead of
3330         CONNECT_ERROR.
3331
3332         * wget.h (CONNECT_ERROR): Removed.
3333
3334         * connect.c (retryable_socket_connect_error): New function instead
3335         of unsupported_socket_family_error.
3336
3337 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
3338
3339         * wget.h (CONNECT_ERROR): Use it.
3340
3341         * connect.c (unsupported_socket_family_error): New function.
3342
3343 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
3344
3345         * connect.c (bind_local): Renamed bindport to bind_local; return
3346         the socket directly.  Updated callers.
3347         (accept_connection): Renamed acceptport to accept_connection;
3348         return the created socket directly.  Updated callers.
3349
3350 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
3351
3352         * init.c (defaults): Turn on opt.ipv4_only if we're compiling with
3353         IPv6, and AI_ADDRINFO is not available, and AF_INET6 sockets can't
3354         be created.
3355
3356 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
3357
3358         * host.c (lookup_host): Document the fact that the addresses are
3359         returned in order.
3360
3361 2003-11-12  Hrvoje Niksic  <hniksic@xemacs.org>
3362
3363         * utils.c: Use limits.h only where available.
3364
3365         * hash.c: Use INVALID_PTR and INVALID_PTR_BYTE.  Include limits.h.
3366
3367 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
3368
3369         * main.c: Added options --inet4-only and --inet6-only.
3370
3371 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
3372
3373         * host.c (host_errstr): Use the more standard message "Unknown
3374         host".
3375
3376 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
3377
3378         * connect.c (connect_to_host): Use that flag to decide whether to
3379         re-resolve the host name.
3380
3381         * host.c (struct address_list): Added a flag that maintains
3382         whether the connection worked at some point.
3383
3384 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
3385
3386         * host.c (lookup_host): Special-case the numeric addresses only in
3387         the non-IPv6 case.
3388
3389 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
3390
3391         * connect.c (resolve_bind_address): Call lookup_host_passive.
3392         Make sure that opt.bind_address is resolved only once.
3393
3394         * host.c (lookup_host_passive): New function, handles "passive"
3395         lookups.
3396         (lookup_host): Remove the passive flags.  Remove the
3397         family-related flags -- use ip_default_family instead.
3398
3399 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
3400
3401         * html-url.c: Get URLs from <object data="...">.
3402
3403 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
3404
3405         * main.c (option_data): Specify the command to use for --mirror.
3406
3407 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3408
3409         * cookies.c (cookie_handle_set_cookie): Specify exact match for
3410         unspecified domains.
3411
3412 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3413
3414         * main.c (main): Removed one-letter options `-C', `-g', `-G', and
3415         `-s'.
3416
3417 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3418
3419         * main.c (main): Add --dont-remove-listing for backward
3420         compatibility with previous versions.
3421         (print_help): Fix typo, spotted by Dennis Smit.
3422
3423 2003-11-08  Gisle Vanem  <giva@bgnett.no>
3424
3425         * ftp-basic.c: Support Windows-2000 ftp servers. Win-2000 *is*
3426         Win-NT 5.0 so calling it ST_WINNT is okay I guess.
3427
3428 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3429
3430         * progress.c (update_speed_ring): Clear the speed ring when the
3431         download stalls.
3432
3433         * retr.c (get_contents): Specify 0.95s read timeout, so that the
3434         progress gauge can be updated even when data arrives very slowly
3435         or stalls.
3436
3437 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3438
3439         * utils.c (wtimer_allocate): Bless the use of wtimer_read on a
3440         timer that has merely been allocated because get_contents() does
3441         that.
3442         (wtimer_update): Abort if the timer is not initialized.
3443
3444 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3445
3446         * retr.c (get_contents): Pass the timer to limit_bandwidth().
3447
3448         * utils.c (wtimer_update): New function instead of wget_elapsed;
3449         just update the timer, but don't return anything.
3450         (wtimer_read): Read and return the last known value of the timer.
3451
3452 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3453
3454         * http.c (persistent_available_p): Instead of matching all the
3455         addresses of HOST and last host, determine the peer's IP address
3456         with socket_ip_address and see if that address is one of those
3457         HOST resolves to.
3458
3459         * host.c (address_list_match_all): Removed.
3460         (address_list_find): New function, finds an IP address in the
3461         address list.
3462
3463         * ftp.c (ftp_do_pasv): Get the peer's address here, and pass it to
3464         ftp_epsv so it doesn't need to call getpeername.
3465
3466         * ftp-basic.c (ftp_port): Use socket_ip_address instead of
3467         getpeername.
3468         (ftp_lprt): Ditto.
3469
3470         * connect.c (socket_ip_address): Replaces conaddr, generalized to
3471         either get peer's or local address.
3472         (sockaddr_get_data): Made local to this file.
3473
3474 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3475
3476         * hash.c (HASH_POSITION): Explicitly accept the hash function.
3477         (grow_hash_table): Extract ht->hash_function outside the loop.
3478         (hash_table_remove): Ditto.
3479         (hash_table_clear): Fill entries with 0xff to clear them.
3480         (hash_table_remove): Mark entries as deleted with the correct
3481         marker.
3482
3483 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3484
3485         * http.c (persistent_available_p): No reason for the host lookup
3486         to be silent -- it's a lookup like any other.
3487
3488 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
3489
3490         * connect.c (register_extended): Check that fd >= 0.
3491
3492 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
3493
3494         * connect.c (LAZY_RETRIEVE_INFO): Set LAST_INFO.
3495
3496 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
3497
3498         * hash.c (NON_EMPTY): Use the all-bit-set value as the marker that
3499         the field is empty.  This allows NULL pointer and 0 value to be
3500         used as keys, which is necessary for the connect.c code to work
3501         when fd==0.
3502         (hash_table_new): Fill mappings with 0xff.
3503         (grow_hash_table): Ditto.
3504
3505 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
3506
3507         * url.c (url_parse): Allow empty ports.
3508
3509 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
3510
3511         * main.c (print_help): Break the help string into multiple chunks.
3512         (cmdline_option): New option handler OPT_FUNCALL.  Generalized
3513         HANDLE_CMD to generic DATA.
3514         (option_data): Use the new OPT_FUNCALL feature.
3515
3516 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
3517
3518         * log.h: Declare log_init, log_close, and
3519         log_request_redirect_output here.
3520
3521 2003-11-05  Dennis Smit  <ds@nerds-incorporated.org>
3522
3523         * main.c: (main): added --preserve-permissions option.
3524
3525         * ftp.c (ftp_retrieve_list): added support for
3526         --preserve-permissions option.
3527
3528         * init.c: added support for --preserve-permission option.
3529
3530         * option.h: added support for --preserve-permission option.
3531
3532 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
3533
3534         * main.c (init_switches): New function.  Convert option_data to
3535         long_options and short_options, which can be fed to getopt_long.
3536         (main): Execute command-line options by consulting option_data.
3537
3538 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
3539
3540         * gen_sslfunc.c (ssl_read): Implement a more correct check for
3541         EINTR.
3542         (ssl_write): Ditto.
3543         (init_ssl): Use a global SSL context.
3544
3545 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
3546
3547         * connect.c (xclose): Free INFO even if it doesn't provide a
3548         closer.
3549
3550 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
3551
3552         * connect.c: Updated all callers of
3553         iread/ssl_iread/iwrite/ssl_iwrite to use xread and xwrite instead.
3554
3555         * rbuf.h (struct rbuf): Removed the SSL member because SSL is
3556         handled automatically by xread.
3557
3558         * hash.c (ptrhash): Made private.
3559         (ptrcmp): Ditto.
3560         (inthash): Removed.
3561
3562         * connect.c (select_fd): Don't set errno, leave it to the caller.
3563
3564         * gen_sslfunc.c (connect_ssl): Use register_extended to register
3565         SSL callbacks for communication with SSL-enabled endpoints.
3566         (ssl_read): New function.
3567         (ssl_write): Ditto.
3568         (ssl_poll): Ditto.
3569         (ssl_close): Ditto.
3570
3571         * connect.c (register_extended): New function -- register
3572         callbacks for basic socket operations.
3573         (xread): Ditto.
3574         (xwrite): Ditto.
3575         (xclose): Ditto.
3576         (sock_read): New function, default implementation for reading.
3577         (sock_write): Ditto for writing.
3578         (sock_poll): Ditto for polling.
3579         (sock_close): Ditto for closing.
3580
3581 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
3582
3583         * connect.c (bindport): Fix compilation under pre-C99 compilers.
3584
3585 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
3586
3587         * connect.c (connect_to_ip): More compact error checking.
3588         (bindport): Don't treat failed setsockopt as a fatal error.
3589
3590 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
3591
3592         * connect.c (resolve_bind_address): Use a more accurate error
3593         message -- we're not binding to ANY, we're disabling bind
3594         altogether.
3595
3596 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
3597
3598         * cookies.c (save_cookies_mapper): Respect the setting of
3599         keep-session-cookies.
3600         (cookie_jar_load): Import session cookies.
3601         Based on code submitted by Nicolas Schodet.
3602
3603         * utils.c (datetime_str): Use information in TM when it's
3604         non-NULL.
3605
3606         * main.c (main): New option `--keep-session-cookies'.
3607
3608 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
3609
3610         * Makefile.in (realclean): Delete config.h.in.
3611
3612 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
3613
3614         * config-post.h: New file, included from now autogenerated
3615         config.h.in.
3616
3617 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
3618
3619         * progress.c (progress_handle_sigwinch): Don't call
3620         determine_screen_width() from the signal handler.  Instead, just
3621         set a volatile variable.
3622         (bar_create): Check whether SIGWINCH was received.
3623         (bar_update): Ditto.
3624
3625         * sysdep.h: Define SYSTEM_FNMATCH only if HAVE_FNMATCH_H is true.
3626
3627 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
3628
3629         * utils.c (xsleep): New function.  Uses nanosleep where available,
3630         resuming sleeps interrupted by signals.  Updated callers of sleep
3631         and usleep to use xsleep.
3632
3633 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
3634
3635         * ftp-basic.c (ftp_login): Remove shadowing (and bogus)
3636         declaration of SEED.
3637
3638 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
3639
3640         * log.c (logvprintf): Documented better.  Renamed to
3641         log_vprintf_internal to avoid confusion with the public API
3642         functions logprintf and logputs.
3643
3644 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
3645
3646         * wget.h (N_): Don't parenthesize argument.
3647
3648 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
3649
3650         * host.h (ADDRESS_IPV4_DATA): Don't take the address of in.s_addr
3651         because that doesn't work on machines that define it as bitfield.
3652
3653 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
3654
3655         * connect.c (select_fd): Generalize the third argument into WAIT,
3656         so that the caller can request waiting for both read and write.
3657         Updated callers.
3658
3659 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
3660
3661         * html-url.c (cleanup_html_url): Destroy the hash tables, don't
3662         just call free on them.
3663         (init_interesting): Use hash_table_put instead of string_set_add
3664         because we don't need the strdup that the latter function
3665         performs.
3666
3667         * init.c (cleanup): Don't pass NULL to cookie_jar_delete.
3668
3669         * xmalloc.c (xfree_real): Abort when passed a NULL pointer.
3670         (xfree_debug): Print at the file and line of the offending call to
3671         free.
3672
3673 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
3674
3675         * wget.h: Retired the `boolean' type.  Moved the DEFAULT_LOGFILE
3676         define to log.h.  Moved the INFINITE_RECURSION define to recur.h.
3677
3678         * xmalloc.h: Renamed FREE_MAYBE to xfree_null and moved the
3679         definition from wget.h to xmalloc.h.
3680
3681 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
3682
3683         * html-parse.c (decode_entity): New function; split the decoding
3684         of entities here.
3685         (convert_and_copy): Use it to decode entities.
3686         (decode_entity): Handle the &apos entity.
3687         (decode_entity): Don't decode Latin 1 numeric entities.  Don't
3688         decode &#0.
3689
3690 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
3691
3692         * ftp-opie.c (calculate_skey_response): Use uint32_t instead of
3693         `unsigned long' for the cheksum array.  Document the function.
3694
3695 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
3696
3697         * connect.c (acceptport): Don't call select_fd when timeout is not
3698         requested.
3699
3700 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
3701
3702         * host.c: Removed the ip_default_family global variable.
3703
3704         * host.c (lookup_host): Document the function.  Fixed declaration
3705         of VEC.
3706
3707 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
3708
3709         * various: Use new macros xnew, xnew0, xnew_array, and xnew0_array
3710         in various places.
3711
3712 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
3713
3714         * wget.h: Move declarations of malloc and logging code to
3715         xmalloc.h and log.h respectively to unclutter this file.
3716         (STRDUP_ALLOCA): Made it side-effect free.
3717
3718         * xmalloc.h: New files.  Define macros xnew, xnew0, xnew_array,
3719         and xnew0_array.
3720
3721         * xmalloc.c: New file.  Move the xmalloc routines here.
3722
3723 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
3724
3725         * connect.c (sockaddr_set_data): Remove the broken code that
3726         checked for NULL address.
3727
3728 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
3729
3730         * host.c (address_list_from_single): Removed.
3731         (address_list_from_ipv4_addresses): Renamed from
3732         address_list_from_vector.
3733
3734 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
3735
3736         * sysdep.h (CLOSE): Don't call close on file descriptors less than
3737         0, i.e. on uncreated sockets.
3738
3739         * connect.c (resolve_bind_address): Work on struct sockaddr
3740         directly.
3741         (connect_to_host): Replacement for connect_to_many.  Resolve HOST
3742         and connect to any of its addresses.  If we can't connect and the
3743         host name lookup was cached, try to resolve it again.  This should
3744         fix problems with hosts behind dynamic DNS.  Updated all callers.
3745         (connect_to_ip): Replacement for connect_to_one.  Removed SILENT;
3746         added the argument PRINT instead.  Updated all callers.
3747         (set_connection_host_name): Removed.
3748
3749         * host.c (address_list_address_at): New function instead of
3750         address_list_copy_one. It returns a pointer to ip_address *, so
3751         it's not necessary to copy the data.
3752         (address_list_cached_p): New function.
3753         (forget_host_lookup): Ditto.
3754
3755         * connect.c: Got rid of the MSOCK global variable.  Made bindport
3756         return the local socket it creates.  Added a new argument to
3757         acceptport, the socket to call accept on.  Updated callers.
3758         (closeport): Removed.
3759
3760         * connect.c: Moved the sockaddr code from host.c to this file,
3761         because most of that stuff is used for connecting, and has nothing
3762         to do with host names anyway.
3763         (sockaddr_set_data, sockaddr_get_data): New functions, replace the
3764         old sockaddr_set_address, sockaddr_set_port, sockaddr_get_address,
3765         and sockaddr_get_port.
3766
3767 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
3768
3769         * sysdep.h: Use `S >= 8' rather than `S == 8' when looking for
3770         large integers.
3771
3772 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
3773
3774         * url.c (append_uri_pathel): New argument ESCAPED_P that says
3775         whether [B, E) is to be treated as URL-escaped or not.  If
3776         ESCAPED_P is false, don't unescape the region.
3777         (url_file_name): u->file is not URL-escaped.
3778
3779 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
3780
3781         * retr.c (retrieve_from_file): Use retrieve_tree for
3782         page-requisites.
3783
3784         * main.c (main): Don't define opt.recursive when -p is used.
3785         Instead, make sure that recursion is used for HTTP in that case.
3786
3787 2003-10-29  Hrvoje Niksic  <hniksic@xemacs.org>
3788
3789         * host.h: Defined accessors for elements of ip_address.  Updated
3790         all callers.
3791         (address_list_match_all): Use memcmp in the non-IPv6 case.
3792
3793         * wget.h (CONNECT_ERROR): Don't retry connecting if connect()
3794         returned EAFNOSUPPORT.
3795
3796 2003-10-27  Mauro Tortonesi <mauro@deepspace6.net>
3797
3798         * connect.h: changed bindport prototype and added the related
3799         BIND_ON_IPV4_ONLY and BIND_ON_IPV6_ONLY flags.
3800
3801         * connect.c: changed bindport and resolve_bind_address to allow
3802         protocol-version specific DNS resolution. modified conaddr,
3803         acceptport and connect_to_one to make use of struct
3804         sockaddr_storage and of the new ip_address structure.
3805
3806         * ftp-basic.c: added LPRT/LPSV (RFC1639) support, refactored
3807         PORT/PASV (RFC959) and EPRT/EPSV (RFC2428) support code.
3808
3809         * ftp.c: added the ftp_do_port and ftp_do_pasv functions to
3810         handle FTP over IPv6.
3811
3812         * ftp.h: changed prototype of ftp_epsv and added prototypes for
3813         ftp_lpsv, ftp_lprt and ftp_eprt.
3814
3815         * host.c: renamed the
3816         wget_sockaddr_set_address and wget_sockaddr_get_addr, and
3817         wget_sockaddr_{s,g}et_port couples to sockaddr_{s,g}et_address and
3818         sockaddr_{g,s}et_port respectively.  changed
3819         address_list_match_all, address_list_from_addrinfo sockaddr_len,
3820         pretty_print_address, lookup_host, sockaddr_{s,g}et_address and
3821         sockaddr_{g,s}et_port to make use of struct sockaddr_storage and
3822         of the new ip_address structure.  removed map_ipv4_to_ip and
3823         map_ip_to_ipv4.
3824
3825         * host.h: redefined structure ip_address and removed structure
3826         wget_sockaddr.
3827
3828 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
3829
3830         * sysdep.h: Include inttypes.h where available.
3831
3832         * host.c: Switch from u_int32_t to uint32_t.
3833
3834 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
3835
3836         * netrc.c (parse_netrc): Reset the QUOTE flag after the closing
3837         quote.
3838
3839 2003-10-25  Hrvoje Niksic  <hniksic@xemacs.org>
3840
3841         * url.c (is_valid_ipv6_address): Reformat to GNU coding style.
3842         Use enums for NS_IN* constants.  Use ISXDIGIT.
3843
3844         * convert.c (construct_relative): Document better how the function
3845         works.
3846
3847 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
3848
3849         * config.h.in: Deploy preprocessor magic to avoid Ultrix's
3850         <netdb.h> include <bitypes.h> which defines its own u_int32_t.
3851         Reported by Bernhard Simon.
3852
3853 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
3854
3855         * version.c: Bump version.
3856
3857 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
3858
3859         * url.c: Ditto.
3860
3861         * html-parse.c (advance_declaration): Don't use trailing comma in
3862         enum because older compilers don't support it.
3863
3864         * utils.c: Don't redefine HAVE_SIGSETJMP.
3865
3866 2003-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
3867
3868         * convert.c (construct_relative): Don't handle absolute files
3869         specially -- for example, -P/tmp/foo shouldn't imply that
3870         converted files must refer to "/tmp/foo/..."!
3871
3872 2003-10-15  Hrvoje Niksic  <hniksic@xemacs.org>
3873
3874         * http.c: Consider status 307 a valid redirect.
3875
3876 2003-10-15  Philip Stadermann  <philip.stadermann@credativ.de>
3877
3878         * ftp.c (ftp_retrieve_glob): Correctly loop through the list whose
3879         elements might have been deleted.
3880
3881 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
3882
3883         * html-url.c (tag_handle_meta): Set the Refresh link to expect
3884         HTML.
3885         (append_one_url): Renamed to append_url.
3886
3887 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
3888
3889         * sysdep.h: Only define u_int32_t.
3890
3891 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
3892
3893         * utils.c (large_int_to_string): Use snprintf() to print the
3894         number.  This will work even on systems where libc doesn't
3895         understand %lld, but the compiler does, because it will use our
3896         snprintf replacement.
3897
3898         * init.c (parse_bytes_helper): New function.
3899         (cmd_bytes): Use it to parse bytes, but cast the result to long.
3900         (cmd_bytes_large): Ditto, but store the result to LARGE_INT.  Used
3901         for --quota so that --quota=10G works even on machines without
3902         long long.
3903
3904         * options.h (struct options): Declare quota as LARGE_INT.
3905
3906         * retr.c (downloaded_exceeds_quota): Removed.
3907         (downloaded_increase): Ditto.
3908         (total_downloaded_bytes): New variable, replaces opt.downloaded,
3909         which was the wrong place for it anyway.  Updated callers of
3910         downloaded_exceeds_quota and downloaded_increase to check this
3911         variable directly.
3912
3913         * sysdep.h: Get rid of VERY_LONG_TYPE.  Use LARGE_INT for the same
3914         purpose, defined as `long', `long long' or `double', depending on
3915         size of long and whether long long is available.
3916
3917 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
3918
3919         * sysdep.h: Also check size of short for int32_t.
3920
3921 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
3922
3923         * host.c (lookup_host): Use u_int32_t to store the result of
3924         inet_addr().  That removes the need for offset fiddling, caring
3925         about endian-ness, etc.
3926
3927         * sysdep.h: Define int32_t and u_int32_t if not available.
3928
3929 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
3930
3931         * ftp-basic.c (ftp_epsv): Use socklen_t * as the third argument to
3932         getpeername.
3933
3934         * config.h.in: Define socklen_t stub.
3935
3936         * host.c (sockaddr_len): Return socklen_t.
3937
3938         * connect.c (conaddr): Use socklen_t as the third argument to
3939         accept, getsockname, and connect.
3940
3941 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
3942
3943         * recur.c (retrieve_tree): Don't descend into documents that are
3944         not expected to contain HTML, regardless of their content-type.
3945
3946         * html-url.c (tag_url_attributes): Record which attributes are
3947         supposed to yield HTML links that can be followed.
3948         (tag_find_urls): Propagate that information to the caller through
3949         struct urlpos.
3950
3951 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
3952
3953         * hash.c (find_mapping): Return the next available mapping when
3954         the key is not found, not NULL.
3955         (hash_table_put): Use find_mapping to find the storage for the new
3956         data.
3957         (hash_table_put): Grow the table before exceeding maximum
3958         fullness, not afterwards.
3959
3960 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
3961
3962         * hash.c (hash_table_new): Slightly change the meaning of the
3963         first parameter.  Instead of being the minimum initial size, it is
3964         now the minimum number of items that the hash table can take
3965         without needing to resize.
3966
3967 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
3968
3969         * html-url.c (init_interesting): Initialize interesting_tags and
3970         interesting_attributes as hash tables.  This simplifies the code
3971         immensely because hash tables handle allocation and remove
3972         duplicates automatically.
3973         (find_tag): Removed.
3974         (collect_tags_mapper): Instead of calling find_tag, simply get the
3975         entry from interesting_tags hash table, which is both simpler and
3976         faster.
3977
3978 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
3979
3980         * hash.c (hash_table_get): Declare hash-table argument as const.
3981         (find_mapping): Ditto.
3982         (hash_table_get_pair): Ditto.
3983         (hash_table_contains): Ditto.
3984         (hash_table_count): Ditto.
3985
3986 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3987
3988         * html-url.c (get_urls_html): Parse the appropriate flags to
3989         html-parse.c.
3990
3991         * html-parse.c (map_html_tags): Accept FLAGS from the caller
3992         instead of examining OPT.
3993
3994 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3995
3996         * html-url.c (find_tag): Switch to binary search.
3997
3998 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3999
4000         * main.c (print_help): Fix typo; stured -> stored.
4001
4002 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
4003
4004         * getopt.c: Add definitions of getopt_long and getopt_long_only.
4005
4006 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
4007
4008         * config.h.in: Renamed DEBUG to ENABLE_DEBUG.  ENABLE_DEBUG is, I
4009         think, a better name, because it implies that debugging output is
4010         merely possible, not "on by default", as might be construed from
4011         just DEBUG.
4012
4013 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
4014
4015         * ftp.c (has_insecure_name_p): Define it here.
4016
4017         * utils.c (has_wildcards_p): Define it here.
4018
4019         * sysdep.h: Declare fnmatch-related macros here, if not using
4020         system fnmatch().  Update .c files to not declare fnmatch.h
4021         directly.
4022
4023         * cmpt.c (fnmatch): Moved here.  Use it only under non-GNU libc.
4024
4025 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
4026
4027         * getopt.c: Newer version, imported from Free libit.
4028
4029 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
4030
4031         * cookies.c (struct cookie): Remove unused backpointer to cookie
4032         jar.
4033
4034 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
4035
4036         * cmpt.c (memmove): Comment out, since it's no longer used.
4037
4038         * cookies.c (cookie_jar_generate_cookie_header): Allocate room for
4039         chains in one pass.
4040         (find_chains_of_host): Assume that the caller has allocated DEST
4041         to be sufficiently large to take all the data.
4042         (eliminate_dups): Run through the array and eliminate dups on the
4043         fly instead of using memmove.
4044         (cookie_jar_process_set_cookie): Free cookie->domain before
4045         re-setting it.
4046
4047 2003-10-05  Gisle Vanem  <giva@bgnett.no>
4048
4049         * mswindows.c (set_sleep_mode): Fix type of
4050         _SetThreadExecutionState.
4051
4052 2003-10-05  Hrvoje Niksic  <hniksic@xemacs.org>
4053
4054         * utils.c (file_size): Return -1 if fopen() returns NULL.  Prior
4055         to this patch, wget --post-file=nosuchfile dumped core.
4056
4057 2003-10-04  Gisle Vanem  <giva@bgnett.no>
4058
4059         * mswindows.c (run_with_timeout): Use WaitForSingleObject to wait
4060         for thread termination.
4061
4062 2003-10-04  Hrvoje Niksic  <hniksic@xemacs.org>
4063
4064         * log.c: Use `...' in function definitions; ansi2knr will convert
4065         them to va_dcl.  This allowed removal of the ugly VA_START_1 and
4066         VA_START_2 macros.
4067
4068 2003-10-03  Gisle Vanem  <giva@bgnett.no>
4069
4070         * connect.c: And don't include them here.
4071
4072         * mswindows.h: Include winsock headers here.
4073
4074 2003-10-03  Hrvoje Niksic  <hniksic@xemacs.org>
4075
4076         * html-parse.c (convert_and_copy): Move variable declarations
4077         before statements.
4078
4079 2003-10-02  Gisle Vanem  <giva@bgnett.no>
4080         
4081         * mswindows.c (run_with_timeout): For Windows: Run the 'fun' in a
4082         thread via a helper function. Continually query the thread's
4083         exit-code until finished or timed out.
4084
4085 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
4086
4087         * wget.h (XMALLOC_ARRAY): Removed.
4088         (ALLOCA_ARRAY): Ditto.
4089
4090         * html-parse.c: Renamed alloca_p to resized.
4091         (GROW_ARRAY): Renamed DO_REALLOC_FROM_ALLOCA to GROW_ARRAY and
4092         returned it to html-parse.c, since nothing else was using it.
4093
4094 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
4095
4096         * retr.c (retrieve_url): Initialize DUMMY storage for DT.  Caught
4097         by valgrind.
4098
4099 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
4100
4101         * html-parse.c (convert_and_copy): Handle numeric entities in
4102         hexadecimal, &#xHH.
4103         (convert_and_copy): Copy the contents directly to the pool without
4104         a stack-allocated intermediary.
4105
4106 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
4107
4108         * utils.c (alarm_set): New function; use either setitimer or alarm
4109         to set up the alarm.
4110         (alarm_cancel): New function; cancel the alarm set up by
4111         alarm_set.
4112         (run_with_timeout): Use them.
4113
4114 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
4115
4116         * url.c (url_parse): Don't leak memory when a reencoded URL turns
4117         out to be invalid.
4118
4119         * url.c (parse_errors): Mark error messages for translation.
4120         (url_error): Translate error messages returned to the caller.
4121
4122 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
4123
4124         * ftp.c (ftp_loop_internal): Initialize TMRATE to NULL to shut up
4125         the compiler.
4126
4127 2003-09-26  Gisle Vanem  <giva@bgnett.no>
4128
4129         * src/mswindows.c: Added ws_percenttitle() showing progress in the
4130         window titlebar. Called from retr.c. Secured ws_mypath().
4131
4132         * windows/config.h.ms: alloca() prototype not needed.  Removed
4133         "#undef ENABLE_NLS"; should be in Makefile IMHO. Moved
4134         WGET_USE_STDARG from mswindows.h to config.ms.h because of #ifdef
4135         in log.c. (MSVC's vararg.h and stdarg.h are incompatible).
4136
4137 2003-09-29  Aaron Hawley <Aaron.Hawley@uvm.edu>
4138
4139         * ftp.c (getftp): --spider option should now work with FTP
4140         downloads.
4141         (ftp_loop_internal): quiet reports and calculations of downloads
4142         when --spider option set, nor try deleting when --delete-after
4143         also set.
4144         (ftp_loop): --spider will skip HTML-ification of .listing file.
4145
4146 2003-09-26  Gisle Vanem  <giva@bgnett.no>
4147
4148         * mswindows.c (read_registry): Removed.
4149         (set_sleep_mode): New function.
4150         (windows_main_junk): Call it.
4151
4152 2003-09-26  Gisle Vanem  <giva@bgnett.no>
4153
4154         * mswindows.c (read_registry): Fix invocation of registry
4155         functions.
4156
4157         * mswindows.c (read_registry): Condition definitions of sleep and
4158         usleep with not HAVE_SLEEP and HAVE_USLEEP respectively.  Define
4159         HAVE_SLEEP and HAVE_USLEEP under __DMC__.
4160
4161 2003-09-24  Hrvoje Niksic  <hniksic@xemacs.org>
4162
4163         * url.c (url_escape_1): Revert unintentional change to lowercase
4164         xdigit escapes.
4165         (url_escape_dir): Document that this function depends on the
4166         output of url_escape_1.
4167
4168 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
4169
4170         * progress.c (create_image): Print the current ETA if we're done
4171         with the download.
4172         (create_image): Change '-' display char to '+' in the progress bar.
4173
4174         * Makefile.in (clean): Remove .libs.
4175
4176 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
4177
4178         * cookies.c (struct cookie): New flag domain_exact.
4179         (update_cookie_field): Skip leading dot in domain.
4180         (find_matching_chains): Match numeric addresses exactly; don't
4181         needlessly copy HOST to the stack.
4182         (matching_cookie): Added argument HOST.  If cookie->domain_exact
4183         is set, check that HOST is equal to cookie->domain.
4184         (cookie_jar_load): Only use TAB as delimiter.  Document the
4185         meaning of DOMAIN-FLAG.  Skip leading dot in domain.
4186         (cookie_jar_load): Don't ignore DOMAIN-FLAG -- instead, set
4187         domain_exact to true if DOMAIN-FLAG is false.
4188         (save_cookies_mapper): If domain_exact is false, prepend the
4189         domain with dot, like Mozilla does.
4190
4191 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
4192
4193         * progress.c (create_image): Print the initial part of the
4194         download with '-' characters, analogous to how dot progress prints
4195         the initial part with ','.
4196
4197         * hash.c (ptrhash): New function.
4198         (ptrcmp): Ditto.
4199         (hash_table_new): Default to identity hash table.
4200
4201 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
4202
4203         * safe-ctype.h (_sch_test): The cast of BIT to unsigned char was
4204         broken -- _sch_istable bitmasks are 16-bit, not 8-bit!  Cast BIT
4205         to unsigned short instead.
4206
4207 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
4208
4209         * url.c (path_simplify): Instead of calls to memmove, handle "./"
4210         and "../" by advancing pointers.
4211
4212 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
4213
4214         * retr.c (getproxy): Moved from url.c.
4215
4216         * convert.c: Split off link conversion from url.c into separate
4217         file.  Also included the book-keeping stuff from recur.c.
4218
4219 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
4220
4221         * init.c: Improved documentation of functions.
4222         (cmd_boolean): Attempt to make code that tries to avoid calling
4223         strcmp for "speed" a bit more readable.
4224
4225         * init.c (simple_atof): Report error on encountering non-digit,
4226         non-"." character.
4227         (simple_atoi): Replacement for myatoi(), calling interface
4228         compatible with simple_atof.  Updated myatoi's callers.
4229
4230 2003-09-21  Bertrand Demiddelaer  <bert@b3rt.org>
4231
4232         * url.c (path_simplify): Would read two bytes past the end of the
4233         string in the "./" case.
4234
4235 2003-09-21  Matthew J. Mellon  <mellon@tymenet.com>
4236
4237         * http.c (gethttp): Recognize content-type "application/xhtml+xml"
4238         as what Wget considers "text/html".
4239
4240 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
4241
4242         * connect.c (connect_with_timeout): Made timeout type double.
4243
4244         * options.h (struct options): New members read_timeout,
4245         dns_timeout, and connect_timeout.
4246         Use them.
4247
4248 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
4249
4250         * init.c (simple_atof): New function.
4251         (cmd_time): Use it.
4252         (cmd_bytes): Accept things like "1.5k" and such.  Use simple_atof
4253         to parse decimals.
4254
4255         * retr.c (limit_bandwidth): Adjust each sleep by the error of the
4256         previous one.
4257
4258 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
4259
4260         * main.c (main): Use setoptval() for setting the options.  Use
4261         run_command for `-e'.
4262
4263         * init.c (parse_line): Rewritten to return COMIND right away.
4264         Changed linkage to static.
4265         (run_wgetrc): Use the available comind when calling setval, so it
4266         doesn't have to be computed twice.
4267         (setval_internal): New function, runs the command's action without
4268         any error checking.
4269         (setoptval): New function, does what setval used to do, but exits
4270         in case of error.
4271         (run_command): New function.
4272
4273 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
4274
4275         * connect.c (select_fd): Change MAXTIME's type to double.  Handle
4276         its decimal part.
4277
4278         * retr.c (sleep_between_retrievals): In the random-wait case, use
4279         random_float() to wait between 0 and 2*opt.wait seconds.
4280
4281         * utils.c (run_with_timeout): Accept `double' timeouts.  Correctly
4282         handle timeout values in (0, 1) range.
4283         (random_float): New function.
4284
4285         * options.h (struct options): Change the types of wait, waitretry,
4286         and timeout to double.
4287
4288         * init.c (cmd_time): Accept floating point time.
4289
4290 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
4291
4292         * retr.c (get_contents): Cosmetic fixes.
4293
4294 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
4295
4296         * url.c (uri_merge): Get rid of uri_merge_1.
4297         (uri_merge): Merge "foo//", "bar" as "foo//bar", not "foo///bar",
4298         i.e. don't add an extra slash merely because BASE ends with two
4299         slashes.
4300         (parse_credentials): Renamed from parse_uname.  Rewrittern in
4301         standard [beg, end) calling style.
4302         (url_skip_credentials): Renamed from url_skip_uname.  Made static.
4303         (url_skip_credentials): Include # and ; as terminators.  Old code
4304         would mistakenly consider "http://foo.com#hniksic@iskon.hr" to
4305         contain a username.
4306         (url_skip_scheme): Removed because it was unused.
4307         (url_has_scheme): Require "scheme" to be at least one char long.
4308
4309 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
4310
4311         * url.c (url_file_name): Expect NULL dir_prefix.
4312
4313         * init.c (cmd_file): Use a macro to prevent multiple #ifdef
4314         WINDOWS.
4315         (defaults): Set dir_prefix to NULL by default.
4316
4317 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
4318
4319         * safe-ctype.h (_sch_test): Cast BIT to unsigned char, like latest
4320         gcc does.
4321
4322 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
4323
4324         * wget.h (BOUNDED_TO_ALLOCA): Evaluate PLACE only once.
4325         (ARRAY_SIZE): Renamed to countof.  All callers updated.
4326
4327 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
4328
4329         * main.c (main): New option --strict-comments.
4330
4331         * html-parse.c (find_comment_end): New function: simple BM search
4332         for "-->".
4333         (map_html_tags): Use it if looking at a comment and not in strict
4334         comments mode.
4335
4336 2003-09-17  Aurelien Marchand  <artaxerxes@users.sf.net>
4337
4338         * ftp.h: Added OS400 system in enum
4339         * ftp-basic.c: recognize OS400 systems
4340         * ftp.c: don't prepend the CWD if talking to OS400, since it
4341         breaks the change in library
4342
4343 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
4344
4345         * retr.c (get_contents): Pass the correct argument to ssl_iread.
4346
4347 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
4348
4349         * safe-ctype.h: Don't #define ctype.h macros to errors because
4350         that loses when someone #include's ctype.h after safe-ctype.h.
4351
4352 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
4353
4354         * url.c: Undef U, W, C after use.
4355
4356 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
4357
4358         * init.c (cmd_spec_restrict_file_names): Allow the OS setting to
4359         be augmented by ",nocontrol" which means don't escape the control
4360         characters, but otherwise keep OS settings.
4361
4362         * url.c (file_unsafe_char): Deleted.
4363         (append_uri_pathel): Query filechr_table directly.
4364         (filechr_table): Separated Unix, Windows, and control-unsafe
4365         characters.
4366
4367 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
4368
4369         * url.c (url_escape_1): New function.
4370         (url_escape): Use it.
4371         (sync_path): Handle pathological cases where u->file and u->dir
4372         contain really strange characters.
4373         (ENCODE): Deleted.
4374         (REENCODE): Deleted.
4375
4376 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
4377
4378         * url.c (url_file_name): Don't reallocate FNAME if the file
4379         doesn't exist, as is usually the case.
4380
4381         * utils.c (unique_name): New flag allow_passthrough.
4382
4383 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
4384
4385         * utils.c (wtimer_sys_diff): Convert the time difference to signed
4386         __int64, then to double.  This works around MS VC++ 6 which can't
4387         convert unsigned __int64 to double directly.
4388
4389 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
4390
4391         * Makefile.in (clean): Also remove the core.<number> files
4392         produced by recent Linux systems.
4393
4394 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
4395
4396         * http.c (post_file): Don't pad the file if it's not large
4397         enough.  Bail out instead.
4398
4399 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
4400
4401         * retr.c (get_contents): Reduce the buffer size to the amount of
4402         data that may pass through for one second.  This prevents long
4403         sleeps when limiting bandwidth.
4404
4405         * connect.c (connect_to_one): Reduce the socket's RCVBUF when
4406         bandwidth limitation to small values is requested.
4407
4408 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
4409
4410         * progress.c (update_speed_ring): Moved the speed ring update to a
4411         separate function and documented it better.
4412
4413         * progress.c: Use `double' for most timers to support granularity
4414         smaller than 1ms.
4415
4416 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
4417
4418         * wget.h (XDIGIT_TO_XCHAR): Implement as index into a literal
4419         string.
4420         (XDIGIT_TO_xchar): Ditto.
4421
4422 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
4423
4424         * utils.c: Change the type of timer-related functions from long to
4425         double, for better precision.  On machines supporting gettimeofday
4426         the timers now work with granularity of less than one millisecond.
4427
4428 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
4429
4430         * cookies.c (parse_set_cookies): Fixed the parser to handle more
4431         edge conditions.
4432         (test_cookies): New function, contains a test suite for
4433         parse_set_cookies.
4434
4435 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
4436
4437         * url.c (strpbrk_or_eos): Implement as a macro under Gcc.
4438
4439 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
4440
4441         * cookies.c (parse_set_cookies): Allow trailing space in
4442         set-cookies header.  Also, allow any amount of whitespace, not
4443         only one character.  Allow empty set-cookies header without
4444         spewing an error.
4445
4446 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
4447
4448         * url.c (append_uri_pathel): Use opt.restrict_file_names when
4449         calling file_unsafe_char.
4450
4451         * init.c: New command restrict_file_names.
4452
4453         * main.c (main): New option --restrict-file-names[=windows,unix].
4454
4455         * url.c (url_file_name): Renamed from url_filename.
4456         (url_file_name): Add directory and hostdir prefix here, not in
4457         mkstruct.
4458         (append_dir_structure): New function, does part of the work that
4459         used to be in mkstruct.  Iterates over path elements in u->path,
4460         calling append_uri_pathel on each one to append it to the file
4461         name.
4462         (append_uri_pathel): URL-unescape a path element and reencode it
4463         with a different set of rules, more appropriate for handling of
4464         files.
4465         (file_unsafe_char): New function, uses a lookup table to decide
4466         whether a character should be escaped for use in file name.
4467         (append_string): New utility function.
4468         (append_char): Ditto.
4469         (file_unsafe_char): New argument restrict_for_windows, decide
4470         whether Windows file names should be escaped in run-time.
4471
4472         * connect.c: Include <stdlib.h> to get prototype for abort().
4473
4474 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
4475
4476         * utils.c (wtimer_sys_set): Extracted the code that sets the
4477         current time here.
4478         (wtimer_reset): Call it.
4479         (wtimer_sys_diff): Extracted the code that calculates the
4480         difference between two system times here.
4481         (wtimer_elapsed): Call it.
4482         (wtimer_elapsed): Don't return a value smaller than the previous
4483         one, which could previously happen when system time is set back.
4484         Instead, reset start time to current time and note the elapsed
4485         offset for future calculations.  The returned times are now
4486         guaranteed to be monotonically nondecreasing.
4487
4488 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
4489
4490         * host.c (lookup_host): Print the result of the DNS lookup.
4491
4492 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
4493
4494         * init.c (cmd_boolean): Accept yes/no along with on/off.
4495         (cmd_lockable_boolean): Ditto.
4496
4497 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
4498
4499         * init.c: New command dns_cache.
4500
4501         * main.c (main): New option --dns-cache[=off].
4502
4503 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
4504
4505         * config.h.in: Initialize HAVE_GETADDRINFO and ENABLE_IPV6.
4506
4507         * all: Use #ifdef ENABLE_IPV6 instead of the older INET6.  Use
4508         HAVE_GETADDRINFO for getaddrinfo-related stuff.
4509
4510 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
4511
4512         * url.c (url_parse): Return an error if the URL contains a [...]
4513         IPv6 numeric address and we don't support IPv6.
4514
4515 2003-09-05  Hrvoje Niksic  <hniksic@xemacs.org>
4516
4517         * url.c (is_valid_ipv6_address): Modified to not require
4518         zero-terminated strings.
4519         (is_valid_ipv4_address): Ditto.
4520
4521 2003-09-05  Mauro Tortonesi <mauro@deepspace6.net>
4522
4523         src/url.c: added RFC 2732 compliance for URL parsing. The
4524         functions is_*_address valid are a modified version of
4525         glibc 2.3.2 inet_pton's code.
4526
4527 2003-09-03  Ahmon Dancy  <dancy@dancysoft.com>
4528
4529         * main.c init.c options.h: Added --retry-connrefused option so
4530         that Connection Refused failures are treated as non-fatal (when
4531         trying to retrieve from busy servers).
4532
4533         * wget.h: New CONNECT_ERROR macro for encapsulating this
4534         modification.
4535
4536         * ftp.c http.c : Use CONNECT_ERROR macro in places where
4537         ECONNREFUSED was checked.
4538
4539 2003-01-11  Ian Abbott  <abbotti@mev.co.uk>
4540
4541         * ftp.c (ftp_retrieve_glob): Reject insecure filenames as determined
4542         by calling new function has_insecure_name_p.  This is based on a
4543         patch by Red Hat.
4544
4545         * fnmatch.c (has_insecure_name_p): New function: returns non-zero
4546         if filename starts with `/' or contains `../' and is therefore
4547         considered insecure.
4548
4549         * fnmatch.h: Declare has_insecure_name_p().
4550
4551 2002-08-03  Hrvoje Niksic  <hniksic@xemacs.org>
4552
4553         * init.c (cmd_file): Allocate RESULT correctly.
4554
4555 2002-07-24  Hrvoje Niksic  <hniksic@xemacs.org>
4556
4557         * recur.c (retrieve_tree): Check whether downloaded_html_set is
4558         non-NULL before using it.
4559
4560 2002-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4561
4562         * html-parse.c (NAME_CHAR_P): Allow almost any character here.
4563
4564 2002-05-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4565
4566         * progress.c (bar_set_params): Fall back to dot progress if the
4567         terminal type is "emacs".
4568
4569 2002-05-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4570
4571         * log.c: Don't #undef WGET_USE_STDARG.
4572
4573 2002-05-16  Hrvoje Niksic  <hniksic@arsdigita.com>
4574
4575         * hash.c (prime_size): Store the offset of the prime number in the
4576         prime table.  When searching, start with the given offset.
4577         (hash_table_new): Pass the pointer to ht->prime_offset to
4578         prime_size.
4579         (grow_hash_table): Ditto.
4580         (prime_size): Make 13 the first prime to make empty hash tables
4581         slightly smaller.
4582
4583 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
4584
4585         * recur.c (download_child_p): Minor optimization to avoid an
4586         unnecessary additional call to schemes_are_similar_p function.
4587
4588 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
4589
4590         * url.c (schemes_are_similar_p): New function to test enumerated
4591         scheme codes for similarity.
4592
4593         * url.h: Declare it.
4594
4595         * recur.c (download_child_p): Use it to compare schemes.  This
4596         also fixes a bug that allows hosts to be spanned (without the
4597         -H option) when the parent scheme is https and the child's is
4598         http or vice versa.
4599
4600 2002-05-14  Bill Richardson  <bill@riverstonenet.com>
4601
4602         * ftp.c (getftp): Don't ftruncate stdout.
4603
4604         * http.c (gethttp): Don't ftruncate stdout.
4605
4606 2002-05-09  Ian Abbott  <abbotti@mev.co.uk>
4607
4608         * cmpt.c (strptime_internal): Synched with glibc-2.1.3.
4609         (get_number): Ditto.
4610         (get_alt_number): Ditto.
4611         (__isleap): New function-like macro used by strptime.
4612         (day_of_the_week): New function used by strptime.
4613         (day_of_the_year): Ditto.
4614         (__mon_yday): Now shared by mktime and strptime implementations.
4615
4616 2002-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
4617
4618         * cookies.c (check_domain_match): Use match_tail in case
4619         insensitive mode.
4620
4621         * utils.c (match_tail): Allow the caller to specify case
4622         insensitive mode.
4623
4624         * cookies.c (store_cookie): When expiry_time is 0, print it as
4625         undefined, not indefinite.
4626
4627 2002-05-07  Ian Abbott  <abbotti@mev.co.uk>
4628
4629         * cookies.c (cookie_jar_process_set_cookie): Do not store
4630         discarded cookie.
4631
4632 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
4633
4634         * cookies.c (check_domain_match): Allow cookies to be set for
4635         subdomains of unknown top-level domains under some circumstances.
4636
4637 2002-04-21  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
4638
4639         * gen_ssl.c:
4640         - allow checking of server cert
4641         - allow defining client cert type
4642         - allow limit of ssl protocol
4643         - check more return values
4644         - added debug message on break
4645
4646 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
4647
4648         * recur.c (download_child_p): Revert order of items in check
4649         number 6 for clarity.
4650
4651 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4652
4653         * init.c: Ditto.
4654
4655         * main.c: Ditto.
4656
4657         * http.c: Use the new interface.
4658
4659         * cookies.c: Provide an OO-style "cookie jar" interface to enable
4660         separate cookie jars.
4661
4662         * http.c (http_atotm): Declare argument as const.
4663
4664 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4665
4666         * cookies.c (cookie_new): Default to PORT_ANY.
4667         (find_cookie_chain_exact): Only search by DOMAIN.
4668         (find_matching_cookie): Also check that PORT matches.
4669         (store_cookie): Only match the domain.
4670         (set_cookie_header_cb): When a cookie "fakes" a domain, assume it
4671         is valid for that host rather than discarding it completely.
4672         (find_matching_chains): Don't search by PORT.
4673         (matching_cookie): Also match PORT.
4674         (load_cookies): Set the port if specified, otherwise leave it as
4675         ANY.
4676         (save_cookies_mapper): Save the port if specified, otherwise leave
4677         it empty.
4678
4679 2002-04-19  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
4680
4681         * init.c: The option `egdfile' was not in sort order.
4682
4683 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
4684
4685         * ftp.c (getftp): Treat directories that begin with <letter>: as
4686         absolute.
4687         (getftp): Strip trailing slashes from con->id before merging it
4688         with TARGET.
4689
4690 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
4691
4692         * http.c (gethttp): If Content-Type is not given, assume
4693         text/html.
4694
4695 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
4696
4697         * recur.c (download_child_p): Don't ignore rejection of HTML
4698         documents that are themselves leaves of recursion.
4699
4700 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
4701
4702         Makefile.in: Updated several dependencies for object files to take
4703         account of nested include files.
4704
4705 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
4706
4707         Makefile.in: The target `connect$o' (connect.o) now depends on
4708         `utils.h'
4709
4710 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
4711
4712         * host.c (SET_H_ERRNO): New function-like macro to set `h_errno'.
4713         (gethostbyname_with_timeout): Use it.
4714
4715         * utils.c: Don't define `SETJMP()', `run_with_timeout_env' or
4716         `abort_run_with_timeout()' when `USE_SIGNAL_TIMEOUT' is undefined.
4717
4718 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
4719
4720         * host.c (getaddrinfo_with_timeout): New function.
4721         (gethostbyname_with_timeout): Ditto.
4722         (lookup_host): Use them.
4723
4724 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4725
4726         * utils.c (number_to_string): Handle the case when n < -INT_MAX.
4727
4728 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4729
4730         * init.c (comind): Use a marginally faster implementation of
4731         binary search.  To quote Martin Buchholz, "a nanosecond saved is a
4732         nanosecond earned."
4733
4734 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4735
4736         * main.c (print_help): Document `--post-data' and `--post-file'.
4737
4738 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4739
4740         * http.c (gethttp): Ditto.
4741
4742         * retr.c (retrieve_url): Initialize variables to appease the
4743         compiler.
4744
4745         * gen_sslfunc.c (ssl_iread): Don't handle EINTR when calling
4746         select_fd.
4747         (ssl_iwrite): Ditto.
4748
4749         * connect.c (select_fd): Rewrite to handle EINTR.  Set errno to
4750         ETIMEDOUT in case of timeout.
4751         (iread): No need to handle EINTR when calling select_fd.
4752         (iwrite): Ditto.
4753
4754 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4755
4756         * retr.c (retrieve_url): Make sure that POST is not honored for
4757         redirections.
4758
4759         * http.c (gethttp): Send the POST data when requested.
4760         (post_file): New function.
4761         (gethttp): Use it.
4762
4763         * main.c (main): Ditto.
4764
4765         * init.c: Add new options.
4766
4767         * options.h (struct options): New options post_data and
4768         post_file_name.
4769
4770 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4771
4772         * connect.c (connect_with_timeout): Firing SIGALRM can result in
4773         connect() exiting with EINTR.  Treat EINTR the same as ETIMEDOUT.
4774
4775 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4776
4777         * connect.c (connect_with_timeout): Use it.
4778
4779         * utils.c (run_with_timeout): New function.
4780
4781 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4782
4783         * url.c (getproxy): Accept a struct url argument.  This obviates
4784         the need for USE_PROXY_P.
4785
4786         * retr.c (retrieve_url): Allow proxy to be a non-FTP URL.
4787
4788         * ftp.c (getftp): Recognize FWTK-style proxy.
4789
4790 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
4791
4792         * config.h.in: Only define _VA_LIST when compiled with gcc.
4793
4794 2002-04012  Ian Abbott  <abbotti@mev.co.uk>
4795
4796         * http.c (http_loop): Compensate for MS Windows two-second
4797         granularity of file modification time when comparing timestamps.
4798
4799         * ftp.c (ftp_retrieve_list): Ditto.
4800
4801 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
4802
4803         * utils.c (has_html_suffix_p): New function to test filename for
4804         common html extensions.
4805
4806         * utils.h: Declare it.
4807
4808         * http.c (http_loop): Use it instead of previous test.
4809
4810         * retr.c (retrieve_url): Ditto.
4811
4812         * recur.c (download_child_p): Ditto.
4813
4814 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
4815
4816         * config.h.in: Define _VA_LIST on Solaris to prevent stdio.h from
4817         declaring va_list.
4818         From Kevin Rodgers <kevinr@ihs.com>.
4819
4820 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
4821
4822         * Makefile.in: Specify libtool mode explicitly when linking.
4823
4824 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
4825
4826         * connect.c (connect_with_timeout): New function.
4827         (connect_to_one): Use it.
4828
4829         * config.h.in: Add stubs for HAVE_SIGSETJMP, HAVE_SIGBLOCK, and
4830         HAVE_SETJMP_H.
4831
4832 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4833
4834         * log.c: Set WGET_USE_STDARG if __STDC__ is defined and stdarg.h
4835         is present.
4836
4837 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4838
4839         * progress.c (bar_create): If INITIAL is larger than TOTAL, fix
4840         TOTAL.
4841         (bar_finish): Likewise.
4842
4843 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4844
4845         * html-url.c (tag_handle_form): New function.  Pick up form
4846         actions and mark them for conversion only.
4847
4848 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4849
4850         * progress.c (struct progress_implementation): Use PARAMS when
4851         declaring the parameters of *create, *update, *finish, and
4852         *set_params.
4853
4854         * netrc.c: Ditto.
4855
4856         * http.c: Reformat some function definitions so that ansi2knr can
4857         read them.
4858
4859         * hash.c (struct hash_table): Use the PARAMS macro around
4860         parameters in the declaration of hash_function and test_function.
4861         (prime_size): Spell 2580823717UL and 3355070839UL as (unsigned
4862         long)0x99d43ea5 and (unsigned long)0xc7fa5177 respectively, so
4863         that pre-ANSI compilers can read them.
4864         (find_mapping): Use PARAMS when declaring EQUALS.
4865         (hash_table_put): Ditto.
4866
4867         * ftp.h: Wrap the parameters of ftp_index declaration in PARAMS.
4868
4869         * cookies.c (cookie_new): Use (unsigned long)0 instead of 0UL,
4870         which was unsupported by pre-ANSI compilers.
4871
4872         From Nelson H. F. Beebe <beebe@math.utah.edu>, for the most part.
4873
4874 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4875
4876         * url.c (url_filename): Use compose_file_name regardless of
4877         whether opt.dirstruct is set.
4878         (mkstruct): Don't handle the query and the reencoding of DIR; that
4879         is done in compose_file_name.
4880
4881 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4882
4883         * wget.h: Ditto for extern char *exec_name.
4884
4885         * options.h: Don't guard against OPTIONS_DEFINED_HERE -- it is
4886         perfectly legal to follow an `extern' with a non-`extern' ones,
4887         provided the types match.
4888
4889         * main.c: Don't define OPTIONS_DEFINED_HERE.
4890
4891 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4892
4893         * progress.c (create_image): Revert to calculating ETA based on
4894         average download speed.
4895         (create_image): Don't print ETA until the download has been active
4896         for at least 3 seconds.
4897         (create_image): When ETA is not available, don't print anything.
4898         The previous version would print --:--.
4899
4900 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4901
4902         * progress.c (bar_update): Keep updating a subinterval until it
4903         reaches or exceeds a watermark.  That way the measurement will be
4904         guaranteed to span a configurable minimum of time.  The current
4905         default is 3s in 30 100ms intervals.
4906
4907 2002-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
4908
4909         * progress.c (bar_update): Maintain an array of the time it took
4910         to perform previous 30 network reads.
4911         (create_image): Calculate the download speed and ETA based on the
4912         last 30 reads, not the entire download.
4913         (create_image): Make sure that the ETA is not changed more than
4914         once per second.
4915
4916 2002-04-09  Ian Abbott  <abbotti@mev.co.uk>
4917
4918         * mswindows.c (borland_utime): New function conditionally defined
4919         when `HACK_BCC_UTIME_BUG' is defined.  A reimplementation of
4920         `utime()' as Borland's `utime()' function is broken on Windows 9x
4921         systems.  (Original patch by Chin-yuan Kuo <sr1111111@yahoo.com.tw>.)
4922
4923 2002-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
4924
4925         * ftp.c (ftp_loop): Propagate the result of ftp_retrieve_glob.
4926
4927 2002-03-26  Ian Abbott  <abbotti@mev.co.uk>
4928
4929         * Makefile.in: Updated several dependencies for object files.
4930
4931 2002-03-20  Ian Abbott  <abbotti@mev.co.uk>
4932
4933         * mswindows.c: Include "utils.h".
4934
4935 2002-03-18  Ian Abbott  <abbotti@mev.co.uk>
4936
4937         * host.h: Don't include netdb.h on windows.
4938
4939 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4940
4941         * recur.c (retrieve_tree): Handle the case when start_url doesn't
4942         parse.
4943
4944 2002-02-19  Andreas Damm  <andreas-sourceforge@radab.org>
4945
4946         * wget.h (DO_REALLOC_FROM_ALLOCA): Multiply with sizeof(type) when
4947         calling xmalloc and memcpy.
4948
4949 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4950
4951         * host.h: Include Unix-specific includes #ifndef WINDOWS.
4952         Patch originally provided by Christian Lackas.
4953
4954 2002-02-11  Christian Lackas  <delta@lackas.net>
4955
4956         * recur.c: recurive downloading for https fixed.
4957
4958 2002-02-19  Alan Eldridge  <alane@geeksrus.net>
4959
4960         * host.h: Also include <netinet/in.h> and <sys/socket.h>.
4961
4962         * ftp-basic.c: Also include <netinet/in.h>.
4963
4964 2002-02-05  Ian Abbott  <abbotti@mev.co.uk>
4965
4966         * http.c (gethttp): when -c used, mark already fully retrieved
4967         file as successfully retrieved.
4968
4969 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4970
4971         * url.c (url_parse): Don't treat '?' as query string separator
4972         when parsing FTP URLs.
4973
4974 2002-02-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4975
4976         * html-url.c (tag_handle_meta): Don't crash on <meta
4977         http-equiv=refresh> where content is missing.
4978
4979 2002-01-31  Herold Heiko  <Heiko.Herold@previnet.it>
4980
4981         * ftp-basic.c, host.c: don't include sys/socket.h, arpa/inet.h,
4982         netdb.h on windows.
4983
4984 2002-01-30  Hrvoje Niksic  <hniksic@arsdigita.com>
4985
4986         * retr.c (retrieve_url): Remove redirection cycle detection.  This
4987         is because some sites legitimately redirect the user back to the
4988         same location, e.g. after an authorization check performed by
4989         another page.  MAX_REDIRECTIONS is still used to prevent infinite
4990         redirection loops.
4991
4992 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4993
4994         * http.c (gethttp): Wrap host name in square brackets if it
4995         contains a colon.
4996
4997 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4998
4999         * url.c (url_parse): Allow all hex digits, not only decimal ones,
5000         to form an IP address.
5001
5002 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5003
5004         * url.c (urlchr_table): Make square braces reserved, so we can
5005         parse http://[::1]/.
5006         (url_parse): Handle host in braces.
5007         (url_string): If url->host contains colons, wrap it in braces.
5008
5009 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5010
5011         * connect.c (resolve_bind_address): New function.
5012         (connect_to_one): Use it.
5013         (bindport): Ditto.
5014
5015         * init.c: Don't resolve bind-address here.
5016
5017         * host.c (wget_sockaddr_set_address): Would bug out with ADDR == NULL.
5018
5019 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5020
5021         * host.c (lookup_host): Use sizeof(ip4_address) to calculate the
5022         offset.
5023         (address_list_new): Use map_ipv4_to_ip.
5024         (wget_sockaddr_set_address): Convert ADDR to IPv4 before using it
5025         in IPv4 context.
5026
5027 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5028
5029         * source: Integrated IPv6 support.
5030         Written by Thomas Lussnig <thomas.lussnig@bewegungsmelder.de>.
5031
5032 2002-01-15  Ian Abbott  <abbotti@mev.co.uk>
5033
5034         * init.c (cmd_file): Change `\' to `/' for Windows (yes, really!)
5035         (cmd_directory): New function. Like cmd_file(), but strips
5036         trailing directory separators.
5037         (commands): Change action for "dirprefix" from `cmd_file' to
5038         `cmd_directory'.
5039
5040         * utils.c (make_directory): Allow intermediate `mkdir' calls to
5041         fail, as not all path components that do not exist should be
5042         directory components, especially under Windows.
5043
5044 2002-01-17  Hrvoje Niksic  <hniksic@arsdigita.com>
5045
5046         * netrc.c (parse_netrc): Skip leading whitespace before testing
5047         whether the line is empty.  Empty lines still contain the line
5048         terminator.
5049
5050 2002-01-15  Hrvoje Niksic  <hniksic@arsdigita.com>
5051
5052         * gen_sslfunc.c (ssl_iread): Call select on the file descriptor
5053         only if no data is pending in SSL buffers.
5054         From tony@bluetail.com.
5055
5056 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5057
5058         * headers.c (header_get): Strip trailing whitespace from the
5059         header.
5060
5061 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5062
5063         * url.c (parse_uname): URL-decode *USER and *PASSWD.
5064
5065 2002-01-07  Ian Abbott <abbotti@mev.co.uk>
5066
5067         * url.c (uri_merge_1): Deal with "net path" relative URL (one that
5068         starts with "//").
5069
5070 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5071
5072         * http.c (gethttp): Invalidate SOCK if get_contents encountered an
5073         error.
5074
5075 2001-12-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5076
5077         * version.c: Wget 1.8.1 is released.
5078
5079 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5080
5081         * version.c: Wget 1.8.1-pre3 is released.
5082
5083 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5084
5085         * recur.c (retrieve_tree): Enqueue the canonical representation of
5086         start_url, so that the test against dl_url_file_map works.
5087
5088 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5089
5090         * log.c (logputs): Check for requested verbosity before printing
5091         anything.
5092
5093 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5094
5095         * html-url.c (tag_handle_link): Treat the "shortcut icon" link as
5096         inline.
5097
5098 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5099
5100         * recur.c (retrieve_tree): Make a copy of file obtained from
5101         dl_url_file_map because the code calls xfree(file) later.
5102
5103 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5104
5105         * recur.c (register_html): Maintain a hash table of HTML files
5106         along with the list.  Disallow duplicates.
5107         (retrieve_tree): Use downloaded_html_set to check whether the file
5108         found in dl_url_file_map is an HTML file, and descend into it if
5109         so.
5110         (convert_all_links): Don't guard against duplicates in
5111         downloaded_html_list, since they are no longer possible.
5112
5113 2001-12-18  Ian Abbott  <abbotti@mev.co.uk>
5114
5115         * recur.c (retrieve_tree): Pass on referring URL when retrieving
5116         recursed URL.
5117
5118 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
5119
5120         * version.c: Wget 1.8.1-pre2 is released.
5121
5122 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
5123
5124         * retr.c (sleep_between_retrievals): Simplify indentation.
5125
5126 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
5127
5128         * gen_sslfunc.c (ssl_init_prng): Use random_number to get a byte
5129         of "randomness" at a time.
5130         (ssl_init_prng): Don't seed the PRNG; random_number will do that.
5131
5132         * retr.c (sleep_between_retrievals): Use it.  Make sure that the
5133         random amount averages in opt.wait.
5134         (sleep_between_retrievals): Don't seed the PRNG; random_number
5135         will do that.
5136
5137         * utils.c (random_number): New function.
5138
5139 2001-12-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5140
5141         * url.c (path_simplify): Move here from utils.c, and make static.
5142
5143 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5144
5145         * init.c (wgetrc_file_name): Print correct message when loading
5146         getenv("WGETRC") fails.
5147
5148 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5149
5150         * recur.c (register_download): Don't abort when one URL references
5151         two different files.
5152
5153 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5154
5155         * http.c (gethttp): Check for conn->scheme, not u->scheme, before
5156         calling ssl_iwrite.
5157
5158 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5159
5160         * version.c: Wget 1.8.1-pre1 is released.
5161
5162 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5163
5164         * res.c (matches): Fix broken URL in the docstring.
5165
5166 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5167
5168         * html-url.c (tag_url_attributes): Mark <embed href=...> as
5169         external.
5170
5171 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5172
5173         * url.c (get_urls_file): Cosmetic changes.
5174
5175 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5176
5177         * html-url.c (append_one_url): Resurrect warning when unable to
5178         resolve a relative link.
5179
5180 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5181
5182         * html-url.c (collect_tags_mapper): Break into several functions.
5183         (tag_url_attributes): Collect <embed href=...>.
5184
5185 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
5186
5187         * host.c: New type ipv4_address.  Use it consistently instead of
5188         `unsigned char[4]' and `unsigned char *'.
5189         (pretty_print_address): Accept a `const void *', to require even
5190         less casting.
5191
5192 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
5193
5194         * ftp-ls.c (ftp_parse_vms_ls): Fix obvious memory leaks.
5195
5196 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
5197
5198         * main.c (main): Initialize progress after fork_to_background, so
5199         that it knows when to use dots.
5200
5201         * mswindows.c (ws_hangup): Call log_request_redirect_output.
5202
5203         * utils.c (fork_to_background): Print the PID of the child
5204         process.
5205
5206         * log.c (log_request_redirect_output): Set a flag that output
5207         redirection has been requested.  Doing anything else in a signal
5208         handler is unsafe.
5209         (check_redirect_output): New function: check whether redirection
5210         has been requested and, if so, call redirect_output().
5211         (logputs): Call check_redirect_output.
5212         (logprintf): Ditto.
5213         (debug_logprintf): Ditto.
5214         (redirect_output): Print clearer messages.
5215
5216         * main.c (redirect_output_signal): Don't call
5217         redirect_output_signal directly.  Instead, call
5218         log_request_redirect_output.
5219
5220         * utils.c (memfatal): Ditto.
5221
5222         * progress.c (display_image): Use it.
5223
5224         * log.c (log_set_save_context): New function: allow the caller to
5225         turn off saving log context lines.
5226
5227 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
5228
5229         * host.c (address_list_set_faulty): Uncomment a sanity check.
5230
5231 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
5232
5233         * utils.c (long_to_string): Return a pointer after where the
5234         number ends.
5235         (long_to_string): Rename to number_to_string.
5236
5237 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
5238
5239         * utils.c (path_simplify): Correctly handle the unlikely case that
5240         b starts out as path + 1.
5241
5242 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
5243
5244         * utils.c (path_simplify): Rewrite, with better comments, and
5245         without the use of strcpy to move overlapping blocks.
5246
5247 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5248
5249         * init.c (cmd_spec_progress): Resurrect.  Check whether VAL is a
5250         valid progress type before setting it.
5251
5252 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5253
5254         * main.c (main): Remove stray debugging message.
5255
5256 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5257
5258         * progress.c (create_image): Fix ETA padding when hours are prined.
5259
5260 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5261
5262         * version.c: Wget 1.8 is released.
5263
5264 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5265
5266         * url.c (reencode_string): Declare static.
5267
5268         * res.c (registered_specs): Declare static.
5269
5270         * progress.c (current_impl_locked): Declare static.
5271
5272         * log.c (flush_log_p): Declare static.
5273         (needs_flushing): Ditto.
5274
5275         * http.c (digest_authentication_encode): Declare static.
5276
5277         * html-url.c (init_interesting): Declare static.
5278
5279         * host.c (host_name_addresses_map): Declare static.
5280
5281         * cookies.c (find_matching_chains): Declare static.
5282
5283         * ftp-ls.c (ftp_parse_vms_ls): Warn about the memory leak
5284         indicated by lint.
5285
5286         * utils.c (path_simplify): Remove unused variable STUB_CHAR.
5287
5288         * host.c (address_list_set_faulty): Document that INDEX is
5289         currently unused.
5290
5291         * url.c (rewrite_shorthand_url): Remove unused variable PATH.
5292
5293 2001-12-08  Hrvoje Niksic  <hniksic@arsdigita.com>
5294
5295         * version.c: Wget 1.8-pre2 is released.
5296
5297 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5298
5299         * progress.c (progress_handle_sigwinch): Set up the signal again.
5300
5301         * utils.c: Include <sys/termios.h>, where Solaris defines
5302         TIOCGWINSZ.
5303
5304         * progress.c (bar_create): Don't use the last column on the screen.
5305         (create_image): Pad ETA to constant size.  Pad SIZE to nine digits
5306         only until it exceeded them.
5307
5308 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5309
5310         * version.c: Wget 1.8-pre1 is released.
5311
5312 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5313
5314         * progress.c (progress_create): Make sure that, when the output is
5315         redirected, the progress implementation gets changed to the
5316         fallback one.
5317         (bar_set_params): Set current_impl_locked to 1 when "force" is
5318         specified.
5319         (progress_create): Don't change the progress implementation if
5320         current_impl_locked is non-zero.
5321
5322         * main.c (redirect_output_signal): Call
5323         progress_schedule_redirect.
5324
5325         * progress.c (progress_schedule_redirect): New function.
5326
5327 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5328
5329         * log.c (logvprintf): Restructure to allow being called multiple
5330         times.
5331         (logprintf): Call logvprintf in a loop.
5332         (debug_logprintf): Ditto.
5333
5334 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5335
5336         * gen_sslfunc.c (ssl_init_prng): Allow the user to disable EGD by
5337         setting egd_file it to empty string.
5338
5339         * main.c (main): Change the option name from --sslegdsock to
5340         --egd-file.
5341
5342 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5343
5344         * gen_sslfunc.c (ssl_init_prng): Make the printed message
5345         translatable.
5346
5347 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5348
5349         * url.c (scheme_disable): New function.
5350
5351         * main.c (main): Call ssl_init_prng from here rather than from
5352         init_ssl, so that it has a chance to disable support for https
5353         before a URL has been resolved.
5354
5355         * gen_sslfunc.c (ssl_init_prng): Seed with rand() if all else
5356         failed.
5357         (ssl_init_prng): Disable support for https if seeding the PRNG
5358         fails.
5359
5360 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5361
5362         * utils.c (read_whole_line): Handle lines beginning with \0.
5363
5364 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
5365
5366         * recur.c (convert_all_links): Guard against duplicates in
5367         downloaded_html_files.
5368         (register_download): Don't invalidate similar-looking URLs.
5369         (match_except_index): New function.
5370
5371 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
5372
5373         * utils.c (path_simplify): Document with test cases.
5374
5375 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
5376
5377         * gen_sslfunc.c: Ditto.
5378
5379         * rbuf.c: Include <string.h>.
5380
5381 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
5382
5383         * recur.c (retrieve_tree): Check whether the URL was already
5384         downloaded before downloading it again.
5385         (descend_child_p): Renamed to download_child_p.
5386         (register_download): When one URL is downloaded to a file already
5387         "owned" by another URL, delete all references that map any URL to
5388         that file.
5389         (register_delete_file): New function.
5390         (retrieve_tree): Use it after deleting a file.
5391
5392         * url.c (url_parse): Re-canonicalize the URL also if the path is
5393         empty, so that e.g. "http://www.server.com" ->
5394         "http://www.server.com/".
5395         (lowercase_str): Use ISUPPER instead of !ISLOWER.
5396
5397         * retr.c (retrieve_url): Use the canonical URL form when calling
5398         register_download().
5399
5400 2001-12-04  Ian Abbott <abbotti@mev.co.uk>
5401
5402         * snprintf.c (dopr): Use `unsigned int' as the second argument to
5403         va_arg when casting to `unsigned short' is intended.
5404
5405 2001-12-04  Herold Heiko  <Heiko.Herold@previnet.it>
5406
5407         * gen_sslfunc.c: on windows provide ssl crypto random 
5408           initialization through RAND_screen(); could possibly
5409           be not enough for strong ssl communication (see the 
5410           relevant manual page from the openssl package).
5411
5412 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
5413
5414         * url.c (local_quote_string): Reenable quoting of question marks,
5415         but only when `--html-extension' is used.
5416
5417 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
5418
5419         * version.c: Wget 1.8-beta3 is released.
5420
5421 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
5422
5423         * snprintf.c (dopr): Cast the result of va_arg to short int and
5424         short unsigned int where these types are expected to be used.
5425
5426 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
5427
5428         * snprintf.c (dopr): Replace `short int' and `unsigned short int'
5429         with `int' when using it as the second argument to `va_arg'.
5430
5431 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
5432
5433         * host.c (address_list_new_one): New function.
5434         (lookup_host): Use it.
5435
5436 2001-12-03  Andre Majorel  <amajorel@teaser.fr>
5437
5438         * host.c (lookup_host): Don't initialize TMPSTORE directly because
5439         it's not legal C.
5440
5441 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
5442
5443         * ftp-basic.c (ftp_port): Don't return HOSTERR if we fail getting
5444         the socket data.
5445
5446         * ftp.c: Ditto.
5447
5448         * http.c: No need to declare h_errno.
5449
5450         * host.c: Declare h_errno.
5451
5452 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
5453
5454         * utils.c (file_merge): If BASE doesn't contain a slash, just
5455         return a copy of FILE.
5456
5457 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
5458
5459         * version.c: Wget 1.8-beta2 is released.
5460
5461 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5462
5463         * ftp.c (getftp): When PWD fails, assume "/".
5464
5465         * ftp-basic.c (ftp_syst): Fix indentation.
5466
5467 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5468
5469         * url.c (get_urls_file): If opt.base_href is specified, merge each
5470         URL with the base.
5471
5472 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5473
5474         * main.c (print_help): Don't document the removed `-nh'.
5475
5476 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5477
5478         * url.c (url_full_path): Document better.
5479
5480         * http.c (gethttp): Use the full path when creating digest
5481         authorization.
5482
5483 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5484
5485         * cookies.c (path_matches): Return 0 if PREFIX doesn't begin with
5486         '/'.
5487
5488 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5489
5490         * cookies.c (path_matches): FULL_PATH doesn't begin with '/', but
5491         PREFIX does.
5492
5493 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5494
5495         * cookies.c (check_domain_match): Reimplement to match Netscape's
5496         "preliminary specification" for cookies.
5497
5498 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5499
5500         * url.c (replace_attr_refresh_hack): New function.
5501         (convert_links): Call replace_attr_refresh_hack for Refresh
5502         links.  It will add the "TMOUT; URL=" junk before the link.
5503
5504         * html-url.c (collect_tags_mapper): Set ID to the ID of the
5505         "content" attribute, not "http-equiv".
5506         (collect_tags_mapper): Don't use OFFSET to hack the raw_* values;
5507         instead, store the information that this entry belongs to a
5508         "refresh" link.
5509
5510 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5511
5512         * version.c: Wget 1.8-beta1 is released.
5513
5514 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5515
5516         * recur.c (retrieve_tree): Allow -p retrievals to exceed maximum
5517         depth by more than one.
5518
5519 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
5520
5521         * retr.c (retrieve_url): Don't allow more than 20 redirections.
5522
5523 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
5524
5525         * recur.c (retrieve_tree): Skip the non-inline entries when
5526         enqueuing the children of a leaf HTML node in -p mode.
5527         (descend_url_p): Ignore opt.no_parent when in -p mode and UPOS is
5528         "inline".
5529
5530         * html-url.c (get_urls_html): Don't accept dash_p_leaf_HTML.
5531         (collect_tags_mapper): When an entry is "inline", mark it as such.
5532
5533         * recur.c (descend_url_p): Fix test when checking for
5534         acceptance/rejection rules.
5535
5536 2001-10-31 Daniel BODEA <dali@dali-designs.com>
5537
5538         * netrc.c (search_netrc): When slack_default is 0, still look for
5539         an account with matching password, just not the "default account".
5540         HTTP Authorization using .netrc should now work as expected.
5541
5542 2001-11-30  T. Bharath  <TBharath@responsenetworks.com>
5543
5544         * http.c (persistent_available_p): Call SHUTDOWN_SSL if
5545         test_socket_open fails.
5546
5547 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
5548
5549         * progress.c (display_image): Just print one CR to reset the
5550         cursor position.
5551
5552 2001-11-30  Christian Fraenkel  <c.fraenkel@gmx.net>
5553
5554         * init.c: New command `ssl_egd_sock'.
5555
5556         * main.c (main): New option `--sslegdsock'.
5557
5558         * gen_sslfunc.c (ssl_init_prng): Seed the RNG using EGD.
5559
5560 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5561
5562         * cmpt.c (memmove): Include a simple memmove implementation.
5563
5564 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5565
5566         * headers: Guard against header files being included twice.
5567
5568 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5569
5570         * gen-md5.c: Use unsigned char * as the buffer argument to
5571         gen_md5_update.
5572
5573 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5574
5575         * connect.h: Declare select_fd.
5576
5577 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5578
5579         * recur.c (descend_url_p): When resolving no_parent, compare with
5580         start_url, not parent url.  Otherwise link from /a/b/ to /a/c/
5581         wouldn't be followed, although the download started from /a/.
5582
5583 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
5584
5585         * config.h.ms, mswindows.h: defined HAVE_ISATTY, use _isatty for
5586         MS VC; somebody with Borland compiler please check and provide
5587         patch if possible;
5588
5589         * cmpt.c: provided a usleep emulation.
5590
5591 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5592
5593         * host.c (address_list_new): Initialize al->faulty.
5594
5595 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5596
5597         * http.c (http_process_range): Accept the broken output of
5598         "JavaWebServer/1.1.1".
5599
5600 2001-11-28  Hrvoje Niksic  <hniksic@arsdigita.com>
5601
5602         * progress.c (dot_set_params): If PARAMS is unspecified, use
5603         dot_style, if available.
5604
5605         * init.c: Ditto.
5606
5607         * main.c (main): Resurect --dot-style.
5608
5609         * progress.c (dot_finish): Print the quantity if we're left at the
5610         beginning of a row.
5611
5612 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5613
5614         * cmpt.c (random): Removed.
5615
5616         * retr.c (sleep_between_retrievals): Use the more portable rand()
5617         instead of random().
5618
5619 2001-11-27  Ian Abbott <abbotti@mev.co.uk>
5620
5621         * retr.c (retrieve_from_file): Initialize `new_file' to NULL to
5622         prevent seg fault.
5623
5624 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5625
5626         * connect.c (connect_to_many): Use address_list_set_faulty to
5627         prevent the faulty address from being reused.
5628
5629         * host.c (address_list_set_faulty): New function.
5630         (address_list_get_bounds): New function, instead of
5631         address_list_count.
5632
5633 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5634
5635         * url.c (convert_links): Don't translate %d-%d.
5636
5637         * main.c (print_help): Remove stray HAVE_RANDOM code.
5638
5639 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5640
5641         * ftp.c (getftp): Improve output after sending PASV.  Don't
5642         attempt to "look up" the IP address we already know; call
5643         connect_to_one directly.
5644
5645 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5646
5647         * progress.c: Change the default progress implementation to "bar".
5648
5649 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5650
5651         * progress.c (bar_create): Print two newlines.
5652
5653 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5654
5655         * cmpt.c (random): New function, a simple-minded replacement for
5656         random() on systems that don't have it.
5657
5658 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5659
5660         * config.h.in: Put a HAVE_USLEEP stub.
5661
5662         * cmpt.c (usleep): Replacement implementation of usleep using
5663         select.
5664
5665         * init.c: New option init_rate.
5666
5667         * main.c (main): New option --limit-rate.
5668
5669         * retr.c (limit_bandwidth): New function.
5670         (get_contents): Call it to limit the bandwidth used when
5671         downloading.
5672
5673         * progress.c (dot_update): Would print the wrong download speed on
5674         rows other than the first one when the download was continued.
5675         (dot_finish): Ditto.
5676
5677 2001-11-26  Ian Abbott <abbotti@mev.co.uk>
5678
5679         * http.c (gethttp): fix undeclared variable 'err' when compiled
5680         with HAVE_SSL.
5681
5682 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5683
5684         * progress.c: Don't allocate new timers; use the timing data
5685         propagated from the caller.
5686
5687         * retr.c (get_contents): Allocate and use a timer.
5688
5689 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5690
5691         * http.c (last_host_ip): Made into an address_list.
5692         (invalidate_persistent): Release pc_last_host_ip.
5693         (register_persistent): Use lookup_host.
5694         (persistent_available_p): Check for equality of hosts using
5695         address_list_match_all.  Call address_list_release.
5696         (http_cleanup): New function.
5697
5698         * ftp.c (getftp): Use lookup_host and connect_to_many.
5699
5700         * http.c (gethttp): Use lookup_host and connect_to_many.
5701
5702         * connect.c (make_connection): Removed.
5703         (connect_to_one): New function.
5704         (connect_to_many): Ditto.
5705         (set_connection_host_name): Ditto.
5706
5707         * host.c (lookup_host): New function; new return type.
5708         (address_list_new): New function.
5709         (address_list_count): Ditto.
5710         (address_list_copy_one): Ditto.
5711         (address_list_delete): Ditto.
5712         (address_list_release): Ditto.
5713         (pretty_print_address): Ditto.
5714
5715 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5716
5717         * recur.c (retrieve_tree): In case of followed redirection,
5718         blacklist the pre-redirection URL.
5719
5720 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5721
5722         * recur.c (descend_redirect_p): New function.
5723         (retrieve_tree): Make sure redirections are not blindly followed.
5724
5725 2001-11-04  Alan Eldridge  <alane@geeksrus.net>
5726
5727         * config.h.in: added HAVE_RANDOM.
5728
5729         * options.h: added random_wait to struct options.
5730
5731         * main.c (print_help [HAVE_RANDOM], main): added arg parsing, help
5732         for --random-wait.
5733
5734         * retr.c (sleep_between_retrievals) [HAVE_RANDOM]: added
5735         implementation of random wait times.
5736
5737         * init.c (commands): added "randomwait" keyword.
5738
5739 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5740
5741         * recur.c (descend_url_p): Be more conservative with blacklisting
5742         URLs.
5743         (convert_all_links): Print how many files have been converted, and
5744         how long it took.
5745
5746         * progress.c (create_image): Place the number of downloaded bytes
5747         right after the progress bar.
5748
5749         * utils.c (suffix): Return a pointer into the string.
5750
5751 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5752
5753         * url.c (convert_links): Handle CO_NULLIFY_BASE.
5754
5755         * recur.c (retrieve_tree): Ignore download-ignorable children.
5756         (convert_all_links): Specify CO_NULLIFY_BASE when link_base_p.
5757
5758         * html-url.c (handle_link): Return the newly created urlpos.
5759         (collect_tags_mapper): When dealing with BASE, store the base
5760         reference and mark it as download-ignorable.
5761
5762 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5763
5764         * url.c (convert_links): Attempt to quote '?' as "%3F" when
5765         linking to local files.  Given up on the attempt, as it breaks
5766         local browsing.
5767
5768 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5769
5770         * main.c (private_initialize): Removed.
5771         (main): Don't call private_initialize.
5772
5773         * http.c: Call lookup_host.
5774
5775         * host.c (host_init): Removed.
5776         (add_host_to_cache): Initialize host_name_address_map here, on
5777         demand.
5778         (ngethostbyname): Commented out.
5779
5780         * connect.c (make_connection): Remove dead code; use lookup_host.
5781
5782         * host.c (store_hostaddress): Renamed to lookup_host and reversed
5783         the args.
5784         Removed host_address_name_map and host_slave_master_map.
5785
5786 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5787
5788         * progress.c (dot_create): Align the "[ skipping ... ]" string
5789         with the dots.
5790
5791         * retr.c (rate): Split into two functions: calc_rate and
5792         retr_rate.
5793
5794         * progress.c (create_image): Draw a dummy progress bar even when
5795         total size is unknown.
5796         (display_image): Place the text cursor at the end of the "image".
5797
5798 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5799
5800         * url.c (reencode_string): Use unsigned char, not char --
5801         otherwise the hex digits come out wrong for 8-bit chars such as
5802         nbsp.
5803         (lowercase_str): New function.
5804         (url_parse): Canonicalize u->url if needed.
5805         (get_urls_file): Parse each URL, and return only the valid ones.
5806         (free_urlpos): Call url_free.
5807         (mkstruct): Add :port if the port is non-standard.
5808         (mkstruct): Append the query string to the file name, if any.
5809         (urlpath_length): Use strpbrk_or_eos.
5810         (uri_merge_1): Handle the cases where LINK is an empty string,
5811         where LINK consists only of query, and where LINK consists only of
5812         fragment.
5813         (convert_links): Count and report both kinds of conversion.
5814         (downloaded_file): Use a hash table, not a list.
5815         (downloaded_files_free): Free the hash table.
5816
5817         * retr.c (retrieve_from_file): Ditto.
5818
5819         * main.c (main): Call either retrieve_url or retrieve_tree
5820         for each URL, not both.
5821
5822         * retr.c (register_all_redirections): New function.
5823         (register_redirections_mapper): Ditto.
5824         (retrieve_url): Register the redirections.
5825         (retrieve_url): Make the string "Error parsing proxy ..." 
5826         translatable.
5827
5828         * res.c (add_path): Strip leading slash from robots.txt paths so
5829         that the path representations are "compatible".
5830         (free_specs): Free each individual path, too.
5831         (res_cleanup): New function.
5832         (cleanup_hash_table_mapper): Ditto.
5833
5834         * recur.c (url_queue_new): New function.
5835         (url_queue_delete): Ditto.
5836         (url_enqueue): Ditto.
5837         (url_dequeue): Ditto.
5838         (retrieve_tree): New function, replacement for recursive_retrieve.
5839         (descend_url_p): New function.
5840         (register_redirection): New function.
5841
5842         * progress.c (create_image): Cosmetic changes.
5843
5844         * init.c (cleanup): Do all those complex cleanups only if
5845         DEBUG_MALLOC is defined.
5846
5847         * main.c: Removed --simple-check and the corresponding
5848         simple_host_check in init.c.
5849
5850         * html-url.c (handle_link): Parse the URL here, and propagate the
5851         parsed URL to the caller, who would otherwise have to parse it
5852         again.
5853
5854         * host.c (xstrdup_lower): Moved to utils.c.
5855         (realhost): Removed.
5856         (same_host): Ditto.
5857
5858 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5859
5860         * utils.c (path_simplify): Preserver the (non-)existence of
5861         leading slash.  Return non-zero if changes were made.
5862
5863 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5864
5865         * progress.c (bar_update): Don't modify bp->total_length if it is
5866         zero.
5867
5868 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5869
5870         * retr.c (retrieve_url): When the redirection URL doesn't parse,
5871         print the correct error message rather than "UNKNOWN".
5872
5873 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5874
5875         * progress.c (bar_finish): If the timer didn't record any time
5876         since the download beginning, fake 1ms.
5877
5878 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5879
5880         * recur.c (recursive_retrieve): Fix typo.
5881
5882 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
5883
5884         * progress.c (create_image): Don't translate "%ld ".
5885
5886 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
5887
5888         * progress.c (bar_set_params): Allow the user to force the use of
5889         the bar.
5890
5891 2001-11-23  Lemble Gregory  <gregory.lemble@st.com>
5892
5893         * gen_sslfunc.c (ssl_init_prng): New function; seed the SSL RNG.
5894
5895 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
5896
5897         * progress.c: Renamed dp_* functions to dot_* for greater clarity
5898         and consistency with bar_*.
5899         (print_download_speed): Get rid of the unneeded '@' character.
5900         (create_image): Fix download rate geometry.
5901
5902         * progress.c (print_elapsed): Remove spurious space.
5903         (print_elapsed): Renamed to print_download_speed, since that's
5904         what it does.
5905
5906 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
5907
5908         * progress.c (bar_update): If the downloaded amount becomes larger
5909         than the expected amount, adjust the expected amount accordingly.
5910
5911 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
5912
5913         * utils.c (determine_screen_width): New function.
5914
5915         * main.c (main): New option `--progress=TYPE'.
5916         (main): Implement compatibility with the old option `--dot-style'.
5917
5918         * init.c: Removed cmd_spec_dotstyle -- that logic is now in
5919         dp_set_params.
5920         (cmd_spec_progress): New function.
5921
5922         * retr.c (get_contents): Use the progress_* functions instead of
5923         the old show_progress().
5924         (show_progress): Removed.
5925         (rate): Print "xxxx.xx K/s" instead of "KB/s".  Ditto for MB/s,
5926         etc.
5927
5928         * progress.c (set_progress_implementation): New function.
5929         (valid_progress_implementation_p): Ditto.
5930         (progress_create): Ditto.
5931         (progress_update): Ditto.
5932         (progress_finish): Ditto.
5933         (dp_create): Ditto.
5934         (dp_update): Ditto.
5935         (dp_finish): Ditto.
5936         (dp_set_params): Ditto.
5937         (print_elapsed): Ditto.
5938
5939 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
5940
5941         * retr.c (show_progress): Use it.
5942
5943         * log.c (log_set_flush): New function.
5944
5945 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
5946
5947         * utils.c (path_simplify): Don't remove trailing slashes.
5948
5949         * ftp.c (ftp_get_listing): Use it.
5950
5951         * utils.c (file_merge): New function.
5952
5953         * url.c (opt_url): Removed.
5954
5955         * recur.c (recursive_retrieve): Inline "opt_url" logic.
5956
5957         * main.c (main): Use xfree(), not free().
5958
5959         * url.c (rewrite_url_maybe): Renamed to rewrite_shorthand_url.
5960
5961         * ftp.c (ccon): Move `ccon' typedef here, since it's only used
5962         internally.
5963
5964         * config.h.in: Include a stub for HAVE_STRPBRK.
5965
5966         * cmpt.c (strpbrk): Include a replacement for systems without
5967         strpbrk().
5968
5969         * ftp.c: Use url_set_dir and url_set_file when modifying the URL.
5970
5971         * url.c (url_set_dir): New function.
5972         (url_set_file): Ditto.
5973
5974         * ftp-basic.c (ftp_process_type): Process FTP type here; the URL
5975         parser makes the URL "params" available, so we can do that in this
5976         function.
5977
5978         * retr.c: Ditto.
5979
5980         * ftp.c: Ditto; pass the local file information in `ccon'.
5981
5982         * http.c: Get rid of the ugly kludge that had URL being replaced
5983         with the proxy URL when proxy retrieval was requested.  Use a
5984         separate parameter to http_loop and gethttp for the proxy URL.
5985
5986         * http.c: Changed to reflect the fact that local file, proxy, and
5987         referer information are no longer stored in struct url.  The local
5988         file information is passed in `struct hstat' now.
5989
5990         * url.c: Reworked URL parsing to be more regular.  Reencode the
5991         URL using reencode_string.
5992         Removed non-URL-related information from struct url.  This
5993         includes fields `proxy', `local', and `referer'.
5994
5995 2001-11-22  Jochen Hein  <jochen@jochen.org>
5996
5997         * main.c (main): Split the copyright notice for easier
5998         translation.
5999
6000 2001-08-21  Dave Turner <dct25@hermes.cam.ac.uk>
6001
6002         * ftp-basic.c (ftp_size): New function to send non-standard SIZE
6003           command to server to request file size.
6004         * ftp.h (ftp_size): Export it.
6005         * ftp.c (getftp): Use new ftp_size function if restoring
6006           transfer of a file with unknown size.
6007
6008 2001-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6009
6010         * url.c (parseurl): Don't depend on the now-obsolete TYPE.
6011
6012 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6013
6014         * url.c (getproxy): Handle URL shorthands.
6015
6016 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6017
6018         * main.c: Remove --wait / --waitretry backwards compatibility
6019         code.
6020         
6021 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6022
6023         * main.c (main): Use it.
6024
6025         * url.c (rewrite_url_maybe): New function.
6026
6027 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6028
6029         * url.c: Clean up handling of URL schemes.
6030
6031 2001-05-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6032
6033         * url.c: Get rid of `protostrings'.
6034         (skip_proto): Don't use protostrings.
6035         (has_proto): Ditto.
6036
6037 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6038
6039         * Makefile.in: Conditionally compile getopt.o.
6040
6041 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6042
6043         * md5.h: Renamed to gnu-md5.h.
6044
6045         * md5.c: Renamed to gnu-md5.c.
6046
6047         * http.c: Ditto.
6048
6049         * ftp-opie.c: Use the new macros.
6050
6051         * sysdep.h: Define md5-related macros.
6052
6053         * config.h.in: Define HAVE_SOLARIS_MD5 or HAVE_BUILTIN_MD5
6054         depending on which md5 implementation is used.
6055
6056 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6057
6058         * res.c (res_register_specs): Initialize OLD and HP_OLD to appease
6059         the compiler.
6060
6061 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6062
6063         * http.c (gethttp): Print the whole response line when printing
6064         headers is requested.
6065
6066 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6067
6068         * res.c: New file.  Implement all RES-related code here.
6069
6070 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6071
6072         * version.c: Wget 1.7.1 is released.
6073
6074 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
6075
6076         * headers.c (header_extract_number): Ignore trailing whitespace.
6077
6078 2001-08-24  Ian Abbott  <abbotti@mev.co.uk>
6079
6080         * html-url.c (collect_tags_mapper): Fix bug converting links
6081         with -k option for tags with multiple link attributes by
6082         handling links in the order they appear.
6083
6084 2001-08-15  Ian Abbott  <abbotti@mev.co.uk>
6085
6086         * ftp.c (ftp_loop_internal): Avoid a potential buffer overflow in
6087           the call to the 'rate' function by moving it past the error
6088           checking for the 'getftp' function return value.
6089
6090 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
6091
6092         * html-parse.c (advance_declaration): Use 0x22 instead of '"' or
6093         '\"'.  Different compilers' assert macros are broken in different
6094         ways.
6095
6096 2001-09-29  Christian Fraenkel  <c.fraenkel@gmx.net>
6097
6098         * http.c (gethttp): print debug output for errors occuring during
6099         the ssl handshake.
6100
6101 2001-11-16  Chris Seawood  <cls@seawood.org>
6102
6103         * init.c: Ditto.
6104
6105         * host.c: Ditto.
6106
6107         * connect.c: Ditto.
6108
6109         * sysdep.h: Support compilation under BEOS.
6110
6111 2001-06-08  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
6112
6113         * url.c (url_equal): Fix a memory leak when parseurl returns an
6114         error on the second URL. Also, since url_equal is not used at the
6115         moment, do not compile it.
6116
6117         * url.h: Ditto for the prototype of url_equal.
6118
6119 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
6120
6121         * html-parse.c (map_html_tags): Support XML-style empty tags.
6122
6123 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6124
6125         * wget.h (DO_REALLOC_FROM_ALLOCA): Check for do_realloc_newsize in
6126         loop condition because we're no longer setting SIZEVAR here.
6127
6128 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6129
6130         * wget.h (DO_REALLOC_FROM_ALLOCA): Set SIZEVAR after the memcpy()
6131         call because it needs the old value.
6132
6133 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6134
6135         * cookies.c (ATTR_NAME_CHAR): Allow almost any character to be in
6136         an attribute name.
6137
6138 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6139
6140         * url.c (url_filename): Make sure that slashes that sneak in to
6141         u->file via query string get protected.
6142         (file_name_protect_query_string): New function.
6143
6144 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6145
6146         * recur.c (recursive_retrieve): Also check undesirable_urls with
6147         canonicalized URL.
6148
6149 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6150
6151         * http.c (gethttp): Search `.netrc' with real host, not the proxy
6152         one.
6153
6154 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6155
6156         * sysdep.h (MAP_FAILED): Provide MAP_FAILED for systems that don't
6157         define it.
6158
6159 2001-06-09  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6160
6161         * ftp.h: Provide correct prototype for ftp_parse_ls().
6162
6163 2001-06-04  Hrvoje Niksic  <hniksic@arsdigita.com>
6164
6165         * version.c: Wget 1.7 is released.
6166
6167 2001-06-03  Karl Eichwalder  <ke@suse.de>
6168
6169         * ftp-ls.c (ftp_parse_ls): Fix typo.
6170
6171 2001-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
6172
6173         * all: Update copyright information.
6174
6175 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6176
6177         * http.c (gethttp): Indicate that the continued download failed
6178         for *this* file.
6179
6180 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6181
6182         * version.c: Wget 1.7-pre1 is released.
6183
6184 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6185
6186         * version.c: Updated version to 1.7-pre1.
6187
6188 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6189
6190         * gen_sslfunc.c: Don't include <sys/time.h> directly.
6191
6192 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6193
6194         * http.c (gethttp): Use real URL data for cookies, not the proxy
6195         stuff.
6196
6197 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6198
6199         * main.c (print_help): Document `--no-http-keep-alive'.
6200
6201         * utils.c (numdigit): Handle negative numbers *correctly*.
6202
6203         * hash.c (make_nocase_string_hash_table): Use term "nocase" rather
6204         than the confusing "unsigned".
6205
6206         * utils.c (string_set_contains): Renamed from string_set_exists.
6207
6208         * hash.c (hash_table_contains): Renamed from hash_table_exists.
6209
6210         * cookies.c: Move case-insensitive hash tables to hash.c.
6211
6212 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6213
6214         * http.c (gethttp): Before concluding that the file is already
6215         fully retrieved, make sure that the file existed and `Range' was
6216         actually requested.
6217
6218 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6219
6220         * cookies.c (eliminate_dups): New function.
6221         (build_cookies_request): Use it.
6222         (build_cookies_request): Set chain_store_size after reallocating
6223         all_chains.
6224         (check_domain_match): Annotated for easier future debugging.
6225         (store_cookie): In the debug message, print whether the cookie is
6226         permanent.
6227
6228 2001-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6229
6230         * http.c (http_loop): Reset no_truncate before deciding whether to
6231         set it.
6232         (gethttp): Further clarify "-c conflicts with existing file" error
6233         message, based on input from Herold Heiko.
6234
6235 2001-05-07  Hrvoje Niksic  <hniksic@arsdigita.com>
6236
6237         * http.c (http_loop): If restval is set, set no_truncate to 1
6238         unconditionally.
6239
6240 2001-05-02  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6241
6242         * ftp-ls.c (ftp_parse_winnt_ls): Assure months are being correctly
6243         converted. Pointed out by <Stefan.Weil@de.heidelberg.com>.
6244         (ftp_parse_vms_ls): Ditto.
6245
6246 2001-04-30  Hrvoje Niksic  <hniksic@arsdigita.com>
6247
6248         * init.c (cmd_address): Zero SIN before using it; apparently
6249         needed on *BSD.
6250
6251 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
6252
6253         * ftp.c (ftp_loop_internal): Don't set NO_TRUNCATE if the file is
6254         empty.
6255
6256 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
6257
6258         * main.c (main): Make `--cookies' respect its argument.
6259
6260 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
6261
6262         * main.c (main): Removed undocumented option `--email-address'.
6263
6264         * netrc.c: Use the latest read_whole_line.
6265
6266         * init.c (defaults): Set opt.ftp_pass to "-wget@".
6267
6268         * mswindows.c (pwd_cuserid): Ditto.
6269
6270         * utils.c (pwd_cuserid): Removed.
6271
6272         * host.c (ftp_getaddress): Removed.
6273
6274 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
6275
6276         (http_loop): Allocate space for filename_plus_orig_suffix with
6277         alloca; this is more efficient and removes the need to free it
6278         before each and every return.
6279
6280 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
6281
6282         * http.c (gethttp): Return RETRUNNEEDED when the retrieval is
6283         unneeded because the file is already there and fully downloaded,
6284         and -c is specified.
6285         (http_loop): Handle RETRUNNEEDED.
6286
6287         * wget.h (uerr_t): New value RETRUNNEEDED.
6288
6289         * http.c (http_loop): Set no_truncate for files that both exist
6290         and are non-empty.
6291         (gethttp): Consider the download finished when restval >= contlen,
6292         not only when restval==contlen.
6293         (gethttp): Handle redirection before giving up due to -c.
6294         (gethttp): Clarify error message which explains that -c will not
6295         truncate the file.
6296         (gethttp): When returning CONTNOTSUPPORTED, don't forget to free
6297         the stuff that needs freeing and release the socket.
6298
6299 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
6300
6301         * main.c (print_help): Wget booleans accept "off", not "no".
6302
6303 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
6304
6305         * http.c (http_loop): If allow_cache is zero, always disable
6306         caching, not only when retrieving through proxy.
6307
6308         * init.c: Ditto.
6309
6310         * options.h (struct options): Rename proxy_cache to allow_cache.
6311
6312 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
6313
6314         * http.c (mktime_from_utc): Improve documentation.
6315         (http_atotm): Put format strings into a separate array.
6316
6317 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
6318
6319         * safe-ctype.h: Instead of throwing #error when isalpha is
6320         defined, redefine it to something that will throw a compile-time
6321         error if actually *used*.  Do the same for the rest of the
6322         standard C macros.
6323
6324 2001-04-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6325
6326         * url.c (getproxy): Ignore empty proxy vars.
6327
6328 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
6329
6330         * http.c (http_loop): Would load cookies every time.
6331
6332         * cookies.c (load_cookies): Handle cookies whose values contain
6333         embedded spaces.
6334
6335 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
6336
6337         * utils.c: Define each DIGITS_* in one line.
6338
6339 2001-04-25  Roger L. Beeman  <beeman@cisco.com>
6340
6341         * http.c (http_atotm): Initialize t.tm_isdst to 0.
6342         (mktime_from_utc): Prevent mktime() from having discontinuities at
6343         DST transition points.
6344
6345 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
6346
6347         * html-url.c (get_urls_html): Fix documentation.
6348
6349 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
6350
6351         * url.c (UNSAFE_CHAR): Reimplement using a static table.
6352         (url_init): Removed.
6353         (init_unsafe_char_table): Removed.
6354
6355 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
6356
6357         * snprintf.c (dopr): Replace ISDIGIT with '0' <= ch && ch <= '9'.
6358
6359 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
6360
6361         * utils.c: Document timer functions.
6362
6363         * retr.c (rate): Use it.
6364         (rate): Print in GB/s if transfer rate exceeds 1 GB/s.
6365
6366         * utils.c (wtimer_granularity): New function.
6367
6368 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6369
6370         * retr.c (show_progress): Ditto.
6371
6372         * ftp.c (getftp): Ditto.
6373
6374         * http.c (gethttp): Use new timer functions.
6375
6376         * utils.c (wtimer_allocate): New function.
6377         (wtimer_new): Ditto.
6378         (wtimer_delete): Ditto.
6379         (wtimer_reset): Ditto.
6380         (wtimer_elapsed): Ditto.
6381
6382 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6383
6384         * utils.c (long_to_string): New, faster version.  Favors smaller
6385         numbers; much of the calculation is now done at compile-time.
6386
6387 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6388
6389         * utils.c (numdigit): Handle negative numbers.
6390
6391 2001-04-23  Hrvoje Niksic  <hniksic@arsdigita.com>
6392
6393         * retr.c (show_progress): Print the download rate even when the
6394         percentages are not available.
6395
6396 2001-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
6397
6398         * ftp.c (getftp): Adjust expected_bytes if the length is
6399         authoritative.
6400
6401 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6402
6403         * url.c: Don't declare `construct'.
6404
6405         * hash.c (grow_hash_table): Speed up rehashing; inline storing of
6406         mappings to new locations.
6407         (hash_table_new): Make resize_threshold a field in the hash table,
6408         so we don't have to recalculate it in each hash_table_put.
6409         (grow_hash_table): Update resize_threshold.
6410         (MAX): Remove unused macro.
6411         (prime_size): Made static.
6412
6413 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6414
6415         * retr.c (retrieve_url): Call uri_merge, not url_concat.
6416
6417         * html-url.c (collect_tags_mapper): Call uri_merge, not
6418         url_concat.
6419
6420         * url.c (mkstruct): Use encode_string instead of xstrdup followed
6421         by URL_CLEANSE.
6422         (path_simplify_with_kludge): Deleted.
6423         (contains_unsafe): Deleted.
6424         (construct): Renamed to uri_merge_1.
6425         (url_concat): Renamed to uri_merge.
6426
6427 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6428
6429         * url.c (str_url): Use encode_string instead of the unnecessary
6430         CLEANDUP.
6431         (encode_string_maybe): New function, returns input string if no
6432         encoding is needed.
6433         (encode_string): Call encode_string_maybe to do the dirty work,
6434         xstrdup if no work needed.
6435
6436 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6437
6438         * wget.h (XDIGIT_TO_xchar): Define here.
6439
6440         * url.c (decode_string): Use new name.
6441         (encode_string): Ditto.
6442
6443         * http.c (XDIGIT_TO_xchar): Rename HEXD2asc to XDIGIT_TO_xchar.
6444         (dump_hash): Use new name.
6445
6446         * wget.h: Rename ASC2HEXD and HEXD2ASC to XCHAR_TO_XDIGIT and
6447         XDIGIT_TO_XCHAR respectively.
6448
6449 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6450
6451         * init.c: Include cookies.h.
6452
6453         * cookies.h: Declare cookies_cleanup.
6454
6455         * cookies.c (check_domain_match): Remove unused variable.
6456         (save_cookies): Remove extraneous argument from debug statement.
6457
6458         * host.c (same_host): Don't call skip_url.
6459
6460         * url.c (skip_url): Removed.  Removed its calls from various
6461         functions in url.c.
6462
6463 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6464
6465         * cookies.c (unsigned_string_hash): Use the new code in
6466         string_hash as reference.
6467
6468         * hash.c (hash_table_map): Allow deletion and change of the
6469         element processed by MAPFUN.
6470         (string_hash): Use the function from glib.
6471
6472 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6473
6474         * config.h.in: Include #undef stub.
6475
6476         * hash.c (hash_table_remove): Rewrite to actually clear deleted
6477         entries instead of just marking them as deleted.
6478
6479 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6480
6481         * hash.h: Declare hash_table_get_pair and hash_table_count.
6482
6483 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6484
6485         * cookies.c: Declare http_atotm.
6486
6487 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6488
6489         * ftp-ls.c (ftp_parse_unix_ls): Use octal constants for
6490         permissions.  A compiler that doesn't accept octal constants is
6491         seriously broken and shouldn't be used -- octal constants were
6492         present in K&R C!
6493
6494 2001-01-20  Karl Eichwalder  <ke@suse.de>
6495
6496         * Makefile.in: Provide and use DESTDIR according to the Coding
6497         Standards.
6498
6499 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6500
6501         * ftp-ls.c (ftp_parse_vms_ls): Make seconds optional in time
6502         specification.
6503
6504 2001-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6505
6506         * url.c (parseurl): Don't strip trailing slash when u->dir is "/"
6507         because that strips the *leading* slash, thus forcing relative
6508         FTP retrieval.
6509
6510 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6511
6512         * ftp.c (getftp): Convert initial FTP directory from VMS to UNIX
6513         notation for VMS servers. 
6514         (ftp_retrieve_dirs): Do not prepend '/' to f->name when
6515         odir is an empty string.
6516
6517 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6518
6519         * ftp-ls.c (ftp_parse_winnt_ls): Made the fix for AM/PM more
6520         effective. Suggested by Edward J. Sabol.
6521
6522 2001-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6523
6524         * cookies.c (build_cookies_request): Use and sort cookies from all
6525         matching domains.
6526         (build_cookies_request): Check for duplicates before generating
6527         the `Cookies' header.
6528
6529         * main.c (main): Don't load cookies here.
6530         (main): Make loadcookies and savecookies call the correct command.
6531
6532         * http.c (http_loop): Load cookies on-demand.
6533
6534 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6535
6536         * http.c (gethttp): Fix indentation of SSL ifdef.
6537
6538 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6539
6540         * ftp.c (ftp_retrieve_dirs): Don't forcibly prepend "/" to u->dir;
6541         that hack is no longer necessary.
6542         (getftp): Prepend initial directory to *non*-absolute u->dir's.
6543
6544 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6545
6546         * init.c (cmd_file): New function.
6547         (enable_tilde_expansion): New variable.
6548         (run_wgetrc): Use it.
6549         (cmd_file): Use it.
6550
6551 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6552
6553         * init.c: Include cookie-related options.
6554
6555         * main.c (main): Include cookie-specific options.
6556         (main): Load cookies before download is finished.
6557         (main): Save cookies when done.
6558
6559         * http.c (gethttp): Process the `Set-Cookie' header.
6560         (gethttp): Include cookies in the response.
6561
6562         * cookies.c: New file.
6563
6564 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6565
6566         * utils.c (datetime_str): New function.
6567
6568 2001-04-08  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6569
6570         * ftp-ls.c (ftp_parse_winnt_ls): The AM/PM change did assume
6571         12:01PM == 00:01, which was obviously wrong. Taken care of this
6572         anomaly.
6573
6574         * ChangeLog: Removed an excess conflict marker. Reformatted the
6575         entry by Philipp Thomas from 2001-03-09.
6576
6577         * ftp-ls.c (ftp_parse_winnt_ls): Ensure that adjusted PM hours lay
6578         between 0 and 23. Elminate unused variable `sec'.
6579
6580 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6581
6582         * hash.c (hash_table_count): New function.
6583
6584 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6585
6586         * utils.c (read_file): Cast MAP_FAILED to char *.  Enforced by
6587         Digital Unix cc.
6588
6589 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6590
6591         * config.h.in: Oops, do the namespace tweaks only on systems we
6592         know about.
6593
6594 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6595
6596         * hash.c: Include <string.h>.
6597
6598 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6599
6600         * config.h.in: Define "compilation environment" options that work
6601         under Linux and Solaris.  To be reviewed on other OS'es.
6602
6603 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6604
6605         * http.c (gethttp): Prepend literal newline with `\n\'.
6606
6607 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6608
6609         * sysdep.h: Don't define VERY_LONG_FORMAT.
6610
6611         * utils.c (very_long_to_string): New function.
6612         (legible_very_long): Use it; don't use VERY_LONG_FORMAT.
6613
6614 2001-04-04  Christian Fraenkel  <christian.fraenkel@gmx.net>
6615
6616         * url.c (parse_uname): Would run past the end of the string if the
6617         username was present, but the URL did not contain a slash, e.g.
6618         http://foo:bar@myhost.
6619
6620 2001-04-03  KOJIMA Hajime  <kjm@rins.ryukoku.ac.jp>
6621
6622         * http.c (http_atotm): Use %A instead of %a to match full
6623         weekday.  (On most systems there is no difference.)
6624
6625 2001-04-03  Paul Bludov  <paul@ozero.net>
6626
6627         * mswindows.c (sleep): Use SleepEx() instead of Sleep().
6628         (ws_changetitle): Use alloca() instead of malloc() to avoid memory
6629         leak.
6630         (ws_mypath): Use GetModuleFileName instead of argv[0].
6631         (ws_startup): Use data.wVersion for comparison.
6632
6633 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
6634
6635         * http.c (http_loop): Ditto.
6636
6637         * ftp.c (ftp_loop_internal): Made the check whether to continue
6638         retrieval `-O'-friendly.
6639
6640 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
6641
6642         * netrc.c (parse_netrc): Don't trim the line endings explicitly;
6643         they will be handled as whitespace.
6644         (parse_netrc): Correctly handle lines that end with whitespace.
6645
6646 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
6647
6648         * retr.c (retrieve_url): New variable global_download_count used
6649         to identify first retrieval.
6650
6651         * ftp.c (getftp): Ditto.
6652
6653         * http.c (gethttp): Rewind opt.dfp only on first retrieval.
6654
6655 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
6656
6657         * init.c (cmd_address): Heap-allocate the address that gets stored
6658         to CLOSURE.  Old code would simply assign an address on the stack.
6659
6660 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
6661
6662         * ftp.c (ftp_get_listing): Propagate error status.
6663         (ftp_retrieve_glob): Use it.
6664         (ftp_loop): Ditto.
6665
6666 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
6667
6668         * main.c (main): Add -C to the string that is the third arg to
6669         getopt_long().
6670
6671 2001-04-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6672
6673         * ftp.c (getftp): Don't start the download from scratch if `-c'
6674         was specified, but the file is already fully downloaded.
6675
6676         * http.c (gethttp): Don't truncate a pre-existing file if `-c' was
6677         specified and the server doesn't support continued download.
6678         (gethttp): Don't start the download from scratch if `-c' was
6679         specified, but the file is already fully downloaded.
6680
6681 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
6682
6683         (recursive_retrieve): Don't clear the hash tables at this point at
6684         all; it interferes with the normal operation of register_download.
6685
6686 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
6687
6688         * recur.c (recursive_retrieve): Clear the hash tables only when
6689         they are defined.
6690
6691 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
6692
6693         * http.c (gethttp): Make sure the socket is closed with
6694         CLOSE_INVALIDATE before we have drained the body.
6695
6696 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
6697
6698         * retr.c (retrieve_url): Call register_download() for downloaded
6699         files and register_html() for downloaded HTML files.
6700
6701         * recur.c (register_download): New function; register here that a
6702         file has been downloaded, rather than in recursive_retrieve().
6703         (register_html): New function; enqueue the location of HTML files
6704         here rather than in recursive_retrieve().
6705
6706 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
6707
6708         * main.c (print_help): Use multiple fputs instead of a single ugly
6709         printf().
6710         (main): Consistently assign numbers >128 to options without a
6711         corresponding character.
6712
6713 2001-03-09  Philipp Thomas  <pthomas@suse.de>
6714
6715         * safe-ctype.h: New file. Locale independent ctype.h replacement
6716         taken from libiberty.
6717
6718         * safe-ctype.c: New file. Tables for above.
6719
6720         * Makefile.in: Add safe-ctype$o to OBJS.  Add dependencies for
6721         safe-ctype$o.
6722
6723         * cmpt.c: Remove include of ctype.h. Use ISSPACE instead of
6724         isspace.
6725
6726         * ftp-basic.c: Don't include ctype.h.
6727
6728         * ftp-ls.c: Likewise.
6729
6730         * ftp.c: Likewise.
6731
6732         * headers.c: Likewise.
6733
6734         * host.c: Likewise.
6735
6736         * html-parse.c: Likewise.
6737
6738         * html-url.c: Likewise.
6739
6740         * http.c: Likewise.
6741
6742         * init.c: Likewise.
6743
6744         * main.c: Likewise. Set LC_CTYPE along with LC_MESSAGES.
6745
6746         * netrc.c: Likewise.
6747
6748         * recur.c: Likewise.
6749
6750         * retr.c: Likewise.
6751
6752         * snprintf.c: Replace ctype.h with safe-ctype.h. Use ISDIGIT
6753         instead of isdigit.
6754
6755         * sysdep.h: Remove defines of ctype macros as they aren't needed
6756         for safe-ctype-h.
6757
6758         * url.c: Don't include ctype.h.
6759
6760         * utils.c: Likewise.
6761
6762         * wget.h: Include safe-ctype.h.
6763
6764 2001-03-27  Dan Harkless  <wget@harkless.org>
6765
6766         * Makefile.in: Moved top_builddir out of "User configuration
6767         section" of top Makefile and analogous spot in this one.
6768
6769 2001-03-17  Dan Harkless  <wget@harkless.org>
6770
6771         * Makefile.in: Include @SSL_INCLUDES@ substition in INCLUDES.
6772         Define top_builddir.  Link wget with libtool so the user doesn't
6773         have to supply a bunch of custom environment variables to 
6774         correctly link with the OpenSSL shared libraries.
6775
6776 2001-03-06  Hack Kampbjorn  <hack@hackdata.com>
6777
6778         * http.c (gethttp): skip :port in host header if it is the
6779         DEFAULT_HTTPS_PORT when using SSL.
6780
6781         * url.c: move the #define of DEFAULT_HTTP_PORT, DEFAULT_FTP_PORT
6782         and DEFAULT_HTTPS_PORT to the header file so it can be use in the
6783         rest of the code. 
6784         * url.h: Ditto
6785
6786 2001-03-01  Jonas Jensen  <bones@huleboer.dk>
6787
6788         * retr.c (show_progress): Correctly calculate the number of bytes
6789         in the first line of the download that have been actually
6790         downloaded in this run.
6791
6792 2001-02-23  Dan Harkless  <wget@harkless.org>
6793
6794         * main.c (print_help): --help documentation for -N said it would
6795         re-download files if they had the _same_ timestamp on server.
6796         (print_help): -nr belongs in "FTP options" section of --help
6797         output, not "Recursive retrieval" section.  Alphabetized FTP
6798         options by long option name.
6799
6800 2001-02-16  Dan Harkless  <wget@harkless.org>
6801
6802         * init.c (commands): Hack Kampbjørn <hack@hackdata.com> discovered
6803         that "httpsproxy" had been inserted into commands[] out of
6804         alphabetical order, causing "BUG: unknown command `httpuser'".
6805
6806 2001-02-13  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6807
6808         * ftp-ls.c (ftp_parse_ls): Added support of ST_MACOS (Unix-like
6809         listing without correct permissons).
6810
6811         * ftp.h (stype): Added ST_MACOS to identify the NetPresenz MacOS
6812         FTP server. 
6813
6814         * ftp.c (ftp_retrieve_list): New mirroring logic: A remote file
6815         shall be donwloaded only when it's newer than the local copy or
6816         when it has the same timeestamp but its size is different. ST_VMS
6817         and ST_MACOS as special cases that lie about file size. 
6818
6819         * ftp-ls.c (ftp_parse_ls): Support for ST_MACOS.
6820
6821         * Makefile.in: Removed dependency on ftpparse library due to unclear
6822         copyright issues and absence of any feedback to our queries. 
6823
6824         * ftp-ls.c: Removed dependency on ftpparse library due to unclear
6825         copyright issues and absence of any feedback to our queries.   
6826         (ftp_parse_ls): Added a warning message when remote server system
6827         does not seem to be suported by wget. 
6828         (ftp_parse_vms_ls): New function for parsing VMS ftp
6829         server listing output.
6830         (clean_line): New function responsible for removing
6831         end-of-line characters from FTP listing texts.
6832
6833         * ftp.c (getftp): Global variables pwd and host_type are now
6834         member of the ccon structure under names ccon.id and ccon.rs. 
6835
6836         * ftp.h (struct ccon): Added formed global variables from ftp.c,
6837         enum stype rs (remote system identification) and char *id (initial
6838         working directory), as suggested by Hrvoje.
6839
6840         * url.c (parse_uname): Added support for passwords containing '@'
6841         characters.
6842         (skip_uname): Ditto.
6843
6844 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6845
6846         * ftp.c (ftp_loop): Reset con.
6847
6848 2001-01-06  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6849
6850         * url.c (parse_uname): Added support for passwords containing '@'
6851         characters.
6852         (skip_uname): Ditto.
6853
6854 2001-02-11  Hack Kampbjørn  <hack@hackdata.com>
6855
6856         * url.c (parseurl): Debug-print u->ftp_type.
6857
6858 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6859
6860         * ftp.c (ftp_loop_internal): Disable padding.
6861         (getftp): Ditto.
6862
6863         * http.c (http_loop): Disable padding.
6864
6865         * retr.c (show_progress): Use it to enable padding.
6866
6867         * retr.c (rate): Optional parameter PAD for padding the rate.
6868
6869 2001-02-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6870
6871         * retr.c (show_progress): Make sure that the last output line
6872         includes progress.
6873
6874 2001-02-10  Jonas Jensen  <bones@huleboer.dk>
6875
6876         * retr.c (show_progress): Print the download rate along with the
6877         percentages.
6878         Along with Anders Thorsby <anders@thorsby.dk>.
6879
6880 2001-02-10  Tim Mooney  <mooney@dogbert.cc.ndsu.NoDak.edu>
6881
6882         * ftp.h: Rename enums `command' to `wget_ftp_command' and
6883         `fstatus' to `wget_ftp_status' because old names clash with Tru64
6884         net/if.h.
6885
6886 2001-02-08  Christian Fraenkel <christian.fraenkel@gmx.net>
6887
6888         * gen_sslfunc.c: verify_callback is now static
6889
6890         * gen_sslfunc.c (init_ssl): load certificate if specified
6891
6892         * gen_sslfunc.c (ssl_printerr): new function
6893
6894         * init.c: added new --sslcertfile and --sslcertkey switches
6895
6896         * main.c: ditto
6897
6898         * options.h: ditto
6899
6900         * http.c (gethttp): abort when init_ssl fails
6901
6902 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
6903
6904         * mswindows.h: Include <malloc.h>; it's needed for alloca().
6905
6906 2001-01-10  Dan Harkless  <wget@harkless.org>
6907
6908         * url.c (str_url): Clarified this function's comment header after
6909         Hrvoje answered my question on the list as to when hide != 1.
6910         Also Hrvoje pointed out I need to use xstrdup() on the string literal.
6911
6912 2001-01-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6913
6914         * connect.c (bindport): Declare addrlen as int.  Diagnosed by
6915         Drazen Kacar <dave@arsdigita.com>.
6916         (conaddr): Ditto.
6917
6918 2001-01-09  Dan Harkless  <wget@harkless.org>
6919
6920         * html-url.c: A bunch of fixup of `--page-requisites'-related
6921         comments to reflect Hrvoje's changes to my code when transplanting
6922         it into this new file, to fix spelling mistakes, to clarify, etc.
6923
6924         * url.c (write_backup_file): Clarified a comment.
6925         (str_url): Henrik van Ginhoven pointed out on the list that we
6926         shouldn't give away the number of characters in the password by
6927         replacing each character with a 'x'.  Use "<password>" instead.
6928
6929         * ftp.c (ftp_retrieve_dirs): The bug where recursion into FTP
6930         directories didn't work if logging in put you in a directory other
6931         than "/" is fixed now.  Removed the comment here warning of the bug.
6932
6933         * main.c (print_help): --continue's description was misleading.
6934         We don't "restart", we "resume".  Also, better to say
6935         "partially-downloaded file" rather than just "existing file".
6936
6937 2001-01-06  Dan Harkless  <wget@harkless.org>
6938
6939         * ChangeLog: The '[Not in 1.6 branch.]'s were decided not to be
6940         the best way to go about my aim.  Removed them in favor of:
6941
6942         * ChangeLog-branches/1.6_branch.ChangeLog: New file.
6943
6944 2001-01-04  Hrvoje Niksic  <hniksic@arsdigita.com>
6945
6946         * url.c (replace_attr): New function, to be used by both
6947         TO_COMPLETE and TO_RELATIVE case in convert_links.
6948         (find_fragment): New function for finding URL fragments.
6949         (replace_attr): Better handle the case where the original string
6950         is not quoted.  Use find_fragment.
6951         (convert_links): Use replace_attr().
6952
6953 2000-12-31  Dan Harkless  <wget@harkless.org>
6954
6955         * ChangeLog: Since this flat file doesn't have multiple branches,
6956         looking at the dates would make you think that things went into
6957         1.6 that actually just went into the 1.7-dev branch.  Added "[Not
6958         in 1.6 branch.]" where appropriate to clarify.
6959         
6960 2000-12-30  Dan Harkless  <wget@harkless.org>
6961
6962         * ftp.c, http.c:  Applied Hack Kampbjørn <hack@hackdata.com>'s
6963         patch to deal with h_errno not being defined in netdb.h under Cygwin.
6964
6965 2000-12-18  Csaba Raduly  <csaba.raduly@sophos.com>
6966
6967         * sysdep.h: Include <malloc.h> and <io.h> under Watcom.
6968
6969 2000-12-17  Igor Khristophorov  <igor@atdot.org>
6970
6971         * http.c (check_end): Fix test for '+' or '-'.
6972
6973 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6974
6975         * url.c (parseurl): Rename inner loop var from i to ind to avoid
6976         clash with the function top-level-declared variable i.
6977         (str_url): Likewise, rename inner-loop i to j.
6978
6979         * recur.c (parse_robots): Don't declare LEN at top of function.
6980         (robots_match): Renamed parameter FORBIDDEN to avoid hiding of
6981         global variable.
6982
6983         * main.c (main): Change erroneous use of bitwise and to logical.
6984
6985         * init.c (cmd_address): Don't heap-allocate `sin'; it can be on
6986         the stack because it will be copied to closure.
6987
6988         Thanks to Csaba Raduly's run of PC-LINT over the sources.
6989
6990 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6991
6992         * http.c (basic_authentication_encode): Use xmalloc(), not
6993         malloc().  Thanks to Csaba Raduly's run of PC-LINT over the
6994         sources.
6995
6996 2000-12-17  Csaba Raduly  <csaba.raduly@sophos.com>
6997
6998         * sysdep.h: Test for __EMX__ rather than for EMXOS2 for OS/2
6999         compilation.
7000
7001 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
7002
7003         * mswindows.c: Include <errno.h>.
7004
7005         * gen_sslfunc.c: Include <errno.h>.
7006
7007         * ftp-basic.c: Don't attempt to declare errno or h_errno because
7008         they're not used.
7009
7010         * main.c: Include <errno.h> because errno is used.
7011
7012         * ftp.c: Ditto.
7013
7014         * http.c: Include <netdb.h> for h_errno.
7015
7016 2000-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7017
7018         * html-parse.c (advance_declaration): MSVC assert() chokes on
7019         '\"'.  Use '"' instead.
7020
7021 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7022
7023         * utils.c (xfree_real): Removed.
7024         (xfree_debug): Just call free().
7025
7026         * wget.h (xfree): Make it an alias for free.
7027
7028 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7029
7030         * http.c (http_loop): Furthermore, touch output_document only if
7031         it is known to be an existing regular file.
7032
7033 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7034
7035         * ftp.c (ftp_retrieve_list): Ditto.
7036
7037         * http.c (http_loop): Touch output_document if that is used for
7038         output.
7039
7040 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
7041
7042         * http.c: Include gen_sslfunc.h after including Wget's headers.
7043         (persistent_available_p): Needed coma before `int ssl'.
7044
7045 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
7046
7047         * ftp.c (ftp_loop_internal): Ditto.
7048
7049         * http.c (http_loop): Use it.
7050
7051         * retr.c (sleep_between_retrievals): New function that handles the
7052         logic of opt.wait and opt.waitretry.
7053
7054 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
7055
7056         * rbuf.h: Implement only a single version of RBUF_READCHAR, using
7057         rbuf_read_bufferful when the buffer is depleted.
7058
7059         * rbuf.c (rbuf_read_bufferful): New function.
7060
7061 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
7062
7063         * gen_sslfunc.h: Use ansi2knr style function declarations.
7064
7065         * gen_sslfunc.c: Reformat according to the GNU coding standards.
7066         More should be done.
7067
7068         * http.c (persistent_available_p): Place the cheap SSL test nearer
7069         the top of the function.
7070         (CLOSE_FINISH, CLOSE_INVALIDATE): Define only one version of each.
7071
7072 2000-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
7073
7074         * url.c (init_unsafe_char_table): Reinstate space as an unsafe
7075         char.
7076
7077 2000-12-03  Christian Fraenkel <christian.fraenkel@gmx.net>
7078
7079         * Makefile.in: added gen_sslfunc object
7080         * config.h.in: added HAVE_SSL define
7081         * connect.c: changed select_fd from static int to int
7082         * connect.h: ditto
7083         * gen_sslfunc.h: New file
7084         * gen_sslfunc.c: ditto
7085         * http.c: added HTTPS fuctionality
7086         * retrc.c: ditto
7087         * url.c: ditto
7088         * init.c: added opt.httpsproxy
7089         * options.h: ditto
7090         * rbuf.h: added alternate rbuf struct
7091         * wget.h: added CONSSLERR
7092         * rbuf.c: ditto
7093
7094         * http.c: Added HTTPS fuctionality.
7095
7096         * retrc.c: Ditto.
7097
7098         * url.c: Ditto.
7099
7100         * init.c: Added opt.httpsproxy.
7101
7102         * options.h: Ditto.
7103
7104         * rbuf.h: Added alternate rbuf struct.
7105
7106         * wget.h: Added CONSSLERR.
7107
7108         * rbuf.c: Ditto.
7109
7110 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
7111
7112         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
7113         "ignore_perms" to ignore file and directory permissions for
7114         Windows NT FTP server listings.
7115         (ftp_parse_winnt_ls): New function.
7116         (ftp_parse_ls): Parses UNIX and Windows NT listings
7117         separately. Simple heuristics for distinguishing between UNIX and
7118         MS-DOS-like FTP listing provided by Windows NT FTP service.
7119
7120 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
7121
7122         * ftpparse.c, ftpparse.h: New files.
7123
7124         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
7125         only. Use ftp_parse_nonunix_ls otherwise.
7126         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
7127         exotic FTP servers.
7128
7129         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
7130         FTP servers.
7131
7132         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
7133         (getftp): Support for VMS. Support for FTP servers that do not
7134         place you in the root directory after login.
7135         (ftp_retrieve_list): VMS is silent about the real file size, issue
7136         a more appropriate message.
7137         (ftp_get_listing): Pass host_type to ftp_parse_ls.
7138
7139         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
7140
7141 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
7142
7143         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
7144         "ignore_perms" to ignore file and directory permissions for
7145         Windows NT FTP server listings.
7146         (ftp_parse_winnt_ls): New function.
7147         (ftp_parse_ls): Parses UNIX and Windows NT listings
7148         separately. Simple heuristics for distinguishing between UNIX
7149         and MS-DOS-like FTP listing provided by Windows NT FTP service.
7150
7151 2000-11-29  John Summerfield  <summer@OS2.ami.com.au>
7152
7153         * netrc.c (parse_netrc): Get rid of line ending.
7154
7155 2000-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7156
7157         * ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by
7158         Dan.
7159
7160 2000-11-24  Karl Eichwalder  <ke@suse.de>
7161
7162         * main.c (print_help): Untabify.
7163
7164 2000-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
7165
7166         * utils.c (xrealloc_debug): Do the unregister/register thing only
7167         if the pointer has actually changed.
7168         (xmalloc_real): Declare `static' in DEBUG_MALLOC builds.
7169         (xfree_real): Ditto.
7170         (xrealloc_real): Ditto.
7171         (xstrdup_real): Ditto.
7172
7173 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
7174
7175         * ftp.c (getftp): ftp_getaddress() returns a malloc'ed copy of the
7176         string; no need to strdup() it.
7177         (getftp): Make pwd_len a local variable.
7178         (ftp_loop): Free PWD before returning.
7179
7180         * init.c (cleanup): Free opt.ftp_pass only if it's non-NULL.
7181
7182 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
7183
7184         * all: Use xfree() instead of free.
7185
7186         * utils.c (xfree): New function.
7187
7188 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
7189
7190         * url.c (convert_links): HTML-quote the converted string.
7191
7192         * utils.c (html_quote_string): Move here from ftp-ls.c
7193         (html_quote_string): Make non-static; declare in utils.h.
7194         (html_quote_string): Convert SP to &#32;.
7195
7196 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
7197
7198         * ftp.c (getftp): Reformat Jan's code according to GNU coding
7199         standards; remove (debugging?) printf's; use '\0' for the ASCII
7200         zero character.  Use alloca() instead of malloc() for
7201         inter-function temporary allocations.
7202
7203 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
7204
7205         * ftpparse.c, ftpparse.h: New files.
7206
7207         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
7208         only. Use ftp_parse_nonunix_ls otherwise.
7209         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
7210         exotic FTP servers.
7211
7212         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
7213         FTP servers.
7214
7215         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
7216         (getftp): Support for VMS. Support for FTP servers that do not
7217         place you in the root directory after login.
7218         (ftp_retrieve_list): VMS is silent about the real file size, issue
7219         a more appropriate message.
7220         (ftp_get_listing): Pass host_type to ftp_parse_ls.
7221
7222         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
7223
7224 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
7225
7226         * hash.c (hash_table_put): Don't overwrite deleted mappings.
7227
7228 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
7229
7230         * hash.c (find_mapping): New function.
7231         (hash_table_get): Use it.
7232         (hash_table_get_pair): Ditto.
7233         (hash_table_exists): Ditto.
7234         (hash_table_remove): Ditto.
7235         (hash_table_remove): Really delete the entry if the mapping
7236         following LOCATION is empty.
7237
7238         * utils.c (string_set_add): Check whether the element has existed
7239         before.
7240
7241         * hash.c (hash_table_get_pair): New function.
7242
7243 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7244
7245         * http.c (http_process_type): Ignore trailing whitespace; use
7246         strdupdelim().
7247
7248         * recur.c (recursive_retrieve): Use the new `convert' field.
7249         (convert_all_links): Ditto.
7250         (convert_all_links): Don't respect meta_disallow_follow.
7251
7252         * html-url.c (handle_link): Fill out link_relative_p and
7253         link_complete_p.
7254
7255         * url.h (struct _urlpos): Make elements more readable.
7256
7257         * recur.c (recursive_retrieve): Call slist_prepend instead of
7258         slist_append.
7259         (convert_all_links): Call slist_nreverse before iterating through
7260         urls_html.
7261
7262         * utils.c (slist_prepend): New function.
7263         (slist_nreverse): Ditto.
7264
7265 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7266
7267         * http.c (check_end): Constify.
7268
7269 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7270
7271         * http.c (http_loop): If username and password are known, try the
7272         `Basic' authentication scheme by default.
7273
7274         * connect.h: Declare test_socket_open.
7275
7276 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7277
7278         * version.c: Bump version from 1.5.3+dev to 1.7-dev.
7279
7280 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7281
7282         * http.c (gethttp): Don't use the return value of sprintf().
7283         (gethttp): Inhibit keep-alive if opt.http_keep_alive is 0.
7284
7285 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7286
7287         * recur.c (recursive_retrieve): Print the "so we don't load"
7288         debugging message only if we really don't load.
7289
7290         * http.c (gethttp): Inhibit keep-alive if proxy is being used.
7291         (gethttp): Don't request keep-alive if keep-alive is inhibited.
7292
7293 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7294
7295         * http.c (gethttp): Make the HTTP persistent connections more
7296         robust.
7297
7298 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7299
7300         * retr.c (get_contents): If use_expected, make sure that the
7301         appropriate amount of data is being read.
7302
7303         * http.c (gethttp): Check for both `Keep-Alive: ...' and
7304         `Connection: Keep-Alive'.
7305
7306         * wget.h (DEBUGP): Call debug_logprintf only if opt.debug is
7307         turned on.
7308
7309 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7310
7311         * http.c (connection_available_p): Use it.
7312
7313         * connect.c (test_socket_open): New function.
7314
7315         * http.c (gethttp): Support persistent connections.  Based on the
7316         ideas, and partly on code, by Sam Horrocks <sam@daemoninc.com>.
7317         (register_persistent): New function.
7318         (connection_available_p): Ditto.
7319         (invalidate_connection): Ditto.
7320
7321 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7322
7323         * url.c (convert_links): Handle UREL2ABS case.
7324
7325         * recur.c (recursive_retrieve): Instead of the list
7326         urls_downloaded, use hash tables dl_file_url_map and
7327         dl_url_file_map.
7328         (convert_all_links): Use them to retrieve data.
7329
7330         * host.c (clean_hosts): Free the hash tables.
7331
7332         * main.c (private_initialize): Call host_init().
7333
7334         * host.c (store_hostaddress): Use a saner, hash table-based data
7335         model.
7336         (realhost): Ditto.
7337         (host_init): Initialize the hash tables.
7338
7339 2000-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7340
7341         * utils.c (slist_append): Eviscerate NOSORT.  Hash tables are now
7342         used for what the sorted slists used to be used for.
7343         (slist_contains): Don't rely on the list being sorted.
7344         (slist_append): Simplify the code.
7345
7346         * recur.c (recursive_cleanup): Use free_string_set.
7347
7348         * utils.c (string_set_add, string_set_exists, string_set_free):
7349         New functions for easier freeing of hash tables whose keys are
7350         strdup'ed strings.
7351
7352         * recur.c (recursive_retrieve): Use the hash table functions for
7353         storing undesirable URLs.
7354
7355         * hash.c: New file.
7356
7357 2000-11-17  Hrvoje Niksic  <hniksic@arsdigita.com>
7358
7359         * main.c (private_initialize): Call url_init.
7360         (main): Call private_initialize.
7361
7362         * url.c (unsafe_char_table): New table.
7363         (UNSAFE_CHAR): Use it.
7364         (init_unsafe_char_table): New function.
7365         (url_init): New function; call init_unsafe_char_table.
7366
7367 2000-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
7368
7369         * mswindows.h: Define snprintf and vsnprintf to _snprintf and
7370         _vsnprintf respectively.
7371
7372 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
7373
7374         * config.h.in: Do the _XOPEN_SOURCE and _SVID_SOURCE things only
7375         on Linux.
7376
7377 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
7378
7379         * html-url.c (handle_link): Handle HTML fragment identifiers.
7380
7381         * recur.c (recursive_retrieve): If norobot info is respected and
7382         the file is specified not to be followed by robots, respect that.
7383
7384         * html-url.c (collect_tags_mapper): Handle <meta name=robots
7385         content=X>.  For us the important cases are where X is NONE or
7386         where X contains NOFOLLOW.
7387         (get_urls_html): Propagate that information to the caller.
7388
7389 2000-11-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7390
7391         * url.c (convert_links): Unlink the file we might be reading from
7392         before writing to it.
7393         (convert_links): Use alloca instead of malloc for
7394         filename_plus_orig_suffix.
7395
7396 2000-11-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7397
7398         * host.c (realhost): Add HOST to the list with quality==0 only if
7399         it wasn't already there.
7400         Based on analysis by Lu Guohan <feng@public.bjnet.edu.cn>.
7401
7402 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7403
7404         * url.c (get_urls_file): Ditto.
7405         (convert_links): Ditto.
7406
7407         * html-url.c (get_urls_html): Use read_file() instead of
7408         load_file().
7409
7410         * utils.c (read_file): New function, instead of the old
7411         load_file().
7412         (read_file_free): Ditto.
7413
7414         * url.c (findurl): Search only for the supported protocols.
7415         (convert_links): Use fwrite() when writing out a region of
7416         characters.
7417
7418 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7419
7420         * ftp-ls.c: Move html_quote_string and ftp_index here.
7421
7422         * url.c: Remove get_urls_html, since that's now in html-url.c.
7423
7424         * html-url.c: New file.
7425
7426         * html-parse.c: New file.
7427
7428 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7429
7430         * init.c (run_wgetrc): Don't bother killing off '\r' since
7431         pars_line() skips whitespace at end of line anyway.
7432         (parse_line): Oops, it didn't.  Now it does.
7433
7434         * recur.c (parse_robots): Ditto here.
7435
7436         * ftp-ls.c (ftp_parse_unix_ls): Kill off the newline character
7437         manually because read_whole_line no longer does.
7438
7439         * utils.c (read_whole_line): Rewrite to: a) use less memory
7440         (reallocates to needed size after work), b) work faster -->
7441         fgets() instead of getc, c) be more correct --> doesn't kill the
7442         newline character at the end of line.
7443
7444 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7445
7446         * init.c (comind): Initialize MAX to array size - 1.
7447
7448 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
7449
7450         * url.c (construct): Changed last_slash[-1] to *(last_slash - 1).
7451         Suggested by Edward J. Sabol.
7452
7453 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
7454
7455         * url.c (construct): Handle the case where host name is not
7456         followed by a slash.
7457
7458 2000-11-06  Hrvoje Niksic  <hniksic@arsdigita.com>
7459
7460         * init.c: commands[] need to be sorted!  ("base" wasn't.)
7461
7462 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
7463
7464         * wget.h (DO_REALLOC_FROM_ALLOCA): Use braces to disambiguate
7465         `if'.
7466
7467 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
7468
7469         * url.c (construct): Insert unneeded initialization for the
7470         compiler to shut up.
7471
7472         * config.h.in: Define _XOPEN_SOURCE to 500 to get the prototype
7473         for strptime() (*duh*).  Define _SVID_SOURCE to get S_IFLNK which
7474         otherwise gets lost when you define _XOPEN_SOURCE.
7475
7476         * utils.c (touch): Include the file name in the error message.
7477         From Debian.
7478
7479 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
7480
7481         * log.c (logvprintf): Use vsnprintf() in all cases.  If necessary,
7482         resize the buffer to fit the formated message.  That way, messages
7483         of arbitrary size may be printed.
7484         (logvprintf): Use saved_append() to optionally log the last
7485         several lines of output.
7486         (logputs): Ditto.
7487         (log_close): Adapt to new data structures.
7488         (log_dump): Ditto.
7489         (redirect_output): Print messages to stderr, not to stdout.
7490
7491         * log.c (saved_append_1): New function.  Replaces the old logging
7492         system ("log all output until 10M characters") with a new, much
7493         more reasonable one ("log last screenful of text").
7494         (saved_append): New function; call saved_append_1.
7495         (free_log_line): New function.
7496
7497 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
7498
7499         * url.c (construct): Fix comment.
7500         (find_last_char): Document.
7501
7502 2000-11-04  Hrvoje Niksic  <hniksic@arsdigita.com>
7503
7504         * snprintf.c: New file.
7505
7506 2000-11-03  Hrvoje Niksic  <hniksic@arsdigita.com>
7507
7508         * wget.h: If HAVE_STDARG_H is not defined, don't declare argument
7509         types to logprintf() and debug_logprintf().
7510
7511 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
7512
7513         * ftp.c (ftp_loop_internal): Hide the password from the URL when
7514         printing non-verbose.  Problem spotted by Dariusz Mlynarczyk
7515         <darekm@bydg.lomac.com.pl>.
7516
7517 2000-11-02  Junio Hamano  <junio@twinsun.com>
7518
7519         * ftp-basic.c (ftp_login): Make comparison case-insensitive.
7520
7521 2000-11-02  Tyler Riddle  <triddle@liquidmarket.com>
7522
7523         * http.c (known_authentication_scheme_p): Recognize NTML
7524         authentication.
7525         (create_authorization_line): Treat NTML the same as `Basic'.
7526
7527 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
7528
7529         * retr.c (retrieve_url): Free url before returning.
7530         (retrieve_url): Free mynewloc before returning.
7531         Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
7532
7533 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
7534
7535         * url.c (parseurl): Remove possible reading past the end of
7536         sup_protos[].  Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
7537
7538 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7539
7540         * main.c (main): In case of opt.downloaded overflowing, print
7541         <overflow> instead of a totally bogus random value.
7542
7543         * retr.c (retrieve_from_file): Ditto.
7544
7545         * recur.c (recursive_retrieve): Ditto.
7546
7547         * main.c (main): Ditto.
7548
7549         * http.c (http_loop): Ditto.
7550
7551         * ftp.c (ftp_loop_internal): Use downloaded_increase() instead of
7552         `+=', and downloaded_exceeds_quota() instead of the simple-minded
7553         check.
7554         (ftp_retrieve_list): Ditto.
7555         (ftp_retrieve_dirs): Ditto.
7556         (ftp_retrieve_glob): Ditto.
7557
7558         * retr.c (downloaded_increase): New function.  Notice overflows of
7559         opt.downloaded.
7560         (downloaded_exceeds_quota): Make sure that opt.downloaded is not
7561         used if it overflowed.
7562
7563         * options.h (struct options): New member downloaded_overflow.
7564
7565 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7566
7567         * wget.h (enum): Remove extra space after last enumeration.
7568
7569 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7570
7571         * main.c (main): Use legible_very_long() for printing
7572         opt.downloaded.
7573
7574         * utils.c (legible_1): New function that operates on strings and
7575         does the brunt of legible()'s work.
7576         (legible): Use legible_1().
7577         (legible_very_long): New function; dump the argument with
7578         sprintf(), and call legible_1().
7579
7580         * options.h (struct options): Use VERY_LONG_TYPE for
7581         opt.downloaded.
7582
7583         * sysdep.h (VERY_LONG_TYPE): Define it to have a 64-bit or greater
7584         type.
7585
7586         * config.h.in: Make sure that SIZEOF_LONG and SIZEOF_LONG_LONG get
7587         defined.  Define HAVE_LONG_LONG if long long is available.
7588
7589 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7590
7591         * utils.c (long_to_string): Update with a later, better version.
7592
7593 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7594
7595         * url.c (path_simplify_with_kludge): New function.
7596         (path_simplify_with_kludge): Disable it.  Instead...
7597         (parse_dir): ...make sure that at this point the right thing is
7598         done, i.e. that "query" part of the URL (?...) is always assigned
7599         to the file, never to the directory portion of the path.
7600
7601 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7602
7603         * retr.c (retrieve_url): Detect redirection cycles.
7604
7605 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7606
7607         * url.c (get_urls_html): Decode HTML entities using
7608         html_decode_entities.
7609
7610         * html.c (htmlfindurl): Don't count the `#' in numeric entities
7611         (&#NNN;) as an HTML fragemnt.
7612         (html_decode_entities): New function.
7613
7614 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7615
7616         * html.c (htmlfindurl): Fix recognition of # HTML fragments.
7617
7618 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7619
7620         * url.c (construct): Rewritten for clarity.  Avoids the
7621         unnecessary copying and stack-allocation the old version
7622         performed.
7623
7624 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
7625
7626         * ftp.c (getftp): Ditto.
7627
7628         * http.c (gethttp): Rewind the stream when retrying from scratch.
7629
7630 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
7631
7632         * retr.c (retrieve_url): Use url_concat() to handle relative
7633         redirections instead of /ad hoc/ code.
7634
7635         * url.c (url_concat): New function encapsulating weird
7636         construct().
7637         (urllen_http_hack): New function.
7638         (construct): When constructing new URLs, recognize that `?' does
7639         not form part of the file name in HTTP.
7640
7641 2000-10-13  Adrian Aichner  <adrian@xemacs.org>
7642
7643         * retr.c: Add msec timing support for WINDOWS.
7644         * retr.c (reset_timer): GetSystemTime() on WINDOWS.
7645         * retr.c (elapsed_time): Calculate delta time to msec on WINDOWS.
7646
7647 2000-10-27  Dan Harkless  <wget@harkless.org>
7648
7649         * retr.c (retrieve_url): Manually applied T. Bharath
7650         <TBharath@responsenetworks.com>'s patch to get wget to grok
7651         illegal relative URL redirects.  Reformatted and re-commented it.
7652
7653 2000-10-23  Dan Harkless  <wget@harkless.org>
7654
7655         * connect.c (make_connection and bindport): Manually applied Rob
7656         Mayoff <mayoff@dqd.com>'s 1.5.3 patch to add --bind-address,
7657         changing coding style to GNU's.
7658
7659         * ftp.c (ftp_loop_internal): --delete-after wasn't implemented for
7660         files downloaded via FTP.  Per a comment, .listing files were not
7661         counted towards number of bytes and files downloaded because they're 
7662         deleted anyway.  Well, they aren't under -nr, so count them then.
7663
7664         * init.c: Manually applied Rob Mayoff's 1.5.3 patch to add
7665         --bind-address, alphabetizing, changing coding style to GNU's,
7666         commenting, and renaming cmd_ip_address() to cmd_address() to
7667         imply hostnames also okay.
7668                 
7669         * main.c (main): --delete-after didn't delete the root of the
7670         tree.  Ignore --convert-links if --delete-after was specified.
7671         Manually applied Rob Mayoff's 1.5.3 patch to add --bind-address,
7672         fixing duplicate use of added-since-1.5.3 case value.
7673         (print_help): Clarified that --delete-after deletes local files.
7674         Rob forgot to add a line for his new --bind-address option.
7675                 
7676         * options.h (struct options): Manually applied Rob Mayoff's patch
7677         to add --bind-address (bind_address structure member).
7678                 
7679         * recur.c (recursive_retrieve): Improved comment; added DEBUGP().
7680         Ignore --convert-links if --delete-after was specified.
7681                 
7682         * retr.c (retrieve_from_file): Just added a DEBUGP().
7683                 
7684 2000-10-19  Dan Harkless  <wget@harkless.org>
7685
7686         * ftp.c (ftp_loop_internal): downloaded_file() enumerators changed.
7687         (getftp): Applied Piotr Sulecki <Piotr.Sulecki@ios.krakow.pl>'s
7688         patch to work around FTP servers that incorrectly respond to the
7689         "REST" command with the remaining size rather than the total file size.
7690                 
7691         * http.c (gethttp): Improved a comment and added code to tack on
7692         ".html" to text/html files without that extension when -E specified.
7693         (http_loop): Use new downloaded_file() enumerators and deal with
7694         the case of gethttp() called xrealloc() on u->local.
7695
7696         * init.c (commands): Added new "htmlextension" command.
7697         Also renamed John Daily's cmd_quad() to the more descriptive
7698         cmd_lockable_boolean(), alpha-sorted the CMD_DECLARE()s and
7699         removed duplicate cmd_boolean() declaration.
7700
7701         * main.c (print_help): Added my new -E / --html-extension option.
7702         (main): Undocumented --email-address option previously used -E synonym.
7703         Stole it away for the much more deserving --html-extension's use.
7704
7705         * options.h (struct options): Added html_extension field.
7706
7707         * url.c (convert_links): URL X that we saved as X.html locally due
7708         to -E needs to be backed up as X.orig, not X.html.orig.  Added comments.
7709         (downloaded_file): Now remembers if we added .html extension to a file.
7710
7711         * url.h (downloaded_file_t): Added extra enumerators to support above.
7712         (downloaded_file): Now takes and returns a downloaded_file_t.
7713
7714         * wget.h (unnamed "dt" enum): Added ADDED_HTML_EXTENSION enumerator.
7715         
7716 2000-10-09  Dan Harkless  <wget@harkless.org>
7717
7718         * html.c (htmlfindurl): Added unneeded initialization to quiet warning.
7719                 
7720         * main.c (print_help): Clarified what --retr-symlinks does.
7721         
7722 2000-09-15  John Daily  <jdaily@cyberdude.com>
7723
7724         * init.c: Add support for "always" and "never" values to allow
7725         .wgetrc to override commandline (useful e.g. with .pm files
7726         calling `wget --passive-ftp' when your firewall doesn't allow that).
7727
7728         * ftp.c (getftp): passive_ftp is first option to support always/never.
7729
7730 2000-08-30  Dan Harkless  <wget@harkless.org>
7731
7732         * ftp.c (ftp_retrieve_list): Use new INFINITE_RECURSION #define.
7733         
7734         * html.c: htmlfindurl() now takes final `dash_p_leaf_HTML' parameter.
7735         Wrapped some > 80-column lines.  When -p is specified and we're at a 
7736         leaf node, do not traverse <A>, <AREA>, or <LINK> tags other than 
7737         <LINK REL="stylesheet">.
7738         
7739         * html.h (htmlfindurl): Now takes final `dash_p_leaf_HTML' parameter.
7740         
7741         * init.c: Added new -p / --page-requisites / page_requisites option.
7742
7743         * main.c (print_help): Clarified that -l inf and -l 0 both allow
7744         infinite recursion.  Changed the unhelpful --mirrior description
7745         to simply give the options it's equivalent to.  Added new -p option.
7746         (main): Added some comments; handle new -p / --page-requisites.
7747         
7748         * options.h (struct options): Added new page_requisites field.
7749
7750         * recur.c: Changed "URL-s" to "URLs" and "HTML-s" to "HTMLs".
7751         Calculate and pass down new `dash_p_leaf_HTML' parameter to
7752         get_urls_html().  Use new INFINITE_RECURSION #define.
7753
7754         * retr.c: Changed "URL-s" to "URLs".  get_urls_html() now takes
7755         final `dash_p_leaf_HTML' parameter.
7756
7757         * url.c: get_urls_html() and htmlfindurl() now take final
7758         `dash_p_leaf_HTML' parameter.
7759
7760         * url.h (get_urls_html): Now takes final `dash_p_leaf_HTML' parameter.
7761
7762         * wget.h: Added some comments and new INFINITE_RECURSION #define.
7763         
7764 2000-08-23  Dan Harkless  <wget@harkless.org>
7765
7766         * main.c (print_help): -B / --base was not mentioned.
7767
7768 2000-08-22  Dan Harkless  <wget@harkless.org>
7769
7770         * main.c (print_help): Modified -nc description to mention that it
7771         also prevents the creation of multiple versions of the same file
7772         with ".<number>" suffixes.
7773
7774 2000-07-14  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
7775
7776         * retr.c (retrieve_url): Consistently strdup opt.referer when
7777         setting u->referer.
7778
7779 2000-06-09  Dan Harkless  <wget@harkless.org>
7780
7781         * main.c (print_help): --help output for --waitretry was over 80 cols.
7782
7783 2000-06-09  Hrvoje Niksic  <hniksic@iskon.hr>
7784
7785         * url.c (encode_string): Fix comment.
7786         Suggested by Herold Heiko <Heiko.Herold@previnet.it>.
7787
7788 2000-06-01  Const Kaplinsky  <const@ce.cctpu.edu.ru>
7789
7790         * ftp.c (ftp_retrieve_list): Change permissions only on plain
7791         files.
7792
7793 2000-06-01  Hrvoje Niksic  <hniksic@iskon.hr>
7794
7795         * url.c (str_url): Print the port number only if it's different
7796         from the default port number for that protocol.
7797
7798 2000-05-22  Dan Harkless  <wget@harkless.org>
7799
7800         * main.c (print_help): Added --help line for Damir Dzeko
7801         <ddzeko@zesoi.fer.hr>'s until-now-undocumented --referer option.
7802         Removed comments that --referer and --waitretry were undocumented.
7803         Changed "`.wgetrc' command" to "`.wgetrc'-style command" on --help
7804         line for --execute.
7805
7806 2000-05-18  Hrvoje Niksic  <hniksic@iskon.hr>
7807
7808         * ftp.c (getftp): Ditto.
7809
7810         * http.c (gethttp): Check for return value of fclose/fflush.
7811
7812 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
7813
7814         * host.c (store_hostaddress): Instead of shifting ADDR, start
7815         copying from the correct address.
7816
7817 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
7818
7819         * http.c (gethttp): Don't free REQUEST -- it was allocated with
7820         alloca().
7821         Pointed out by Gisle Vanem <gvanem@eunet.no>.
7822
7823 2000-04-04  Dan Harkless  <wget@harkless.org>
7824
7825         * host.c (store_hostaddress): R. K. Owen's patch introduces a
7826         "left shift count >= width of type" warning on 32-bit
7827         architectures.  Got rid of it by tricking the compiler w/ a variable.
7828         
7829         * url.c (UNSAFE_CHAR): The macro didn't include all the illegal
7830         characters per RFC1738, namely everything above '~'.  It also
7831         generated a warning on OSes where char =~ unsigned char.  Fixed.
7832         
7833 1998-10-17  Hrvoje Niksic  <hniksic@srce.hr>
7834
7835         * http.c (http_process_type): Removed needless strdup(), a memory
7836         leak.
7837
7838 1998-09-25  Hrvoje Niksic  <hniksic@srce.hr>
7839
7840         * html.c (htmlfindurl): Set PH to the first occurrence of `#'.
7841
7842 1998-09-25  Simon Munton  <simonm@m4data.co.uk>
7843
7844         * init.c (wgetrc_file_name): Don't free HOME under Windows.
7845
7846 1998-12-01  "R. K. Owen"  <rkowen@Nersc.GOV>
7847
7848         * host.c (store_hostaddress): Fix for big endian 64-bit machines.
7849
7850 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
7851
7852         * url.c (UNSAFE_CHAR): New macro.
7853         (contains_unsafe): Use it.
7854         (encode_string): Ditto.
7855
7856 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
7857
7858         * main.c (i18n_initialize): Use LC_MESSAGES only if available.
7859
7860 2000-03-31  Hrvoje Niksic  <hniksic@srce.hr>
7861
7862         * Use TOUPPER/TOLOWER.
7863
7864 1998-12-22  Alexander V. Lukyanov  <lav@yars.free.net>
7865
7866         * ftp-opie.c (btoe): Zero-terminate OSTORE.
7867
7868 2000-03-21  Hrvoje Niksic  <hniksic@iskon.hr>
7869
7870         * wget.h (DO_REALLOC_FROM_ALLOCA): Ditto.
7871
7872         * sysdep.h (ISALNUM): New macro.
7873         (TOLOWER): Ditto.
7874         (TOUPPER): Ditto.
7875
7876 2000-03-10  Dan Harkless  <wget@harkless.org>
7877
7878         * html.c (idmatch): Implemented checking of my new --follow-tags
7879         and --ignore-tags options.
7880         
7881         * init.c (commands): Added comment reminding people adding new
7882         entries doing allocation to add corresponding freeing in cleanup().
7883         (commands): Added new followtags and ignoretags commands.
7884         (cleanup): Free storage for new followtags and ignoretags.
7885         
7886         * main.c: Use of "comma-separated list" was random -- normalized
7887         it.  Did some alphabetization.  Added comments pointing out
7888         "Options without arguments" and "Options accepting an argument"
7889         sections of long_options[].  Added new options --follow-tags and
7890         -G / --ignore-tags.  Added comment that Damir's --referer is
7891         currently undocumented.  Added comment that Heiko's --waitretry is
7892         partially undocumented (mentioned in --help but not in
7893         wget.texi).  Moved improperly sorted 24, 129, and 'G' cases.
7894         
7895         * options.h (struct options): Added new fields follow_tags and
7896         ignore_tags. 
7897         
7898         * wget.h: Added "#define EQ 0" so we can say "strcmp(a, b) == EQ".
7899         
7900 2000-03-02  Dan Harkless  <wget@harkless.org>
7901
7902         * ftp.c (ftp_loop_internal): Heiko introduced "suggest explicit
7903         braces to avoid ambiguous `else'" warnings.  Eliminated them.
7904         
7905         * http.c (gethttp): Dan Berger's query string patch is totally
7906         bogus.  If you have two different URLs, gen_page.cgi?page1 and
7907         get_page.cgi?page2, they'll both be saved as get_page.cgi and the
7908         second will overwrite the first.  Also, parameters to implicit
7909         CGIs, like "http://www.host.com/db/?2000-03-02" cause the URLs to
7910         be printed with trailing garbage characters, and could seg fault.
7911         Backing out the patch, which Dan B. informed me by email was just
7912         a kludge to download StarOffice from Sun made necessary due to
7913         wget's unconditional escaping of certain characters (room for an
7914         option there?).
7915         (http_loop): Heiko introduced "suggest explicit braces to avoid
7916         ambiguous `else'" warnings.  Eliminated them.
7917         
7918         * main.c: Heiko's --wait / --waitretry backwards compatibility
7919         code looks to have been totally untested -- automatic variable
7920         'wr' was used without being initialized, and a long int was passed
7921         into setval()'s char* val parameter.
7922         
7923         * recur.c (parse_robots): Applied Edward J. Sabol
7924         <sabol@alderaan.gsfc.nasa.gov>'s patch for Guan Yang's reported
7925         problem with "User-agent:<space>*<space>" lines in robots.txt.
7926         
7927         * url.c (parseurl, str_url): Removing Dan Berger's code (see
7928         http.c above for explanation).
7929         
7930 1999-08-25  Heiko Herold  <Heiko.Herold@previnet.it>
7931
7932         * ftp.c: Respect new option waitretry.
7933
7934 2000-01-30  Damir Dzeko  <ddzeko@zesoi.fer.hr>
7935
7936         * http.c (gethttp): Send custom Referer, if required.
7937
7938 1999-09-24  Charles G Waldman  <cgw@fnal.gov>
7939
7940         * netrc.c (parse_netrc): Allow passwords to contain spaces.
7941
7942         * netrc.c (parse_netrc): New function.
7943
7944 1999-09-17  Dan Berger  <dberger@ix.netcom.com>
7945
7946         * http.c (gethttp): Send it.
7947
7948         * url.c (parseurl): Detect query string in HTTP URL-s.
7949         (str_url): Print it.
7950
7951 2000-03-02  HIROSE Masaaki  <hirose31@t3.rim.or.jp>
7952
7953         * html.c (html_allow): Add <link href=...> and <script src=...>.
7954
7955 1999-05-02  andrew deryabin  <djsf@softhome.net>
7956
7957         * http.c (gethttp): Specify port in `Host' header only if it's
7958         different from 80.
7959
7960 1998-11-03  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
7961
7962         * recur.c (recursive_retrieve): If a finite maximum depth is
7963         specified, and we're are already at that depth, don't download the
7964         HTML file for parsing.
7965
7966 2000-03-01  Dan Harkless  <wget@harkless.org>
7967
7968         * ftp.c (ftp_loop_internal): Call new downloaded_file() function,
7969         even though we don't do conversion on HTML files retrieved via
7970         FTP, so _current_ usage of downloaded_file() makes this call unneeded. 
7971         (ftp_retrieve_list): Added a comment saying where we need to
7972         stat() a .orig file if FTP'd HTML file conversion is ever implemented.
7973         (ftp_retrieve_list): "Local file '%s' is more recent," is sometimes
7974         a lie -- reworded as "Server file no newer than local file '%s' --".
7975         
7976         * http.c (http_loop): Fixed a typo and clarified a comment.
7977         (http_loop): When -K and -N are specified together, compare size
7978         and timestamp of server file X against local file X.orig (if
7979         extant) rather than converted local file X.
7980         (http_loop): "Local file '%s' is more recent," is sometimes a lie
7981         -- reworded as "Server file no newer than local file '%s' --".
7982         (http_loop): Call new downloaded_file() function to prevent
7983         wrongful overwriting of .orig file when -N is specified.
7984         
7985         * url.c (convert_links): When -K specified, only rename X to
7986         X.orig if downloaded_file() returns TRUE.  Otherwise when we skip
7987         file X due to -N, we clobber an X.orig from a previous invocation.
7988         (convert_links): Call the failsafe xstrdup(), not the real strdup().
7989         (convert_links): Added a note asking anyone who understands how
7990         multiple URLs can correspond to a single file to comment it.
7991         (downloaded_file): Added this new function.
7992         
7993         * url.h (downloaded_file): Added prototype for this new function
7994         as well as its downloaded_file_t enum type.
7995
7996         * wget.h (boolean): Added this new typedef and TRUE and FALSE #defines.
7997
7998 2000-02-29  Dan Harkless  <wget@harkless.org>
7999
8000         * version.c: Upped version to developer-only "1.5.3+dev".
8001
8002 2000-02-18  Dan Harkless  <wget@harkless.org>
8003
8004         * init.c (backup_converted): Added this new option.
8005
8006         * main.c (-K / --backup-converted): Added this new option.
8007
8008         * options.h (backup_converted): Added this new option.
8009
8010         * url.c (convert_links): When backup_converted is specified, save
8011         file X as X.orig before converting.
8012
8013         * url.h (urlpos): Fixed typo -- said "Rekative" instead of "Relative".
8014
8015 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
8016
8017         * version.c: Wget 1.5.3 is released.
8018
8019 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
8020
8021         * host.c (ftp_getaddress): Don't warn when reverse-lookup of local 
8022         address doesn't yield FQDN.
8023
8024 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
8025
8026         * cmpt.c (strerror): Fix declaration of sys_errlist.
8027
8028 1998-09-11  Hrvoje Niksic  <hniksic@srce.hr>
8029
8030         * main.c (main): Don't use an array subscript as the first
8031         argument to STRDUP_ALLOCA.
8032         From Kaveh R. Ghazi.
8033
8034 1998-09-11  Szakacsits Szabolcs  <szaka@sienet.hu>
8035
8036         * html.c (htmlfindurl): Download table background.
8037
8038 1998-09-11  Hans Grobler  <grobh@conde.ee.sun.ac.za>
8039
8040         * init.c (parse_line): Would free *com before allocating it.
8041         (parse_line): Would free com instead of *com.
8042
8043 1998-09-10  Howard Gayle  <howard@fjst.com>
8044
8045         * url.c (get_urls_html): Would drop the last character of the
8046         link.
8047
8048 1998-09-10  Hrvoje Niksic  <hniksic@srce.hr>
8049
8050         * http.c (http_loop): Don't print status code if quiet.
8051
8052 1998-09-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8053
8054         * log.c: Use <stdarg.h> only when __STDC__.
8055
8056 1998-09-10  Adam D. Moss  <adam@foxbox.org>
8057
8058         * html.c (htmlfindurl): Download <layer src=...>.
8059
8060 1998-09-10  Howard Gayle  <howard@fjst.com>
8061
8062         * ftp.c (ftp_retrieve_list): Don't update the time stamp of a file 
8063         not retrieved.
8064
8065 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
8066
8067         * utils.c: Include <libc.h> on NeXT.
8068
8069 1998-06-26  Heinz Salzmann  <heinz.salzmann@intermetall.de>
8070
8071         * url.c (get_urls_html): Fix calculation of URL position.
8072
8073 1998-06-23  Hrvoje Niksic  <hniksic@srce.hr>
8074
8075         * version.c: Wget 1.5.2 is released.
8076
8077 1998-06-23  Dave Love  <d.love@dl.ac.uk>
8078
8079         * ftp.c, init.c, netrc.c: Include errno.h.
8080
8081         * http.c: Include errno.h and time header.
8082
8083         * Makefile.in (exext): Define.
8084         (install.bin, uninstall.bin): Use it.
8085
8086 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
8087
8088         * http.c (http_loop): Don't attempt to compare local and remote
8089         sizes if the remote size is unknown.
8090
8091 1998-06-16  Hrvoje Niksic  <hniksic@srce.hr>
8092
8093         * url.c (get_urls_html): Use malloc() instead of alloca in the
8094         loop.
8095
8096 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
8097
8098         * version.c: Wget 1.5.2-b4 is released.
8099
8100 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
8101
8102         * url.c (get_urls_html): Ignore spaces before and after the URI.
8103
8104 1998-06-08  Wanderlei Antonio Cavassin  <cavassin@conectiva.com.br>
8105
8106         * ftp.c (getftp): Translate `done'.
8107
8108 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
8109
8110         * version.c: Wget 1.5.2-b3 is released.
8111
8112 1998-06-06  Alexander Kourakos  <awk@bnt.com>
8113
8114         * init.c (cleanup): Close dfp, don't free it.
8115
8116 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
8117
8118         * utils.c (make_directory): Twiddle.
8119
8120         * config.h.in: Added template for access().
8121
8122 1998-06-05  Mathieu Guillaume  <mat@cythere.com>
8123
8124         * html.c (htmlfindurl): Download <input src=...>
8125
8126 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
8127
8128         * utils.c (file_exists_p): Use access() with two arguments.
8129
8130 1998-05-27  Martin Kraemer  <Martin.Kraemer@mch.sni.de>
8131
8132         * netrc.c (parse_netrc): Correct logic.
8133
8134 1998-05-27  Hrvoje Niksic  <hniksic@srce.hr>
8135
8136         * ftp.c (getftp): Added `break'; suggested by Lin Zhe Min
8137         <ljm@ljm.wownet.net>.
8138
8139 1998-05-24  Hrvoje Niksic  <hniksic@srce.hr>
8140
8141         * version.c: Wget 1.5.2-b2 is released.
8142
8143 1998-05-18  Juan Jose Rodriguez  <jcnsoft@jal1.telmex.net.mx>
8144
8145         * mswindows.h: Don't translate mkdir to _mkdir under Borland.
8146
8147 1998-05-17  Hrvoje Niksic  <hniksic@srce.hr>
8148
8149         * retr.c (elapsed_time): Return correct value when
8150         HAVE_GETTIMEOFDAY is undefined.
8151
8152 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
8153
8154         * version.c: Wget 1.5.2-b1 is released.
8155
8156 1998-05-08  Hrvoje Niksic  <hniksic@srce.hr>
8157
8158         * getopt.c (_getopt_internal): Use exec_name instead of argv[0].
8159         (_getopt_internal): Don't translate `#if 0'-ed strings.
8160
8161 1998-05-06  Douglas E. Wegscheid  <wegscd@whirlpool.com>
8162
8163         * mswindows.c (ws_handler): Use fork_to_background().
8164
8165 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
8166
8167         * version.c: Wget 1.5.1 is released.
8168
8169 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
8170
8171         * http.c (parse_http_status_line): Avoid `minor' and `major'
8172         names.
8173
8174 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
8175
8176         * utils.c (mkdirhier): Renamed to make_directory.
8177
8178 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
8179
8180         * mswindows.c (fork_to_background): Define under Windows.
8181
8182         * utils.c (fork_to_background): New function.
8183
8184         * html.c (htmlfindurl): Removed rerdundant casts.
8185
8186 1998-05-01  Douglas E. Wegscheid  <wegscd@whirlpool.com>
8187
8188         * mswindows.c (ws_mypath): Cache the path.
8189
8190 1998-04-30  Douglas E. Wegscheid  <wegscd@whirlpool.com>
8191
8192         * ftp.h: Prefix enum ftype members with FT_.
8193
8194         * ftp-ls.c, ftp.c, html.h: Adjust accordingly.
8195
8196         * mswindows.h: Use stat under Borland, _stat under MSVC.
8197
8198 1998-04-28  Hrvoje Niksic  <hniksic@srce.hr>
8199
8200         * http.c (known_authentication_scheme_p): New function.
8201         (gethttp): Handle authorization more correctly.
8202
8203         * ftp-basic.h: Removed.
8204
8205         * cmpt.h: Removed.
8206
8207         * utils.c: Include <unistd.h> before <pwd.h>; needed under SunOS
8208         with gcc 2.8.
8209         (numdigit): Use `while' loop.
8210
8211         * http.c (create_authorization_line): Detect authentication
8212         schemes case-insensitively.
8213
8214         * http.c (extract_header_attr): Use strdupdelim().
8215         (digest_authentication_encode): Move declaration of local
8216         variables to smaller scope.
8217         (digest_authentication_encode): Reset REALM, OPAQUE and NONCE.
8218         (create_authorization_line): Detect authentication schemes
8219         case-insensitively.
8220
8221         * utils.c (touch): Constify.
8222
8223         * http.c (gethttp): Report a nicer error when no data is received.
8224
8225         * rbuf.h (RBUF_READCHAR): Ditto.
8226
8227         * ftp-basic.c (ftp_response): Use sizeof.
8228
8229 1998-04-27  Hrvoje Niksic  <hniksic@srce.hr>
8230
8231         * retr.c (print_percentage): EXPECTED is long, not int.
8232         (print_percentage): Use floating-point arithmetic to avoid
8233         overflow with large files' sizes multiplied with 100.
8234
8235 1998-04-27  Gregor Hoffleit  <flight@mathi.uni-heidelberg.de>
8236
8237         * config.h.in: Added pid_t stub.
8238
8239         * sysdep.h (S_ISREG): Moved here from mswindows.h (NeXT doesn't
8240         define it).
8241
8242 1998-04-20  Hrvoje Niksic  <hniksic@srce.hr>
8243
8244         * version.c: Wget 1.5.0 is released.
8245
8246 1998-04-18  Hrvoje Niksic  <hniksic@srce.hr>
8247
8248         * url.c (str_url): Ditto.
8249
8250         * ftp-basic.c (ftp_rest): Use new name.
8251
8252         * utils.c (long_to_string): Renamed from prnum().
8253
8254 1998-04-16  Hrvoje Niksic  <hniksic@srce.hr>
8255
8256         * version.c: Wget 1.5-b17 is released.
8257
8258 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
8259
8260         * headers.c (header_get): New argument FLAGS.
8261
8262         * http.c (gethttp): If request is malformed, bail out of the
8263         header loop.
8264         (gethttp): Check for empty header *after* the status line checks.
8265         (gethttp): Disallow continuations for status line.
8266
8267 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
8268
8269         * version.c: Wget 1.5-b16 is released.
8270
8271 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
8272
8273         * init.c (commands): Renamed `always_rest' to `continue'.
8274
8275 1998-04-05  Hrvoje Niksic  <hniksic@srce.hr>
8276
8277         * all: Use it.
8278
8279         * log.c (logputs): New argument.
8280         (logvprintf): Ditto.
8281         (logprintf): Ditto.
8282
8283 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
8284
8285         * http.c (http_atotm): Update comment.
8286
8287         * main.c (i18n_initialize): Set LC_MESSAGES, not LC_ALL.
8288
8289         * wget.h: Renamed ENABLED_NLS to HAVE_NLS.
8290
8291         * main.c (i18n_initialize): New function.
8292         (main): Use it.
8293
8294         * log.c: Include <unistd.h>.
8295
8296         * retr.c (show_progress): Cast alloca to char *.
8297
8298 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
8299
8300         * version.c: Wget 1.5-b15 is released.
8301
8302 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
8303
8304         * utils.h: Declare file_non_directory_p().
8305
8306 1998-04-03  Hrvoje Niksic  <hniksic@srce.hr>
8307
8308         * main.c (main): It's `tries', not `numtries' now.
8309
8310 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
8311
8312         * init.c (getperms): Removed.
8313
8314 1998-04-01  Tim Charron  <tcharron@interlog.com>
8315
8316         * log.c (logvprintf): Don't use ARGS twice.
8317
8318 1998-04-01  John  <john@futuresguide.com>
8319
8320         * mswindows.c: Cleaned up.
8321
8322 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
8323
8324         * version.c: Wget 1.5-b14 is released.
8325
8326 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
8327
8328         * ftp-opie.c (STRLEN4): New macro.
8329         (btoe): Use it.
8330
8331 1998-04-01  Junio Hamano  <junio@twinsun.com>
8332
8333         * http.c: Document all the Digest functions.
8334
8335 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
8336
8337         * utils.c (file_non_directory_p): Renamed from isfile().
8338
8339         * mswindows.h (S_ISREG): New macro, suggested by Tim Adam.
8340
8341 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
8342
8343         * utils.c (mkdirhier): Use 0777 instead of opt.dirmode.
8344
8345         * init.c (cmd_spec_dotstyle): Use 48 dots per line for binary
8346         style.
8347         (cmd_permissions): Removed.
8348
8349         * config.h.in: Add template for WORDS_BIGENDIAN.
8350
8351 1998-03-31  Junio Hamano  <junio@twinsun.com>
8352
8353         * http.c (HEXD2asc): New macro.
8354         (dump_hash): Use it.
8355
8356 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
8357
8358         * version.c: Wget 1.5-b13 is released.
8359
8360 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
8361
8362         * main.c (main): Don't try to use `com'.
8363
8364 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
8365
8366         * init.c (cmd_permissions): New function.
8367
8368 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
8369
8370         * version.c: Wget 1.5-b12 is released.
8371
8372 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
8373
8374         * init.c (commands): Renamed `numtries' to `tries'.
8375         (cmd_spec_debug): Removed.
8376         (home_dir): Under Windows, return `C:\' if HOME is undefined.
8377
8378 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
8379
8380         * config.h.in: Define _XOPEN_SOURCE.
8381
8382         * init.c (check_user_specified_header): New function.
8383         (cmd_spec_header): Use it.
8384         (cmd_spec_useragent): New function.
8385
8386 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
8387
8388         * version.c: Wget 1.5-b11 is released.
8389
8390 1998-03-28  Hrvoje Niksic  <hniksic@srce.hr>
8391
8392         * wget.h: Include <libintl.h> only if NLS is enabled.
8393
8394 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
8395
8396         * options.h (struct options): Made `wait' a long.
8397         (struct options): Ditto for `timeout'.
8398
8399 1998-03-19  Hrvoje Niksic  <hniksic@srce.hr>
8400
8401         * utils.c (exists): Renamed to file_exists_p.
8402         (file_exists_p): Use access() if available.
8403
8404 1998-03-17  Hrvoje Niksic  <hniksic@srce.hr>
8405
8406         * utils.c (memfatal): Set save_log_p to 0 to avoid potential
8407         infloop.
8408
8409         * log.c: do_logging -> save_log_p.
8410
8411         * config.h.in: Added template for HAVE_VSNPRINTF.
8412
8413 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
8414
8415         * init.c: Ditto.
8416
8417         * http.c: Protect declaration against non-ANSI compiler.
8418
8419         * log.c (logvprintf): Use vsnprintf() if available.
8420
8421         * getopt.c (main): Don't translate test stuff.
8422
8423 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
8424
8425         * version.c: Wget 1.5-b10 is released.
8426
8427 1998-03-11  Hrvoje Niksic  <hniksic@srce.hr>
8428
8429         * ftp.c (getftp): Don't translate "CWD %s".
8430
8431         * wget.h (GCC_FORMAT_ATTR): Renamed from FORMAT_ATTR.
8432
8433 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
8434
8435         * ftp-opie.c (btoe): Use memcpy() instead of strncat().
8436
8437         * log.c (logputs): New function.
8438         (logvprintf): Renamed from vlogmsg; use logputs().
8439
8440         * retr.c (show_progress): Print `[100%]' when the retrieval is
8441         finished.
8442
8443         * init.c (run_wgetrc): Use FILE, not PATH.
8444         (wgetrc_file_name): Ditto.
8445
8446 1998-03-07  Tim Adam  <tma@osa.com.au>
8447
8448         * recur.c (parse_robots): Correctly reset `entries' on empty
8449         disallow.
8450
8451 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
8452
8453         * init.c (cmd_spec_debug): Use cmd_boolean().
8454
8455 1998-02-23  Hrvoje Niksic  <hniksic@srce.hr>
8456
8457         * http.c (gethttp): Create proxy-authorization correctly.
8458
8459 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
8460
8461         * md5.c: Ditto.
8462
8463         * getopt.c: Use ANSI function definitions.
8464
8465         * ftp-opie.c: New file.
8466
8467         * options.h: Don't redefine EXTERN.
8468
8469         * init.c: Sort it correctly.
8470
8471 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
8472
8473         * version.c: Wget 1.5-b9 is released.
8474
8475 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
8476
8477         * recur.c (recursive_retrieve): Reset `first_time'.
8478
8479         * ftp.c (getftp): Added `default' clause to switches of uerr_t.
8480
8481         * rbuf.c (rbuf_peek): Simplified.
8482         (rbuf_flush): Use MINVAL.
8483
8484         * wget.h (MINVAL): Moved from url.h.
8485
8486         * rbuf.h (RBUF_FD): New macro.
8487
8488         * url.c (add_url): Add to the head of the list.
8489
8490         * ftp.c (ftp_retrieve_list): Set the permissions to downloaded
8491         file.
8492         (getftp): Set the default permissions to 0600.
8493
8494 1998-02-21  Hrvoje Niksic  <hniksic@srce.hr>
8495
8496         * url.c (get_urls_html): Ditto.
8497         (convert_links): Ditto.
8498
8499         * recur.c (parse_robots): Ditto.
8500
8501         * html.c (ftp_index): Ditto.
8502
8503         * ftp-ls.c (ftp_parse_unix_ls): Open file as binary.
8504
8505         * init.c (defaults): Initialize `opt' to zero via memset.
8506
8507         * http.c (digest_authentication_encode): goto considered harmful.
8508
8509 1998-02-19  Hrvoje Niksic  <hniksic@srce.hr>
8510
8511         * ftp.c (delelement): Simplify and fix leak.
8512
8513 1998-02-18  Hrvoje Niksic  <hniksic@srce.hr>
8514
8515         * http.c (dump_hash): Use HEXD2ASC instead of home-grown stuff.
8516
8517         * url.h (HEXD2ASC): Removed warning.
8518
8519         * init.c (comind): Use binary search.
8520         (commands): Reorganized.
8521         (setval): Ditto.
8522         (cmd_boolean): New function.
8523         (cmd_number): Ditto.
8524         (cmd_number_inf): Ditto.
8525         (cmd_string): Ditto.
8526         (cmd_vector): Ditto.
8527         (cmd_directory_vector): Ditto.
8528         (cmd_bytes): Ditto.
8529         (cmd_time): Ditto.
8530         (cmd_spec_debug): Ditto.
8531         (cmd_spec_dirmode): Ditto.
8532         (cmd_spec_dirstruct): Ditto.
8533         (cmd_spec_dotstyle): Ditto.
8534         (cmd_spec_header): Ditto.
8535         (cmd_spec_htmlify): Ditto.
8536         (cmd_spec_mirror): Ditto.
8537         (cmd_spec_outputdocument): Ditto.
8538         (cmd_spec_recursive): Ditto.
8539         (settime): Merged with cmd_time().
8540         (setbytes): Merged with cmd_bytes().
8541         (setonoff): Merged with cmd_boolean().
8542         (onoff): Ditto.
8543
8544 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
8545
8546         * Makefile.in (distclean): Remove `config.h'.
8547
8548 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
8549
8550         * version.c: Wget 1.5-b8 is released.
8551
8552 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
8553
8554         * http.c (digest_authentication_encode): New function.
8555         (create_authorization_line): Use it.
8556         (dump_hash): New function.
8557         (digest_authentication_encode): Use it.
8558
8559         * fnmatch.c: Renamed from `mtch.c'.
8560
8561 1998-02-15  Karl Eichwalder  <ke@suse.de>
8562
8563         * main.c (main): Tag "Written by..." string as translatable.
8564
8565 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
8566
8567         * wget.h (FREE_MAYBE): New macro.
8568
8569         * http.c (create_authorization_line): Don't use ANSI C string
8570         concatenation feature.
8571         (basic_authentication_encode): Use alloca() for temporary
8572         variables.
8573
8574         * recur.h: Ditto.
8575
8576         * http.c: Ditto.
8577
8578         * headers.h: Ditto.
8579
8580         * ftp-basic.c: Protect declaration against non-ANSI compiler.
8581
8582         * http.c (create_authorization_line): Cast `unsigned char *' to
8583         `char *' for sprintf, to shut up the noisy Digital Unix cc.
8584
8585 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
8586
8587         * version.c: Wget 1.5-b7 is released.
8588
8589 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
8590
8591         * cmpt.c (strstr): Synched with glibc-2.0.6.
8592
8593         * ftp-basic.c (calculate_skey_response): Ditto.
8594         (calculate_skey_response): Use alloca().
8595
8596         * http.c (create_authorization_line): Work with FSF's version of
8597         md5.c.
8598
8599         * md5.c: New file, from GNU libc.
8600
8601 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
8602
8603         * url.h (URL_CLEANSE): Name the temporary variable more carefully.
8604
8605 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
8606
8607         * http.c (basic_authentication_encode): New function, instead of
8608         the macro.
8609
8610 1998-02-13  Junio Hamano  <junio@twinsun.com>
8611
8612         * http.c: Add HTTP-DA support.
8613         * ftp-basic.c: Add Opie/S-key support.
8614         * config.h.in, Makefile.in: Add HTTP-DA and Opie/S-key support.
8615         * md5.c, md5.h: New files.
8616
8617 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
8618
8619         * http.c (http_process_range): Renamed from hprocrange().
8620         (http_process_range): Parse the whole header.
8621
8622         * headers.c: New file.
8623         (header_process): New function.
8624         (header_get): Renamed from fetch_next_header.
8625
8626         * all: Include utils.h only where necessary.
8627
8628         * wget.h: Declare xmalloc(), xrealloc() and xstrdup() here.
8629
8630         * wget.h: Add provisions for dmalloc.
8631
8632 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
8633
8634         * version.c: Wget 1.5-b6 is released.
8635
8636 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
8637
8638         * ftp.c (ftp_loop): Determine `filename' more precisely.
8639
8640         * init.c (setval): Don't set `opt.quiet' if output-document is
8641         `-'.
8642
8643         * log.c (log_init): Print to STDERR instead of STDOUT.
8644         (vlogmsg): Use STDERR by default.
8645         (logflush): Ditto.
8646
8647 1998-02-11  Simon Josefsson  <jas@pdc.kth.se>
8648
8649         * host.c: Use addr_in again.
8650
8651 1998-02-08  Karl Eichwalder  <karl@suse.de>
8652
8653         * http.c (gethttp): Fixed typo.
8654
8655 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
8656
8657         * version.c: Wget 1.5-b5 is released.
8658
8659 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
8660
8661         * retr.c (show_progress): Use it.
8662
8663         * log.c (logflush): New function.
8664
8665         * wget.h: Utilize __attribute__ if on gcc.
8666
8667 1998-02-07  Hrvoje Niksic  <hniksic@srce.hr>
8668
8669         * http.c (base64_encode_line): New argument LENGTH.
8670         (BASIC_AUTHENTICATION_ENCODE): Use it.
8671         (BASIC_AUTHENTICATION_ENCODE): Take length of HEADER into account.
8672
8673         * main.c (main): Fixed fprintf() format mismatch.
8674
8675 1998-02-06  Hrvoje Niksic  <hniksic@srce.hr>
8676
8677         * version.c: Wget 1.5-b4 is released.
8678
8679 1998-02-03  Simon Josefsson  <jas@pdc.kth.se>
8680
8681         * host.c: use sockaddr_in instead of addr_in.
8682
8683 1998-02-04  Hrvoje Niksic  <hniksic@srce.hr>
8684
8685         * init.c (cleanup): Use it.
8686
8687         * recur.c (recursive_cleanup): New function.
8688
8689         * retr.c (retrieve_from_file): Ditto.
8690
8691         * main.c (main): Use it.
8692
8693         * recur.c (recursive_reset): New function.
8694
8695         * retr.c (retrieve_from_file): Ditto.
8696
8697         * main.c (main): Simplify call to recursive_retrieve().
8698
8699         * recur.c (recursive_retrieve): Removed FLAGS argument.
8700
8701         * http.c (gethttp): Changed call to iwrite().
8702
8703 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
8704
8705         * url.c (get_urls_html): Ditto.
8706         (free_urlpos): Ditto.
8707         (mkstruct): Ditto.
8708         (construct): Ditto.
8709
8710         * retr.c (retrieve_url): Move declaration of local variables to
8711         smaller scope.
8712
8713         * url.c (urlproto): Use it.
8714         (parseurl): Ditto.
8715         (str_url): Ditto.
8716         (get_urls_html): Ditto.
8717
8718         * utils.h (ARRAY_SIZE): New macro.
8719
8720         * url.c (proto): Moved from url.h.
8721
8722         * url.h (URL_CLEANSE): Reformatted.
8723         (USE_PROXY_P): Renamed from USE_PROXY.
8724
8725         * ftp-basic.c: Adjust to the new interface of iwrite().
8726
8727         * ftp-basic.c (ftp_port): Use alloca().
8728
8729 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
8730
8731         * version.c: Wget 1.5-b3 is released.
8732
8733         * host.c (ftp_getaddress): Don't print to stderr directly.
8734
8735         * init.c (setbytes): Support `g' for gigabytes.
8736         (cmdtype): New specification CTIME.
8737         (setval): Use it with settime().
8738         (commands): Use it for WAIT and TIMEOUT.
8739
8740 1998-02-02  Hrvoje Niksic  <hniksic@srce.hr>
8741
8742         * http.c (BASIC_AUTHENTICATION_ENCODE): New macro.
8743         (gethttp): Use it.
8744
8745         * utils.c (unique_name_1): Moved from url.c.
8746         (unique_name): Ditto.
8747
8748         * url.c (url_filename): Ditto.
8749
8750         * log.c (redirect_output): Changed call to unique_name().
8751
8752         * url.c (unique_name_1): Renamed from unique_name().
8753         (unique_name): Changed interface.
8754
8755         * init.c (enum cmdid): Moved from init.h.
8756         (cmdtype): Ditto.
8757         (struct cmd): Ditto.
8758
8759         * main.c (main): Use it.
8760         (main): Moved `--backups' to not have a short option.
8761
8762         * options.h (struct options): New member BACKGROUND.
8763
8764         * main.c (print_help): Rearranged.
8765         (main): New long options for -n* short options: --no-directories,
8766         --no-host-directories, --non-verbose, --no-host-lookup and
8767         --dont-remove-listing.
8768
8769 1998-02-01  Hrvoje Niksic  <hniksic@srce.hr>
8770
8771         * main.c (main): Use log_close().
8772
8773         * log.c: New variable LOGFP.
8774         (vlogmsg): Use it.
8775         (redirect_output): Don't open /dev/null; set LOGFP to stdin
8776         instead.
8777         (log_close): New function.
8778
8779         * options.h (struct options): Removed LFILE.
8780
8781         * log.c (log_enable): Removed.
8782
8783         * main.c (main): Use it.
8784
8785         * log.c (log_init): New function.
8786
8787         * url.c (get_urls_html): Removed needless assignment to BASE.
8788
8789         * host.c (add_hlist): Don't set CMP needlessly.
8790
8791         * utils.c (match_backwards): Ditto.
8792         (in_acclist): Ditto.
8793
8794         * url.c (findurl): Ditto.
8795
8796         * netrc.c (parse_netrc): Ditto.
8797
8798         * log.c (log_dump): Ditto.
8799
8800         * html.c (html_quote_string): Ditto.
8801
8802         * ftp-basic.c (ftp_request): Made static.
8803
8804         * connect.c: Made global variables static.
8805
8806         * url.c (construct): Ditto.
8807
8808         * init.c (init_path): Avoid assignment inside `if'-condition.
8809
8810         * ftp.c: Don't include in.h or winsock.h.
8811
8812         * ftp.c (ftp_loop): Use SZ.
8813
8814         * connect.c (bindport): Cast &addrlen to int *.
8815         (conaddr): Ditto.
8816
8817         * init.c (initialize): Don't use SYSTEM_WGETRC unconditionally.
8818
8819 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
8820
8821         * ftp.c (getftp): Initialize opt.ftp_pass here.
8822         (ftp_retrieve_dirs): Use alloca().
8823
8824         * init.c (defaults): Don't initialize opt.ftp_pass.
8825
8826         * sysdep.h (S_ISLNK): Declare for OS/2; ditto for lstat.
8827         From Ivan F. Martinez <ivanfm@ecodigit.com.br>.
8828
8829 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
8830
8831         * recur.c (parse_robots): Check for comments more correctly.
8832
8833         * host.c (ftp_getaddress): Use STRDUP_ALLOCA.
8834         (ftp_getaddress): Add diagnostics when reverse-lookup yields only
8835         hostname.
8836
8837 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
8838
8839         * version.c: Wget 1.5-b2 is released.
8840
8841         * netrc.c (NETRC_FILE_NAME): Moved from netrc.h.
8842
8843         * utils.c (proclist): Pass FNM_PATHNAME to fnmatch().
8844
8845         * ftp-basic.c (ftp_pasv): Avoid unnecessary casting to unsigned
8846         char.
8847
8848         * log.c: Don't attempt to hide arguments from ansi2knr.
8849
8850         * cmpt.c: Synched strptime() and mktime() with glibc-2.0.6.
8851
8852         * ansi2knr.c: Use a later version, from fileutils-3.16l alpha.
8853
8854         * ftp.c (getftp): Ditto.
8855
8856         * http.c (gethttp): Use it.
8857
8858         * retr.c (get_contents): New argument EXPECTED; pass it to
8859         show_progress().
8860         (show_progress): New argument EXPECTED; use it to display
8861         percentages.
8862
8863         * init.c (setval): Ditto.
8864
8865         * http.c (gethttp): Ditto.
8866         (http_loop): Ditto.
8867
8868         * ftp.c (getftp): Ditto.
8869         (ftp_loop_internal): Ditto.
8870
8871         * ftp-ls.c (ftp_parse_unix_ls): Use abort() instead of assert(0).
8872
8873         * sysdep.h (CLOSE): Simplify; use DEBUGP.
8874
8875         * netrc.c (search_netrc): Use alloca().
8876
8877         * init.c (defaults): Initialize no_flush.
8878
8879         * log.c (vlogmsg): Don't flush if no_flush.
8880
8881         * options.h (struct options): New variable no_flush.
8882
8883         * main.c (main): Don't play games with buffering.
8884
8885         * log.c (vlogmsg): Flush the output after every message.
8886
8887 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
8888
8889         * init.c (parse_line): Ditto.
8890
8891         * url.c (get_urls_html): Ditto.
8892
8893         * main.c (main): Don't cast to unsigned char.
8894
8895         * init.c (run_wgetrc): Don't cast to unsigned char.
8896         (parse_line): Accept char instead of unsigned char.
8897
8898         * html.c (htmlfindurl): Use char instead of unsigned char.
8899
8900         * all: Use them.
8901
8902         * sysdep.h: Add wrappers to ctype macros to make them
8903         eight-bit-clean:
8904
8905 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
8906
8907         * html.c (htmlfindurl): Download <img lowsrc=...>
8908
8909         * main.c (main): Ignore SIGPIPE.
8910
8911         * connect.c (select_fd): New argument WRITEP.
8912         (iwrite): Call select_fd().
8913
8914 1997-02-27  Fila Kolodny <fila@ibi.com>
8915
8916         * ftp.c (ftp_retrieve_list): If retrieving symlink and the proper
8917         one already exists, just skip it.
8918
8919 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
8920
8921         * http.c (gethttp): Cosmetic changes.
8922
8923         * http.c (check_end): Allow `+D...' instead of `GMT'.
8924         From Fabrizio Pollastri <pollastri@cstv.to.cnr.it>.
8925
8926         * url.c (process_ftp_type): New function.
8927         (parseurl): Use it.
8928
8929         * connect.c (iwrite): Allow writing in a few chunks.
8930         (bindport): Made SRV static, so addr can point to it.
8931         (select_fd): Removed HPUX kludge.
8932
8933         * host.c (free_hlist): Incorporated into clean_hosts().
8934
8935 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
8936
8937         * host.c (hlist): Made static.
8938         (search_address): Cosmetic change.
8939
8940 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
8941
8942         * version.c: Wget v1.5-b1 is released.
8943
8944         * http.c (hgetlen): Use sizeof() to get the header length.
8945         (hgetrange): Ditto.
8946         (hgettype): Ditto.
8947         (hgetlocation): Ditto.
8948         (hgetmodified): Ditto.
8949         (haccepts_none): Ditto.
8950
8951         * main.c (main): Updated `--version' and `--help' output, as per
8952         Francois Pinard's suggestions.
8953
8954         * main.c: Include locale.h; call setlocale(), bindtextdomain() and 
8955         textdomain().
8956
8957         * config.h.in: Define stubs for I18N3.
8958
8959         * wget.h: Include libintl.h.
8960
8961 1998-01-28  Hrvoje Niksic  <hniksic@srce.hr>
8962
8963         * url.c (mkstruct): Check for opt.cut_dirs.
8964         (mkstruct): alloca()-te more, xmalloc() less.
8965
8966         * utils.c (load_file): Check for ferror().
8967
8968         * url.c (get_urls_file): Close only the files we opened.
8969         (get_urls_html): Ditto.
8970         (count_slashes): New function.
8971
8972         * http.h: Removed.
8973
8974         * http.c (gethttp): Respect username and password provided by
8975         proxy URL.
8976         (base64_encode_line): Write into an existing buffer instead of
8977         malloc-ing a new one.
8978         (struct http_stat): Moved from http.h
8979
8980         * retr.c (retrieve_url): Free SUF.
8981
8982         * all: Removed lots of unnecessary .h dependencies.
8983
8984         * html.c (global_state): Made static.
8985
8986         * utils.h (ALLOCA_ARRAY): New macro.
8987
8988         * main.c (main): New option `--cut-dirs'.
8989
8990         * url.c (construct): Use alloca() for T.
8991
8992         * utils.c (mkdirhier): Use STRDUP_ALLOCA.
8993
8994         * host.c (_host_t): Moved from host.h.
8995         (struct host): Renamed from _host_t.
8996         (store_hostaddress): Use STRDUP_ALLOCA for INET_S.
8997         (realhost): Ditto.
8998
8999         * host.h: Don't include url.h.
9000
9001         * ftp.c (LIST_FILENAME): Moved from ftp.h.
9002
9003         * init.c (DEFAULT_FTP_ACCT): Moved from ftp.h.
9004
9005         * main.c (main): Enable log if the output goes to a TTY.
9006
9007         * connect.h: Removed unused constant `BACKLOG'.
9008
9009         * config.h.in: Check for isatty().
9010
9011         * Makefile.in (LINK): Use CFLAGS when linking.
9012
9013 1998-01-27  Hrvoje Niksic  <hniksic@srce.hr>
9014
9015         * mswindows.c (ws_hangup): Use redirect_output().
9016
9017         * main.c (redirect_output_signal): New function; use
9018         redirect_output().
9019
9020         * log.c (redirect_output): New function, based on hangup(), which
9021         is deleted.
9022
9023         * log.c (vlogmsg): New function.
9024
9025         * wget.h (DEBUGP): Use debug_logmsg().
9026
9027         * main.c (hangup): Use it.
9028
9029         * log.c (log_dump): New function.
9030
9031         * utils.h (DO_REALLOC): Use `long' for various sizes.
9032
9033         * http.c (hskip_lws): Use `while', for clarity.
9034         (HTTP_DYNAMIC_LINE_BUFFER): New constant.
9035         (fetch_next_header): Use it instead of DYNAMIC_LINE_BUFFER.
9036
9037         * ftp-basic.c (FTP_DYNAMIC_LINE_BUFFER): New constant.
9038         (ftp_response): Use it instead of DYNAMIC_LINE_BUFFER.
9039
9040         * utils.c (DYNAMIC_LINE_BUFFER): Moved from utils.c.
9041         (LEGIBLE_SEPARATOR): Ditto.
9042         (FILE_BUFFER_SIZE): Ditto.
9043
9044         * retr.c (BUFFER_SIZE): Moved from retr.h.
9045
9046         * log.c: New file.
9047         (logmsg): Moved from utils.c.
9048         (debug_logmsg): New function.
9049
9050         * mswindows.h: Include it here.
9051
9052         * init.c: Ditto.
9053
9054         * utils.c: Don't include <windows.h>.
9055
9056 1998-01-25  Hrvoje Niksic  <hniksic@srce.hr>
9057
9058         * host.c (ftp_getaddress): Ditto.
9059
9060         * main.c (main): Use it.
9061
9062         * utils.h (STRDUP_ALLOCA): New macro.
9063
9064         * init.c: Prepend `wget: ' to error messages printed on stderr.
9065
9066         * utils.c (mkdirhier): Renamed from mymkdir.
9067         (touch): Renamed from my_touch.
9068         (pwd_cuserid): Renamed from my_cuserid().
9069
9070 1998-01-24  Andy Eskilsson  <andy.eskilsson@telelogic.se>
9071
9072         * utils.c (accdir): Process wildcards.
9073         (proclist): New function.
9074         (accdir): Use it to avoid code repetition.
9075
9076 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
9077
9078         * recur.c (parse_robots): Respect opt.useragent; use alloca().
9079
9080         * http.c (gethttp): Construct useragent accordingly.
9081
9082         * version.c: Changed version string to numbers-only.
9083
9084         * main.c (print_help): List all the options.
9085
9086         * mswindows.c (windows_main_junk): Initialize argv0 here.
9087
9088 1998-01-24  Karl Heuer  <kwzh@gnu.org>
9089
9090         * netrc.c (search_netrc): Initialize `l' only after processing
9091         netrc.
9092
9093         * main.c (main): Don't trap SIGHUP if it's being ignored.
9094
9095 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
9096
9097         * all: Use logmsg().
9098
9099         * utils.c (time_str): Moved from retr.c.
9100         (logmsg): New function.
9101         (logmsg_noflush): Ditto.
9102
9103         * rbuf.c: New file, moved buf_* functions here.
9104
9105         * ftp.c (ftp_expected_bytes): Moved from ftp-basic.c.
9106
9107         * ftp-basic.c (ftp_rest): Use prnum().
9108
9109         * ftp-basic.c: Ditto.
9110
9111         * ftp.c: Use the new reading functions and macros.
9112
9113         * retr.c (buf_initialize): New function.
9114         (buf_initialized_p): Ditto.
9115         (buf_uninitialize): Ditto.
9116         (buf_fd): Ditto.
9117
9118         * http.c (fetch_next_header): Use the BUF_READCHAR macro for
9119         efficiency.
9120         (gethttp): Use alloca() where appropriate.
9121
9122         * retr.c (buf_readchar): Use it.
9123         (buf_peek): Use rstreams.
9124
9125         * retr.h (BUF_READCHAR): New macro.
9126
9127         * init.c (home_dir): Rewritten for clarity.
9128         (init_path): Ditto.
9129
9130         * mswindows.c (ws_backgnd): Made static.
9131         (read_registry): Ditto.
9132         (ws_cleanup): Ditto.
9133         (ws_handler): Ditto.
9134
9135 1998-01-23  Hrvoje Niksic  <hniksic@srce.hr>
9136
9137         * alloca.c: New file.
9138
9139         * Makefile.in (ALLOCA): Define.
9140
9141         * mswindows.c (ws_help): Constify.
9142         (ws_help): Use alloca.
9143
9144         * mswindows.c: Reformat.
9145
9146         * all: Added _(...) annotations for I18N snarfing and translation.
9147
9148         * host.c (ftp_getaddress): Nuke SYSINFO.
9149         (ftp_getaddress): Don't use getdomainname().
9150         (ftp_getaddress): Use uname(), where available.
9151
9152         * http.c (gethttp): Protect a stray fprintf().
9153
9154         * init.c (settime): New function.
9155         (setval): Treat WAIT specially, allowing suffixes like `m' for
9156         minutes, etc.
9157
9158 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
9159
9160         * url.c (get_urls_html): Use alloca() for TEMP.
9161
9162 1998-01-21  Jordan Mendelson  <jordy@wserv.com>
9163
9164         * url.c (rotate_backups): New function.
9165
9166         * http.c (gethttp): Ditto.
9167
9168         * ftp.c (getftp): Rotate backups.
9169
9170 1997-12-18  Hrvoje Niksic  <hniksic@srce.hr>
9171
9172         * all: Renamed nmalloc(), nrealloc() and nstrdup() to xmalloc(),
9173         xrealloc() and xstrdup().  Use the new functions.
9174
9175         * url.c (decode_string): Made static.
9176         (has_proto): Ditto.
9177         (parse_dir): Ditto.
9178         (parse_uname): Ditto.
9179         (mkstruct): Ditto.
9180         (construct): Ditto.
9181         (construct_relative): Ditto.
9182
9183         * retr.c (show_progress): Made static.
9184
9185         * recur.c (robots_url): Made static.
9186         (retrieve_robots): Ditto.
9187         (parse_robots): Ditto.
9188         (robots_match): Ditto.
9189
9190         * main.h: Removed.
9191
9192         * main.c (printhelp): Made static.
9193         (hangup): Ditto.
9194
9195         * init.c (comind): Made static.
9196         (defaults): Ditto.
9197         (init_path): Ditto.
9198         (run_wgetrc): Ditto.
9199         (onoff): Ditto.
9200         (setonoff): Ditto.
9201         (setnum): Ditto.
9202         (myatoi): Ditto.
9203         (getperms): Ditto.
9204         (setbytes): Ditto.
9205
9206         * http.c (fetch_next_header): Made static.
9207         (hparsestatline): Ditto.
9208         (hskip_lws): Ditto.
9209         (hgetlen): Ditto.
9210         (hgetrange): Ditto.
9211         (hgettype): Ditto.
9212         (hgetlocation): Ditto.
9213         (hgetmodified): Ditto.
9214         (haccepts_none): Ditto.
9215         (gethttp): Ditto.
9216         (base64_encode_line): Ditto.
9217         (mktime_from_utc): Ditto.
9218         (http_atotm): Ditto.
9219
9220         * html.c (idmatch): Made static.
9221
9222         * host.c (search_host): Made static.
9223         (search_address): Ditto.
9224         (free_hlist): Ditto.
9225
9226         * ftp.c (getftp): Made static.
9227         (ftp_loop_internal): Ditto.
9228         (ftp_get_listing): Ditto.
9229         (ftp_retrieve_list): Ditto.
9230         (ftp_retrieve_dirs): Ditto.
9231         (ftp_retrieve_glob): Ditto.
9232         (freefileinfo): Ditto.
9233         (delelement): Ditto.
9234
9235         * ftp-ls.c (symperms): Made static.
9236         (ftp_parse_unix_ls): Ditto.
9237
9238         * connect.c (select_fd): Made static.
9239
9240         * utils.c (xmalloc): Renamed from nmalloc.
9241         (xrealloc): Renamed from nrealloc.
9242         (xstrdup): Renamed from nstrdup.
9243
9244         * getopt.c (exchange): Use alloca.
9245
9246         * mswindows.c (mycuserid): Use strncpy.
9247
9248         * New files mswindows.c, mswindows.h, sysdep.h.  winjunk.c,
9249         systhings.h, windecl.h and winjunk.h removed.
9250
9251         * mswindows.c (sleep): New function.
9252
9253         * utils.c: Include <windows.h> under Windows.
9254
9255 1997-06-12  Darko Budor  <dbudor@zesoi.fer.hr>
9256
9257         * url.h (URL_UNSAFE): Change default under Windows.
9258
9259         * retr.c (retrieve_from_file): Respect opt.delete_after.
9260
9261         * main.c (main): Call ws_help on Windows.
9262
9263         * winjunk.c (windows_main_junk): New function.
9264
9265         * main.c (main): Junk-process argv[0].
9266
9267         * http.c (mktime_from_utc): Return -1 if mktime failed.
9268
9269         * http.c (http_loop): Ditto.
9270
9271         * ftp.c (ftp_loop_internal): Change title on Windows when using a
9272         new URL.
9273
9274         * winjunk.c (getdomainname): Lots of functions.
9275
9276 1997-06-12  Hrvoje Niksic  <hniksic@srce.hr>
9277
9278         * cmpt.c (strptime_internal): Handle years more correctly for
9279         `%y'.
9280
9281 1997-06-09  Mike Thomas <mthomas@reality.ctron.com>
9282
9283         * http.c (gethttp): Allocate enough space for
9284         `Proxy-Authorization' header.
9285
9286 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
9287
9288         * version.c: Wget/1.4.5 is released.
9289
9290 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
9291
9292         * retr.c (get_contents): Check return value of fwrite more
9293         carefully.
9294
9295 1997-03-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
9296
9297         * cmpt.c (strptime_internal) [case 'Y']: Always subtract 1900 from
9298         year, regardless of century.
9299
9300 1997-03-30  Hrvoje Niksic  <hniksic@srce.hr>
9301
9302         * utils.c (isfile): Use `lstat' instead of `stat'.
9303
9304 1997-03-29  Hrvoje Niksic  <hniksic@srce.hr>
9305
9306         * utils.c (numdigit): Use explicit test.
9307
9308 1997-03-21  Hrvoje Niksic  <hniksic@srce.hr>
9309
9310         * http.c (http_loop): Always use `url_filename' to get u->local.
9311
9312 1997-03-20  Hrvoje Niksic  <hniksic@srce.hr>
9313
9314         * url.c: Recognize https.
9315
9316 1997-03-13  Hrvoje Niksic  <hniksic@srce.hr>
9317
9318         * recur.c (recursive_retrieve): Lowercase just the host name.
9319
9320 1997-03-09  Hrvoje Niksic  <hniksic@srce.hr>
9321
9322         * url.c (get_urls_file): Use the correct test.
9323         (get_urls_html): Ditto.
9324
9325 1997-03-07  Hrvoje Niksic  <hniksic@srce.hr>
9326
9327         * connect.c: Reverted addrlen to int.
9328
9329         * init.c (parse_line): Check for -1 instead of NONE.
9330
9331         * version.c: Changed version to 1.4.5.
9332
9333 1997-02-17  Hrvoje Niksic  <hniksic@srce.hr>
9334
9335         * init.c: New option netrc.
9336         (initialize): Don't parse .netrc.
9337
9338         * cmpt.c (recursive): Return rp.
9339         (strptime_internal): Match the long strings first, the abbreviated
9340         second.
9341
9342 1997-02-16  Hrvoje Niksic  <hniksic@srce.hr>
9343
9344         * http.c (check_end): New function.
9345         (http_atotm): Use it.
9346
9347 1997-02-13  gilles Cedoc  <gilles@cedocar.fr>
9348
9349         * http.c (gethttp): Use them.
9350
9351         * init.c: New options proxy_user and proxy_passwd.
9352
9353 1997-02-14  Hrvoje Niksic  <hniksic@srce.hr>
9354
9355         * ftp.c (ftp_retrieve_list): Create links even if not relative.
9356
9357 1997-02-10  Hrvoje Niksic  <hniksic@srce.hr>
9358
9359         * recur.c (recursive_retrieve): Lowercase the host name, if the
9360         URL is not "optimized".
9361
9362         * host.c (realhost): Return l->hostname, even if it matches with
9363         host.
9364
9365 1997-02-10  Marin Purgar  <pmc@asgard.hr>
9366
9367         * connect.c: Make addrlen size_t instead of int.
9368         (conaddr): Ditto.
9369
9370 1997-02-09  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
9371
9372         * systhings.h: Define S_ISLNK on NeXT too.
9373
9374 1997-02-09  Hrvoje Niksic  <hniksic@srce.hr>
9375
9376         * version.c: Released 1.4.3.
9377
9378         * url.c: Futher update to list of protostrings.
9379         (skip_proto): Skip `//' correctly for FTP and HTTP.
9380
9381         * url.c (get_urls_html): Handle bogus `http:' things a little
9382         different.
9383
9384         * main.c (main): Removed `follow-ftp' from `f'.
9385         (main): Dumped the `prefix-files' and `file-prefix' options and
9386         features; old and bogus.
9387         (main): Exit on failed setval() in `-e'.
9388
9389         * http.c (fetch_next_header): Use it to detect header continuation
9390         correctly.
9391
9392         * retr.c (buf_peek): New function.
9393
9394 1997-02-08  Hrvoje Niksic  <hniksic@srce.hr>
9395
9396         * wget.h: Include time.h and stuff.
9397
9398 1997-02-08  Roger Beeman  <beeman@cisco.com>
9399
9400         * ftp.c: Include <time.h>
9401
9402 1997-02-07  Hrvoje Niksic  <hniksic@srce.hr>
9403
9404         * url.c (findurl): Would read over buffer limits.
9405
9406 1997-02-06  Hrvoje Niksic  <hniksic@srce.hr>
9407
9408         * ftp-ls.c (ftp_parse_unix_ls): Allow spaces in file names.
9409
9410 1997-02-05  Hrvoje Niksic  <hniksic@srce.hr>
9411
9412         * http.c (http_atotm): Initialize tm.is_dst.
9413
9414 1997-02-02  Hrvoje Niksic  <hniksic@srce.hr>
9415
9416         * http.c (gethttp): Don't print the number of retrieved headers.
9417
9418         * main.c (main): New option `--no-clobber', alias for `-nc'.
9419
9420         * url.c: Recognize `https://'.
9421
9422 1997-02-01  Hrvoje Niksic  <hniksic@srce.hr>
9423
9424         * host.c (herrmsg): Don't use h_errno.
9425
9426 1997-01-30  Hrvoje Niksic  <hniksic@srce.hr>
9427
9428         * host.c (accept_domain): Use it.
9429
9430         * main.c (main): New option `--exclude-domains'.
9431
9432         * retr.c (retrieve_url): Use it.
9433         (retrieve_url): Bail out when an URL is redirecting to itself.
9434
9435         * url.c (url_equal): New function.
9436
9437 1997-01-29  Hrvoje Niksic  <hniksic@srce.hr>
9438
9439         * connect.c: Include arpa/inet.h instead of arpa/nameser.h.
9440
9441         * http.c (mk_utc_time): New function.
9442         (http_atotm): Use it; handle time zones correctly.
9443
9444 1997-01-28  Hrvoje Niksic  <hniksic@srce.hr>
9445
9446         * http.c: Ditto.
9447
9448         * ftp-basic.c: Use it instead of WRITE.
9449
9450         * connect.c (iwrite): New function.
9451
9452 1997-01-27  Hrvoje Niksic  <hniksic@srce.hr>
9453
9454         * cmpt.c (mktime): New function.
9455
9456         * netrc.c: Include <sys/types.h>.
9457
9458         * main.c (main): Wouldn't recognize --spider.
9459
9460         * retr.c (rate): Use `B', `KB' and `MB'.
9461         (reset_timer,elapsed_time): Moved from utils.c.
9462
9463         * ftp.c (ftp_retrieve_list): Ditto.
9464
9465         * http.c (http_loop): Don't touch the file if opt.dfp.
9466
9467 1997-01-24  Hrvoje Niksic  <hniksic@srce.hr>
9468
9469         * cmpt.c: New file.
9470
9471         * ftp.c (ftp_retrieve_glob): New argument semantics.
9472         (ftp_retrieve_dirs): Use it.
9473         (ftp_loop): Ditto.
9474
9475         * html.c (htmlfindurl): Recognize `'' as the quote char.
9476
9477 1997-01-23  Hrvoje Niksic  <hniksic@srce.hr>
9478
9479         * ftp.c (ftp_loop_internal): Use it.
9480
9481         * utils.c (remove_link): New function.
9482
9483 1997-01-22  Hrvoje Niksic  <hniksic@srce.hr>
9484
9485         * retr.c (retrieve_url): Require STRICT redirection URL.
9486
9487         * url.c (parseurl): New argument STRICT.
9488
9489         * http.c (hparsestatline): Be a little-bit less strict about
9490         status line format.
9491
9492 1997-01-21  Hrvoje Niksic  <hniksic@srce.hr>
9493
9494         * http.c (gethttp): Use it.
9495
9496         * main.c (main): Don't use '<digit>' as options.
9497
9498         * init.c: New option ignore_length.
9499
9500         * http.c (gethttp): Ditto.
9501         (http_loop): Check for redirection without Location:.
9502         (gethttp): Don't print Length unless RETROKF.
9503
9504         * ftp.c (getftp): Use it.
9505
9506         * url.c (mkalldirs): New function.
9507
9508         * utils.c (mymkdir): Don't check for existing non-directory.
9509
9510         * url.c (mkstruct): Don't create the directory.
9511
9512 1997-01-20  Hrvoje Niksic  <hniksic@srce.hr>
9513
9514         * init.c (setval): Removed NO_RECURSION checks.
9515
9516 1997-01-19  Hrvoje Niksic  <hniksic@srce.hr>
9517
9518         * version.c: "Released" 1.4.3-pre2.
9519
9520         * recur.c (recursive_retrieve): Bypass host checking only if URL
9521         is ftp AND parent URL is not ftp.
9522
9523         * ftp-basic.c (ftp_request): Print out Turtle Power.
9524
9525         * ftp.c (ftp_loop): Call ftp_retrieve_glob with 0 if there's no
9526         wildcard.
9527         (ftp_retrieve_glob): Call ftp_loop_internal even on empty list, if
9528         not glob.
9529
9530         * http.c (gethttp): Be a little bit smarter about status codes.
9531
9532         * recur.c (recursive_retrieve): Always reset opt.recursive when
9533         dealing with FTP.
9534
9535 1997-01-18  Hrvoje Niksic  <hniksic@srce.hr>
9536
9537         * retr.c (retrieve_url): New variable location_changed; use it for
9538         tests instead of mynewloc.
9539         (retrieve_url): Allow heuristic adding of html.
9540
9541         * url.c (url_filename): Don't use the `%' in Windows file names.
9542
9543         * http.c (http_loop): Always time-stamp the local file.
9544
9545         * http.c (http_loop): Ditto.
9546
9547         * ftp.c (ftp_retrieve_list): Use it.
9548
9549         * utils.c (my_touch): New function.
9550
9551         * ftp.c (ftp_retrieve_list): Use #ifdef HAVE_STRUCT_UTIMBUF
9552         instead of #ifndef NeXT.
9553
9554         * utils.c (strptime): New version, by Ulrich Drepper.
9555
9556 1997-01-17  Hrvoje Niksic  <hniksic@srce.hr>
9557
9558         * http.c (haccepts_none): Renamed from `haccepts_bytes'.
9559         (gethttp): If haccepts_none(), disable ACCEPTRANGES.
9560         (http_loop): Would remove ACCEPTRANGES.
9561
9562         * ftp.c (getftp): Call ftp_list with NULL.
9563
9564 1997-01-15  Hrvoje Niksic  <hniksic@srce.hr>
9565
9566         * html.c (ftp_index): Don't print minutes and seconds if we don't
9567         know them; beautify the output.
9568
9569         * ftp.c (getftp): Don't close the socket on FTPNSFOD.
9570
9571 1997-01-14  Hrvoje Niksic  <hniksic@srce.hr>
9572
9573         * utils.c (strptime): New function.
9574         (strptime): Don't use get_alt_number.
9575         (strptime): Don't use locale.
9576         (match_string): Made it a function.
9577
9578 1997-01-12  Hrvoje Niksic  <hniksic@srce.hr>
9579
9580         * http.c (http_atotm): New function.
9581         (http_loop): Use it.
9582
9583         * atotm.c: Removed from the distribution.
9584
9585         * http.c (base64_encode_line): Rewrite.
9586
9587 1997-01-09  Hrvoje Niksic  <hniksic@srce.hr>
9588
9589         * ftp.c (getftp): Use ftp_expected_bytes; print size.
9590
9591         * ftp-basic.c (ftp_response): Use ftp_last_respline.
9592         (ftp_expected_bytes): New function.
9593
9594         * ftp.c (getftp): Print the unauthoritative file length.
9595
9596         * ftp-ls.c: Renamed from ftp-unix.c.
9597         (ftp_parse_ls): Moved from ftp.c.
9598         (ftp_parse_unix_ls): Recognize seconds in time spec.
9599         (ftp_parse_unix_ls): Recognize year-less dates of the previous
9600         year.
9601
9602 1997-01-08  Hrvoje Niksic  <hniksic@srce.hr>
9603
9604         * ftp-basic.c: Don't declare errno if #defined.
9605
9606         * host.c (ftp_getaddress): Check for sysinfo legally.
9607
9608 1997-01-08  Darko Budor  <dbudor@diana.zems.fer.hr>
9609
9610         * connect.c (iread): Use READ.
9611
9612 1996-12-23  Hrvoje Niksic  <hniksic@srce.hr>
9613
9614         * url.c: Recognize finger, rlogin, tn3270, mid and cid as valid
9615         schemes.
9616
9617 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
9618
9619         * host.c (ftp_getaddress): Allow `.' in hostname.
9620
9621 1996-12-26  Darko Budor <dbudor@zems.fer.hr>
9622
9623         * wget.h: READ and WRITE macros for use instead of read and write
9624         on sockets, grep READ *.c, grep WRITE *.c
9625
9626         * wsstartup.c: new file - startup for winsock
9627
9628         * wsstartup.h: new file
9629
9630         * win32decl.h: new file - fixup for <errno.h> and winsock trouble
9631
9632         * configure.bat: Configure utility for MSVC
9633
9634         * src/Makefile.ms,config.h.ms: new files for use with MSVC 4.x
9635
9636 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
9637
9638         * version.c: Released 1.4.3-pre.
9639
9640         * utils.c (prnum): Accept long.
9641         (legible): Use prnum().
9642
9643         * connect.c (make_connection): Accept port as short.
9644         (bindport): Ditto.
9645
9646         * http.c (gethttp): Use search_netrc.
9647
9648 1996-12-21  Hrvoje Niksic  <hniksic@srce.hr>
9649
9650         * ftp.c (getftp): Use search_netrc.
9651
9652         * netrc.c (free_netrc): New function.
9653
9654         * init.c (home_dir): New function.
9655
9656         * url.c (convert_links): Allow REL2ABS changes.
9657
9658 1996-12-21  Gordon Matzigkeit  <gord@gnu.ai.mit.edu>
9659
9660         * netrc.c: New file.
9661         (parse_netrc, maybe_add_to_list): New functions.
9662
9663 1996-12-17  Hrvoje Niksic  <hniksic@srce.hr>
9664
9665         * retr.c (retrieve_url): Reset opt.recursion before calling
9666         ftp_loop if it is reached through newloc.
9667
9668         * init.c (run_wgetrc): Print the wgetrc path too, when reporting
9669         error; don't use "Syntax error", since we don't know if it is
9670         really a syntax error.
9671
9672 1996-12-16  Hrvoje Niksic  <hniksic@srce.hr>
9673
9674         * utils.c (acceptable): Extract the filename part of the path.
9675
9676         * recur.c (recursive_retrieve): Call acceptable() with the right
9677         argument; would bug out on wildcards.
9678
9679         * init.c (parse_line): Likewise.
9680
9681         * html.c (htmlfindurl): Cast to char * when calling stuff.
9682
9683 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
9684
9685         * ftp.c (getftp): Use ftp_pasv.
9686
9687         * ftp-basic.c (ftp_request): Accept NULL value.
9688         (ftp_pasv): New function.
9689
9690         * options.h (struct options): Add passive FTP option.
9691
9692 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
9693
9694         * url.c (parseurl): Debug output.
9695
9696         * utils.c (path_simplify): New one, adapted from bash's
9697         canonicalize_pathname().
9698
9699 1996-12-14  Hrvoje Niksic  <hniksic@srce.hr>
9700
9701         * ftp.c (getftp): Don't discard the buffer.
9702
9703         * retr.c (get_contents): New parameter nobuf.
9704
9705 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
9706
9707         * html.c (htmlfindurl): Recognize <meta contents="d; URL=...".
9708
9709         * init.c (setval): Strip the trailing slashes on CVECDIR.
9710
9711 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
9712
9713         * init.c: Make excludes and includes under CVECDIR instead of
9714         CVEC.
9715
9716 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
9717
9718         * url.c (get_urls_html): Skip "http:".
9719
9720 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
9721
9722         * utils.c (strcasecmp): From glibc.
9723         (strncasecmp): Also.
9724         (strstr): Also.
9725
9726         * url.c: Added javascript: to the list of URLs prefixes.
9727
9728 1996-12-12  Shawn McHorse  <riffraff@txdirect.net>
9729
9730         * recur.c (retrieve_robots): Print the warning message only if
9731         verbose.
9732
9733 1996-12-12  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
9734
9735         * ftp.c (ftp_retrieve_list): Use NeXT old utime interface.
9736
9737 1996-12-12  Hrvoje Niksic  <hniksic@srce.hr>
9738
9739         * systhings.h: New file.
9740
9741         * ../configure.in: Check for utime.h
9742
9743         * ftp.c: Check whether we have unistd.h.
9744
9745 1996-11-27  Hrvoje Niksic  <hniksic@srce.hr>
9746
9747         * recur.c (recursive_retrieve): Send the canonical URL as referer.
9748         (recursive_retrieve): Call get_urls_html with the canonical URL.
9749
9750 1996-12-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9751
9752         * (configure.in, config.h.in, src/Makefile.in, src/*.[ch]): Add
9753         ansi2knr support for compilers which don't support ANSI style
9754         function prototypes and signatures.
9755
9756         * (aclocal.m4, src/ansi2knr.c, src/ansi2knr.1): New files.
9757
9758 1996-11-26  Hrvoje Niksic  <hniksic@srce.hr>
9759
9760         * url.c: Use it; Recognize paths ending with "." and ".." as
9761         directories.
9762         (url_filename): Append .n whenever file exists and could be a
9763         directory.
9764
9765         * url.h (ISDDOT): New macro.
9766
9767         * init.c (parse_line): Use unsigned char.
9768
9769         * url.c (get_urls_html): Cast to unsigned char * when calling
9770         htmlfindurl.
9771
9772         * html.c (htmlfindurl): Use unsigned char.
9773
9774         * version.c: Changed version to 1.4.3.
9775
9776 1996-11-25  Hrvoje Niksic  <hniksic@srce.hr>
9777
9778         * version.c: Released 1.4.2.
9779
9780         * ftp.c (getftp): Simplified assertion.
9781         (ftp_loop_internal): Remove symlink before downloading.
9782         (ftp_retrieve_list): Unlink the symlink name before attempting to
9783         create a symlink!
9784
9785         * options.h (struct options): Renamed print_server_response to
9786         server_response.
9787
9788         * ftp.c (rel_constr): Removed.
9789         (ftp_retrieve_list): Don't use it.
9790         (ftp_retrieve_list): Use opt.retr_symlinks.
9791
9792 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
9793
9794         * main.c (main): New option retr_symlinks.
9795
9796         * url.c (convert_links): Print verbose message.
9797
9798 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
9799
9800         * http.c (http_loop): Reset newloc in the beginning of function;
9801         would cause FMR in retrieve_url.
9802
9803 1996-11-23  Hrvoje Niksic  <hniksic@srce.hr>
9804
9805         * recur.c (convert_all_links): Find the URL of each HTML document,
9806         and feed it to get_urls_html; would bug out.
9807         (convert_all_links): Check for l2 instead of dl; removed dl.
9808
9809         * url.c (convert_links): Don't refer to freed newname.
9810
9811         * recur.c (recursive_retrieve): Add this_url to urls_downloaded.
9812
9813         * main.c (main): Print the OS_TYPE in the debug output, too.
9814
9815         * recur.c (recursive_retrieve): Check for opt.delete_after.
9816
9817         * main.c (main): New option delete-after.
9818
9819         * init.c (setval): Cleaned up.
9820
9821 1996-11-21  Hrvoje Niksic  <hniksic@srce.hr>
9822
9823         * Makefile.in (wget): Make `wget' the default target.
9824
9825         * ftp.c (ftp_loop_internal): Move noclobber checking out of the
9826         loop.
9827         (ftp_retrieve_list): Warn about non-matching sizes.
9828
9829         * http.c (http_loop): Made -nc non-dependent on opt.recursive.
9830
9831         * init.c (setnum): Renamed from setnuminf; New argument flags.
9832         (setval): Use it.
9833
9834         * main.c (main): Sorted the options.
9835         (main): New option --wait.
9836
9837 1996-11-21  Shawn McHorse  <riffraff@txdirect.net>
9838
9839         * html.c (htmlfindurl): Reset s->in_quote after getting out of
9840         quotes.
9841
9842 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
9843
9844         * version.c: Changed version to 1.4.2.
9845
9846 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
9847
9848         * version.c: Released 1.4.1.
9849
9850         * html.c (html_quote_string): New function.
9851         (ftp_index): Use it.
9852         (htmlfindurl): A more gentle ending debug message.
9853
9854         * ftp.c (ftp_loop): Check for opt.htmlify.
9855
9856         * init.c: New command htmlify.
9857
9858         * ftp.c (getftp): Nicer error messages, with `'-encapsulated
9859         strings.
9860         (ftp_loop): Print size of index.html.
9861
9862         * init.c (setval): Implement "styles".
9863
9864         * main.c (main): New option dotstyle.
9865
9866 1996-11-19  Hrvoje Niksic  <hniksic@srce.hr>
9867
9868         * ftp.c (getftp): Close the master socket in case of errors, after
9869         bindport().
9870
9871         * connect.c (bindport): Initialize msock to -1.
9872
9873         * ftp.c (getftp): Initialize dtsock to -1.
9874
9875         * connect.c (closeport): Don't close sock if sock == -1.
9876
9877 1996-11-18  Hrvoje Niksic  <hniksic@srce.hr>
9878
9879         * init.c (setnuminf): Nuked default value -- just leave unchanged.
9880         (setval): Don't send default values.
9881         (defaults): Use DEFAULT_TIMEOUT -- aaargh.
9882
9883         * options.h (struct options): Use long for dot_bytes.
9884
9885         * init.c (setquota): Renamed to setbytes.
9886         (setval): Use setbytes on DOTBYTES.
9887
9888 1996-11-17  Hrvoje Niksic  <hniksic@srce.hr>
9889
9890         * ftp.c (getftp): Initialize con->dltime.
9891
9892         * recur.c (recursive_retrieve): Use same_host instead of
9893         try_robots; simply load robots_txt whenever the host is changed.
9894         (recursive_retrieve): Free forbidden before calling parse_robots.
9895
9896 1996-11-16  Hrvoje Niksic  <hniksic@srce.hr>
9897
9898         * retr.c (show_progress): Use them.
9899
9900         * options.h (struct options): New options dot_bytes, dots_on_line
9901         and dot_spacing.
9902
9903 1996-11-16  Mark Boyns  <boyns@sdsu.edu>
9904
9905         * recur.c (recursive_retrieve): Retrieve directories regardless of
9906         acc/rej rules; check for empty u->file.
9907
9908 1996-11-14  Hrvoje Niksic  <hniksic@srce.hr>
9909
9910         * init.c (setval): Use it.
9911
9912         * utils.c (merge_vecs): New function.
9913
9914         * init.c (setval): Reset the list-type functions when encountering
9915         "".
9916
9917 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
9918
9919         * recur.c (recursive_retrieve): Use base_url instead of this_url
9920         for no_parent.
9921
9922 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
9923
9924         * html.c (htmlfindurl): Reset s->in_quote after exiting the quote.
9925
9926 1996-11-13  Hrvoje Niksic  <hniksic@srce.hr>
9927
9928         * utils.c (sepstring): Rewrote; don't use strtok.
9929
9930         * recur.c (recursive_retrieve): Enter assorted this_url to slist
9931         when running the first time.
9932         (retrieve_robots): Warn to ignore errors when robots are loaded.
9933
9934         * utils.c (load_file): Moved from url.c.
9935
9936         * http.c: Made static variables const too in h* functions.
9937
9938         * main.c (main): Renamed --continue-ftp to --continue.
9939
9940         * recur.c (recursive_retrieve): Use it.
9941
9942         * utils.c (frontcmp): New function.
9943
9944         * url.c (accdir): New function.
9945
9946         * html.c (htmlfindurl): Recognize <area href=...>.
9947
9948         * ftp.c (ftp_retrieve_dirs): Implemented opt.includes.
9949
9950         * init.c (setval): Free the existing opt.excludes and
9951         opt.includes, if available.
9952
9953         * main.c (main): New option -I.
9954
9955 1996-11-12  Hrvoje Niksic  <hniksic@srce.hr>
9956
9957         * ftp.c (ftp_retrieve_glob): Do not weed out directories.
9958
9959         * version.c: Changed version to 1.4.1.
9960
9961 1996-11-11  Hrvoje Niksic  <hniksic@srce.hr>
9962
9963         * version.c: Released 1.4.0.
9964
9965 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
9966
9967         * main.c (main): Free com and val after parse_line.
9968         (printhelp): Reorder the listing.
9969
9970         * http.c: More robust header parsing.
9971
9972         * http.c: Allow any number of spaces, or no spaces, precede ':'.
9973         (hskip_lws): New function.
9974         (haccepts_bytes): New function.
9975         (gethttp): Use it.
9976
9977         * init.c (setval): Check header sanity.
9978         (setval): Allow resetting of headers.
9979
9980 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
9981
9982         * http.c (http_loop): Don't use has_wildcards.
9983
9984         * http.c (gethttp): Free all_headers -- would leak.
9985
9986         * recur.c (recursive_retrieve): Initialize depth to 1 instead of
9987         0 -- this fixes a long-standing bug in -rl.
9988
9989 1996-11-09  Hrvoje Niksic  <hniksic@srce.hr>
9990
9991         * ftp.c: Use -1 as "impossible" value for con->fd.
9992
9993         * url.h (URL_SEPARATOR): Don't treat `*' and `+' as separators.
9994
9995         * init.c (parse_line): Use isalpha.
9996
9997         * ftp-unix.c: Use HAVE_UNISTD_H.
9998
9999         * mtch.c (has_wildcards): Don't match \.
10000
10001         * http.c (http_loop): Warn on HTTP wildcard usage.
10002
10003 1996-11-08  Hrvoje Niksic  <hniksic@srce.hr>
10004
10005         * url.c (url_filename): Do not create numbered suffixes if
10006         opt.noclobber -- would bug out on -nc.
10007
10008 1996-11-07  Hrvoje Niksic  <hniksic@srce.hr>
10009
10010         * recur.c (parse_robots): Don't chuck out the commands without
10011         arguments (`Disallow:<empty>' didn't work).
10012         (parse_robots): Compare versions lowercase.
10013         (parse_robots): Match on base_version, not version_string!
10014         (parse_robots): Handle comments properly.
10015         (parse_robots): Match versions in a sane way.
10016
10017         * init.c: Print nicer error messages.
10018
10019         * version.c: Changed version to 1.4.0.
10020
10021 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
10022
10023         * version.c: Released 1.4.0-test2.
10024
10025         * init.c (run_wgetrc): Close fp.
10026
10027         * ftp.c (ftp_retrieve_dirs): Allocate the correct length for
10028         u->dir.
10029
10030 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
10031
10032         * init.c (setquota): Allow inf as quota specification.
10033
10034 1996-11-05  Hrvoje Niksic  <hniksic@srce.hr>
10035
10036         * ftp.c (ftp_retrieve_dirs): Return QUOTEXC if quota exceeded.
10037         (ftp_retrieve_glob): Return QUOTEXC on quota exceeded.
10038
10039         * main.c (main): Check for quota by comparison with downloaded
10040         stuff, not from status.
10041
10042         * connect.c (select_fd): Should compile on HPUX without warnings now.
10043
10044         * ftp.c (ftp_get_listing): Check whether ftp_loop_internal
10045         returned RETROK.
10046
10047 1996-11-04  Hrvoje Niksic  <hniksic@srce.hr>
10048
10049         * ftp.c (ftp_retrieve_glob): Print the pattern nicely.
10050         (getftp): Return FTPRETRINT on control connection error.
10051
10052         * html.c (htmlfindurl): Recognize <embed src=...> and
10053         <bgsound src=...>.
10054         (ftp_index): Handle username and password correctly.
10055
10056         * main.c (main): Made `-np' a synonim for --no-parent.
10057
10058 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
10059
10060         * ftp.c (ftp_loop): Check for opt.ftp_glob too before calling
10061         ftp_retrieve_glob.
10062
10063         * version.c: Changed version to 1.4.0-test2.
10064
10065 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
10066
10067         * version.c: Released 1.4.0-test1.
10068
10069         * url.c (str_url): Don't use sprintf when creating %2F-prefixed
10070         directory.
10071         (convert_links): Removed definition of make_backup.
10072
10073         * http.h: Removed definition of MAX_ERROR_LENGTH.
10074
10075         * host.c (ftp_getaddress): Check for "(none)" domains.
10076
10077         * ftp.c (ftp_retrieve_dirs): Docfix.
10078
10079         * http.c (gethttp): Use ou->referer instead of u->referer.
10080
10081         * retr.c (retrieve_url): Reset u to avoid freeing pointers twice;
10082         this was known to cause coredumps on Linux.
10083
10084         * html.c (ftp_index): Cast the argument to local_time to time_t *.
10085
10086 1996-11-01  Hrvoje Niksic  <hniksic@srce.hr>
10087
10088         * connect.c (select_fd): Use exceptfds -- once and for all.
10089
10090         * retr.c (retrieve_from_file): Free filename after
10091         recursive_retrieve.
10092         (retrieve_from_file): Send RFIRST_TIME to recursive_retrieve on
10093         first-time retrieval.
10094         (retrieve_from_file): Return uerr_t; new argument, count.
10095         (retrieve_from_file): Break on QUOTEXC.
10096
10097         * init.c (setquota): Fixed a bug that caused rejection of
10098         non-postfixed values..
10099
10100 1996-10-30  Hrvoje Niksic  <hniksic@srce.hr>
10101
10102         * version.c: Changed name to wget.
10103
10104         * connect.c (iread): Smarter use of select.
10105         (select_fd): Set errno on timeout.  If not timeout, return 1
10106         instead of 0.
10107
10108 1996-10-29  Hrvoje Niksic  <hniksic@srce.hr>
10109
10110         * ftp.c (ftp_loop_internal): Don't use con->cmd before
10111         establishing it.
10112
10113 1996-10-26  Hrvoje Niksic  <hniksic@srce.hr>
10114
10115         * http.c (gethttp): Send correct referer when using proxy.
10116         (gethttp): Use struct urlinfo ou to access the relevant data; send
10117         correct authorization in all cases.
10118
10119         * host.c (same_host): Use skip_uname to skip username and
10120         password.
10121
10122         * url.c (skip_uname): New function.
10123         (parseurl): Use it.
10124
10125         * host.c (same_host): Do not assume HTTP -- same_host should now
10126         be totally foolproof.
10127
10128         * url.c (skip_proto): New function.
10129         (parse_uname): Use it.
10130
10131         * http.c (gethttp): Create local user and passwd from what is
10132         given.
10133
10134         * url.c (parseurl): Check for HTTP username and password too.
10135
10136 1996-10-25  Hrvoje Niksic  <hniksic@srce.hr>
10137
10138         * config.h.in: Removed #define gethostbyname R...
10139
10140 1996-10-22  Hrvoje Niksic  <hniksic@srce.hr>
10141
10142         * version.c: Changed version to 1.4.0-test1.
10143
10144 1996-10-21  Hrvoje Niksic  <hniksic@srce.hr>
10145
10146         * version.c: "Released" 1.4b29.
10147
10148         * recur.c (recursive_retrieve): Check for no_parent.
10149
10150         * init.c (setval): Option update.
10151
10152         * main.c (main): New option no-parent.
10153
10154         * options.h (struct options): New variable no_parent.
10155
10156         * recur.c (recursive_retrieve): Only files are checked for
10157         opt.accepts and opt.rejects.
10158         (recursive_retrieve): Check directories for opt.excludes.
10159         (recursive_retrieve): Make the dir absolute when checking
10160         opt.excludes.
10161
10162         * html.c (htmlfindurl): Recognize <applet code=...> and <script
10163         src=...>
10164
10165 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
10166
10167         * ftp.c (getftp): Do not line-break assert entries at all.
10168         (ftp_retrieve_dirs): docfix.
10169
10170         * connect.c (select_fd): Use fd + 1 as nfds.
10171
10172         * version.c: Changed version to 1.4b29.
10173
10174 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
10175
10176         * version.c: "Released" 1.4b28.
10177
10178         * ftp.c (ftp_loop_internal): Check whether f->size == len and
10179         don't continue the loop if it is.
10180         (ftp_get_listing): Remove list_filename on unsuccesful loop.
10181
10182 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
10183
10184         * ftp.c (ftp_loop_internal): Use strcpy to initialize tmp.
10185         (getftp): Do not use multiline assert.
10186
10187         * http.c (hparsestatline): Use mjr and mnr instead of major and
10188         minor, which don't compile on Ultrix.
10189         (http_loop): Use strcpy() to initialize tmp.
10190
10191         * all: Geturl -> Fetch
10192
10193 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
10194
10195         * recur.c (parse_robots): Fixed an off-by-one bug when looking for
10196         ':'.
10197
10198         * html.c (htmlfindurl): Fixed several possible off-by-one bugs by
10199         moving `bufsize &&' to the beginning of each check in for-loops.
10200
10201         * recur.c (parse_robots): Close fp on exit.
10202
10203         * url.c (mymkdir): Check for each directory before creating.
10204
10205 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
10206
10207         * version.c: Changed version to 1.4b28.
10208
10209 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
10210
10211         * version.c: "Released" 1.4b27.
10212
10213         * init.c (parse_line): Use isspace.
10214         (parse_line): Free *com on all errors.
10215
10216         * ftp.c (ftp_loop): Change FTPOK to RETROK before exiting.
10217         (delelement): Use next instead of f->next and prev instead of
10218         f->prev.
10219         (delelement): Free the members of the deleted element.
10220
10221         * http.c (http_loop): Do not return RETROK on code != 20x.
10222
10223         * init.c (cleanup): Free opt.user_header.
10224         (cleanup): Free opt.domains.
10225
10226         * url.c (freelists): Moved to cleanup().
10227
10228         * http.c (hparsestatline): Docfix.
10229
10230         * main.c (main): Return with error status on unsuccesful
10231         retrieval.
10232
10233         * init.c (setval): Do not remove listing when mirroring.
10234
10235         * url.c (url_filename): Use opt.fileprefix.
10236
10237         * ftp.c (ftp_get_listing): Use url_filename to get filename for
10238         .listing.
10239
10240         * main.c (main): New option: -rn.
10241
10242 1996-10-15  Hrvoje Niksic  <hniksic@srce.hr>
10243
10244         * Makefile.in (RM): Added RM = rm -f.
10245
10246         * host.c (clean_hosts): New function.
10247         (free_hlist): Just free the list, no reset.
10248
10249         * version.c: Changed version to 1.4b27.
10250
10251 1996-10-13  Hrvoje Niksic  <hniksic@srce.hr>
10252
10253         * version.c: "Released" 1.4b26.
10254
10255         * retr.c (retrieve_from_file): If call get_urls_html with
10256         opt.spider to make it silent in spider mode.
10257
10258         * url.c (str_url): Use CLEANDUP instead of URL_CLEANSE.
10259
10260         * url.h (CLEANDUP): New macro.
10261
10262         * http.c (gethttp): Fixed a bug that freed location only when it
10263         was NULL.
10264
10265         * retr.c (retrieve_url): Free url if it will not be stored,
10266         i.e. newloc is NULL.
10267
10268         * html.c (htmlfindurl): Handle exiting from quotes correctly; the
10269         old version would bug out on <a href="x#a"href="y">.
10270
10271         * html.h (state_t): New member in_quote.
10272
10273         * html.c (htmlfindurl): Free s->attr at the beginning of
10274         attr-loop.
10275
10276         * recur.c (recursive_retrieve): Recognize RCLEANUP.
10277         (tried_robots): Make hosts a global variable.
10278         (recursive_retrieve): Free constr after URL host optimization.
10279         (tried_robots): Free urlinfo before exiting.
10280
10281         * utils.c (free_slist): New function.
10282
10283         * recur.c (recursive_retrieve): Use flags to add cleanup
10284         possibility.
10285
10286         * main.c (main): Free filename after recursive_retrieve.
10287
10288         * http.c (gethttp): Store successful responses too.
10289
10290 1996-10-12  Hrvoje Niksic  <hniksic@srce.hr>
10291
10292         * all: Constified the whole source.  This required some minor
10293         changes in many functions in url.c, possibly introducing bugs -- I
10294         hope not.
10295
10296         * ftp-basic.c: Removed last_respline.
10297
10298         * http.c (gethttp): Free type.
10299
10300         * host.c (same_host): Free real1 and real2.
10301
10302         * main.c (main): New option --spider.
10303
10304         * retr.c (get_contents): Don't reset errno.
10305
10306         * main.c (main): Sorted the options.
10307
10308         * connect.c (iread): Set errno to ETIMEDOUT only if it was left
10309         uninitialized by select().
10310
10311         * http.c (http_loop): Print the time when the connection is
10312         closed.
10313         (gethttp): Debug-print the HTTP request.
10314
10315 1996-10-11  Hrvoje Niksic  <hniksic@srce.hr>
10316
10317         * connect.c (iread): Do not try reading after timeout.
10318
10319         * main.c (main): Would bug out on -T.
10320
10321         * connect.c (select_fd): Do not use exceptfds.
10322         (iread): Set ETIMEDOUT on select_fd <= 0.
10323
10324         * version.c: Changed version to 1.4b26.
10325
10326 1996-10-10  Hrvoje Niksic  <hniksic@srce.hr>
10327
10328         * version.c: "Released" 1.4b25.
10329
10330         * ftp-unix.c (ftp_parse_unix_ls): Ignore lines without file name
10331         or link name.
10332
10333         * http.c (gethttp): Add errcode to struct hstat.
10334         (http_loop): Use it.
10335
10336         * url.c (no_proxy_match): Simplify using char** for no_proxy.
10337
10338         * options.h (struct options): Make opt.no_proxy a vector.
10339
10340         * utils.c (sepstring): Use !*s instead of !strlen(s).
10341
10342         * init.c (setval): Set opt.maxreclevel to 0 on --mirror.
10343         (getperms): Use ISODIGIT instead of isdigit.
10344
10345         * ftp.c (getftp): Print time.
10346
10347         * main.c (main): Use legible output of downloaded quantity.
10348
10349         * ftp.c (getftp): Use elapsed_time().
10350         (ftp_loop_internal): Use rate().
10351
10352         * http.c (http_loop): Add download ratio output; Use rate().
10353
10354         * utils.c (rate): New function.
10355
10356 1996-10-09  Hrvoje Niksic  <hniksic@srce.hr>
10357
10358         * http.c (http_loop): Use timer.
10359
10360         * ftp.c: Split to ftp-basic.c and ftp.c
10361
10362         * utils.c (reset_timer): New function.
10363         (elapsed_time): New function.
10364
10365         * retr.c (show_progress): Make bytes_in_line and offs long; should
10366         work on 16-bit machines.
10367
10368 1996-10-08  Hrvoje Niksic  <hniksic@srce.hr>
10369
10370         * url.c (in_acclist): New argument backward.
10371
10372         * ftp.c (ftp_retrieve_glob): Use acceptable() to determine whether
10373         a file should be retrieved according to suffix.
10374         (ftp_get_listing): Check the return value of unlink; Do not call
10375         ftp_retrieve_dirs if depth reached maxreclevel.
10376         (ftp_retrieve_dirs): Check whether the directory is in
10377         exclude-list.
10378
10379         * main.c (main): Print the version number at the beginning of
10380         DEBUG output.
10381         (main): Use strrchr when creating exec_name.
10382
10383         * ftp.c (ftp_retrieve_glob): Do not close control connection.
10384
10385         * version.c: Changed version to 1.4b25.
10386
10387 1996-10-07  Hrvoje Niksic  <hniksic@srce.hr>
10388
10389         * version.c: "Released" 1.4b24.
10390
10391         * Makefile.in: Rewrite.
10392
10393         * ftp.c (ftp_loop_internal): Likewise.
10394
10395         * retr.c (time_str): Check for failed time().
10396
10397         * html.c (htmlfindurl): Recognize <fig src> and <overlay src> from
10398         HTML3.0.
10399
10400         * retr.c (time_str): Return time_t *.
10401
10402         * connect.c (bindport): Close msock on unsuccesful bind.
10403         (bindport): The same for getsockname and listen.
10404
10405         * retr.c (retrieve_url): Allow any number of retries on
10406         proxy.
10407
10408         * http.c (gethttp): Do not treat errno == 0 as timeout.
10409         (http_loop): Likewise.
10410         (http_loop): Cosmetic changes.
10411
10412         * connect.c (iread): Set errno to ETIMEDOUT in case of timeout.
10413
10414         * retr.c (get_contents): Reset errno.
10415
10416         * ftp.c (getftp): Minor fixes.
10417
10418 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
10419
10420         * http.c: Do not use backups.
10421
10422         * geturl.1 (WARNING): Warn that man-page could be obsolete.
10423
10424         * getopt.c (getopt_long): Moved to getopt.c
10425
10426         * geturl.texi: Enhanced.
10427
10428         * main.c (main): Use it.
10429
10430         * recur.c (convert_all_links): New function.
10431
10432         * utils.c (add_slist): New argument flags.
10433
10434         * recur.c (recursive_retrieve): Update a list of downloaded URLs.
10435         (parse_robots): Do not chuck out empty value fields.
10436         (parse_robots): Make yourself welcome on empty Disallow.
10437
10438         * version.c: Changed version to 1.4b24.
10439
10440 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
10441
10442         * version.c: "Released" 1.4b23.
10443
10444         * ftp.c (ftp_loop_internal): Get the time after getftp.
10445
10446         * Makefile.in (install.info): New target.
10447         (install): Use it.
10448
10449         * http.c (http_loop): Fix output when doing -O.
10450
10451 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
10452
10453         * geturl.texi: New file.
10454
10455         * main.c (main): Do not print the warnings and download summary if
10456         opt.quiet is set.
10457
10458         * version.c: Changed version to 1.4b23.
10459
10460 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
10461
10462         * "Released" 1.4b22.
10463
10464         * atotm.c (atotm): Use True and False instead of TRUE and FALSE,
10465         to avoid redefinition warnings.
10466
10467         * host.c (store_hostaddress): Use memcpy() to copy the address
10468         returned by inet_addr.
10469
10470         * version.c: Changed version to 1.4b22.
10471
10472 1996-10-04  Hrvoje Niksic  <hniksic@srce.hr>
10473
10474         * version.c: "Released" 1.4b21.
10475
10476         * ftp-unix.c (ftp_parse_ls): Renamed to ftp_parse_unix_ls.
10477
10478         * ftp.c (ftp_port): Use conaddr.
10479         (getftp): Print the file length.
10480         (ftp_retrieve_list): Check the stamps of plain files only.
10481
10482         * connect.c (closeport): Do not call shutdown().
10483         (conaddr): New function.
10484
10485         * html.c (ftp_index): Made it dfp-aware.
10486
10487         * init.c (cleanup): New name of freemem. Close opt.dfp.
10488
10489         * ftp.c (getftp): Use opt.dfp if it is set.
10490
10491         * ftp-unix.c (ftp_parse_ls): Recognize time in h:mm format.
10492
10493         * ftp.c (ftp_retrieve_dirs): Fixed a bug that caused incorrect
10494         CWDs to be sent with recursive FTP retrievals.
10495
10496 1996-10-03  Hrvoje Niksic  <hniksic@srce.hr>
10497
10498         * recur.c (parse_robots): Made it more compliant with "official"
10499         specifications.
10500
10501         * http.c: New function.
10502
10503         * ftp-unix.c (ftp_parse_ls): Added better debug output.
10504
10505         * ftp.c (getftp): Print out the LIST in case of
10506         opt.print_server_response.
10507
10508         * version.c: Changed version to 1.4b21.
10509
10510 1996-10-01  Hrvoje Niksic  <hniksic@srce.hr>
10511
10512         * version.c: "Released" 1.4b20.
10513
10514         * README: Update.
10515
10516         * http.c (gethttp): Preset lengths of various headers instead of
10517         calculating them dynamically.
10518         (gethttp): Check for 206 partial contents.
10519
10520 1996-09-30  Hrvoje Niksic  <hniksic@srce.hr>
10521
10522         * configure.in: Set SYSTEM_GETURLRC to $libdir/geturlrc
10523
10524         * http.c (gethttp): Send the port number in the Host: header.
10525
10526 1996-09-29  Hrvoje Niksic  <hniksic@srce.hr>
10527
10528         * http.c (gethttp): Send host: header.
10529         (gethttp): Add the possibility of user-defined headers.
10530         (gethttp): Move decision about pragma: no-cache to http_loop,
10531         where it belongs.
10532         (gethttp): Pass a struct instead of enormous argument list.
10533         (http_loop): Use a new, fancier display format.
10534         (ftp_loop): Likewise.
10535
10536         * main.c: (hangup): Turn off buffering of the new log file.
10537
10538         * install-sh: Likewise.
10539
10540         * config.sub: Replace with the one in autoconf-2.10
10541
10542         * geturl.1: Update.
10543
10544         * init.c: New options httpuser and httppasswd.
10545
10546         * http.c: (base64_encode_line): New function.
10547         (gethttp): Send authentication.
10548
10549         * connect.c (make_connection): Use store_hostaddress.
10550
10551 1996-09-28  Hrvoje Niksic  <hniksic@srce.hr>
10552
10553         * host.c (store_hostaddress): New function.
10554
10555         * NEWS: Update.
10556
10557         * http.c (hgetrange): New function.
10558         (gethttp): Use ranges.
10559
10560         * utils.c (numdigit): Accept long instead of int.
10561
10562         * http.c (http_loop): Add restart capabilities.
10563
10564         * ftp.c (ftp_retrieve_glob): Fixed a bug that could cause matchres
10565         being used uninitialized.
10566         (ftp_retrieve_list): Similar fix.
10567
10568         * host.c (add_hlist): Fixed a bug that could cause cmp being used
10569         uninitialized.
10570
10571         * url.c (construct_relative): New function.
10572
10573         * recur.c (recursive_retrieve): Use it.
10574
10575         * retr.c (convert_links): New function.
10576
10577 1996-09-27  Hrvoje Niksic  <hniksic@srce.hr>
10578
10579         * url.c (free_urlpos): New function.
10580
10581         * recur.c (recursive_retrieve): Adapt.
10582
10583         * url.c (get_urls_html): Return a linked list instead of a vector.
10584
10585         * url.c (get_urls_file): Return a linked list instead of a vector.
10586
10587         * geturl.1: Update.
10588
10589         * http.c (gethttp): Implement it.
10590
10591         * init.c (setval): New option: SAVEHEADERS
10592
10593         * ftp.c (ftp_loop_internal): Do not set restval if listing is to
10594         be retrieved. Lack of this test caused bugs when the connection
10595         was lost during listing.
10596
10597         * retr.c (retrieve_url): Fixed a bug that caused
10598         coredumps. *newloc is now reset by default.
10599         (retrieve_url): Lift the twenty-tries limit on proxies.
10600
10601         * version.c: Changed version to 1.4b20.
10602
10603 1996-09-20  Hrvoje Niksic  <hniksic@srce.hr>
10604
10605         * version.c: "Released" 1.4b19.
10606
10607 1996-09-19  Hrvoje Niksic  <hniksic@srce.hr>
10608
10609         * ftp.c (ftp_loop_internal): Renamed from ftp_1fl_loop.
10610         (getftp): Changed prototype to accept ccon *.
10611
10612 1996-09-17  Hrvoje Niksic  <hniksic@srce.hr>
10613
10614         * ftp.c (ftp_retrieve_list): Fixed a bug that caused setting
10615         incorrect values to files pointed to by symbolic links.
10616         (ftp_1fl_loop): Do not count listings among the downloaded URL-s.
10617
10618 1996-09-16  Hrvoje Niksic  <hniksic@srce.hr>
10619
10620         * url.c (mkstruct): Do not prepend "./" in front of a pathname.
10621
10622         * main.c (main): New option: --user-agent.
10623
10624         * geturl.1: Ditto.
10625
10626         * init.h: Ditto.
10627
10628         * init.c (setval): Ditto.
10629
10630         * main.c (main): Rename "server-headers" to "server-response".
10631
10632         * ftp-unix.c (ftp_parse_ls): Check for asterisks at the end of
10633         executables in 'ls -F' listings.
10634
10635 1996-09-15  Hrvoje Niksic  <hniksic@srce.hr>
10636
10637         * url.c (parseurl): Remove realloc() and sprintf().
10638         (str_url): Get rid of sprintf().
10639
10640         * recur.c (recursive_retrieve): Enable FTP recursion through proxy
10641         servers.
10642
10643         * url.h (URL_CLEANSE): Made it else-resistant.
10644         (USE_PROXY): New macro.
10645
10646 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
10647
10648         * NEWS: Update.
10649
10650         * version.c: Changed version to 1.4b19.
10651
10652 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
10653
10654         * version.c: "Released" 1.4b18.
10655
10656         * url.c: Made it reallocate space exponentially.
10657
10658 1996-09-14  Drazen Kacar  <dave@fly.cc.fer.hr>
10659
10660         * html.c (htmlfindurl): Added <frame src> and <iframe src> among
10661         the list of stuff to fetch.
10662
10663 1996-09-13  Hrvoje Niksic  <hniksic@srce.hr>
10664
10665         * url.c (get_urls_html): Fixed a bug that caused SIGSEGV's with
10666         -Fi.
10667
10668         * html.c (htmlfindurl): Rewrite.
10669
10670         * http.c (gethttp): Use opt.proxy_cache.
10671
10672         * main.c (main): Added --cache option.
10673
10674         * ftp.c (ftp_response): Print server response if opt.print_server
10675         response is set.
10676         (getftp): Print newlines after each request if the server response
10677         is to be printed.
10678         (ftp_response): Copy the last response line to last_respline.
10679
10680         * http.c (gethttp): Add Pragma: nocache for retried
10681         proxy-retrievals.
10682
10683         * ftp.c (getftp): Use it.
10684
10685         * retr.c (buf_discard): New function.
10686
10687         * ftp.c (ftp_response): Use buf_readchar().
10688         (getftp): Flush the control connection buffer before calling
10689         get_contents().
10690
10691         * retr.c (buf_readchar): New function.
10692         (buf_flush): New function.
10693         (get_contents): Use buf_readchar() instead of read(x, x, 1).
10694         (get_contents): Use buf_flush.
10695
10696 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
10697
10698         * ftp.c: Incorporate changes to ftp_response.
10699
10700         * ftp.c (ftp_response): Allocate the server response dynamically,
10701         as in read_whole_line and fetch_next_header.
10702
10703         * utils.c (read_whole_line): Fixed a bug that prevented reading
10704         the last line if it is not \n-terminated. Also fixed a possible
10705         memory overflow.
10706
10707         * http.c (fetch_next_header): Return malloc-ed string as large as
10708         needed.
10709         (gethttp): Use new fetch_next_header.
10710
10711 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
10712
10713         * http.c (hgetlen): Compute the header length the first time only.
10714         (hgettype): Ditto.
10715         (hgetlocation): Ditto.
10716         (hgetmodified): Ditto.
10717
10718 1996-09-11  Hrvoje Niksic  <hniksic@srce.hr>
10719
10720         * sample.geturlrc: Update.
10721
10722 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
10723
10724         * http.c (http_loop): Ditto.
10725
10726         * ftp.c (getftp): Open the output file as binary.
10727
10728         * version.c: Changed version to 1.4b18.
10729
10730 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
10731
10732         * version.c: "Released" 1.4b17.
10733
10734         * ftp-unix.c (ftp_parse_ls): If unable to open file, return NULL
10735         instead of failed assertion.
10736
10737 1996-09-09  Hrvoje Niksic  <hniksic@srce.hr>
10738
10739         * ftp.c (ftp_get_listing): Add a numbered suffix to LIST_FILENAME
10740         if a file of that name already exists.
10741
10742 1996-09-05  Hrvoje Niksic  <hniksic@srce.hr>
10743
10744         * ftp.c (ftp_1fl_loop): Handler FTPPORTERR and FOPENERR correctly.
10745
10746         * config.h.in: Define gethostbyname as Rgethostbyname when using
10747         Socks.
10748
10749         * configure.in: Check for -lresolv if using Socks.
10750
10751         * version.c: Changed version to 1.4b17.
10752
10753 1996-07-15  Hrvoje Niksic  <hniksic@srce.hr>
10754
10755         * version.c: "Released" 1.4b16.
10756
10757         * http.c (gethttp): More intelligent check for first line of HTTP
10758         response.
10759         (gethttp): Would bug out on time-stamping.
10760
10761         * version.c: Changed version to 1.4b16.
10762
10763 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
10764
10765         * version.c: Released 1.4b15.
10766
10767         * http.c (http_loop): Print \n after the loop entry, not before.
10768
10769         * url.c (url_filename): Use ISDOT.
10770
10771         * url.h (ISDOT): New macro.
10772
10773         * recur.c (recursive_retrieve): Change only opt.recursive for
10774         following FTP.
10775
10776 1996-07-11  Antonio Rosella <antonio.rosella@agip.it>
10777
10778         * socks/geturl.cgi: Fixed version No.
10779
10780         * socks/download-netscape.html: Ditto.
10781
10782         * socks/download.html: Changed socks.html to download.html.
10783
10784 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
10785
10786         * url.c (url_filename): Check for opt.dirstruct instead for
10787         opt.recursive && opt.dirstruct.
10788
10789         * init.c (defaults): Ditto.
10790         (defaults): Reset dirstruct by default.
10791         (setval): Set opt.dirstruct whenever setting recursive.
10792
10793         * init.h: Removed FORCEDIRHIER.
10794
10795         * INSTALL: Added -L to socks-description.
10796
10797         * version.c: Changed version to 1.4b15.
10798
10799 1996-07-10  Hrvoje Niksic  <hniksic@srce.hr>
10800
10801         * version.c: "Released" 1.4b14.
10802
10803         * geturl.1: Update AUTHOR to include Rosella as contributor.
10804
10805         * NEWS: Update.
10806
10807         * socks/geturl.cgi: Simplified command creation, nuked <blink>.
10808
10809         * socks/geturl.cgi: Wrap nutscape extensions within if $netscape.
10810         (cal_time): Fix == to eq.
10811
10812         * socks/geturl.cgi: GPL-ized with permission of A. Rosella.
10813
10814         * geturl.1 (hostname): Moved URL CONVENTIONS to the beginning.
10815
10816         * Makefile.in: Use @VERSION@.
10817
10818         * configure.in: Check version from version.c.
10819
10820         * socks/geturl.cgi: Changed /pub/bin/perl to /usr/bin/perl.
10821
10822         * socks/download.html: Created from download-netscape.html, made
10823         HTML-2.0 compliant.
10824
10825         * recur.c (recursive_retrieve): Set opt.force_dir_hier when
10826         following FTP links from recursions.
10827
10828 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
10829
10830         * url.c (mymkdir): Fixed a bug that prevented mymkdir() to create
10831         absolute directories correctly.
10832
10833         * version.c: Changed version to 1.4b14.
10834
10835 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
10836
10837         * version.c: "Released" 1.4b13.
10838
10839         * url.c (make_backup): New function.
10840
10841         * http.c (http_loop): Make a backup copy of the local file (using
10842         rename(2)) before opening it.
10843
10844         * main.c (main): Added --backups.
10845
10846         * host.c (ftp_getaddress): Bail out on failed mycuserid().
10847         (ftp_getaddress): Check for leading dot on MY_DOMAIN.
10848         (ftp_getaddress): Check for empty, null or (null) domain.
10849
10850         * url.c (get_urls_html): If this_url is NULL, the base must have a
10851         protocol.
10852         (parseurl): Use has_proto.
10853
10854         * retr.c (retrieve_url): Warn when proxy is used with more than 20
10855         retries.
10856
10857         * url.c (mkstruct): Create the directory (calling mymkdir()) only
10858         if it is not already there.
10859         (has_proto): New function.
10860         (get_urls_html): Eliminate the remaining call to findurl -- use
10861         has_proto.
10862
10863         * geturl.1: Ditto.
10864
10865         * main.c: Change -X to -x.
10866
10867         * url.c (url_filename): Simplify creation of filename if
10868         prefix_files is set.
10869         (url_filename): Simplify everything. And I do mean *everything*.
10870         (mkstruct): Add dir_prefix before hostname.
10871         (path_simplify): Fixed a bug that caused writing outside the path
10872         string in case of "." and ".." path strings.
10873
10874 1996-07-06  Hrvoje Niksic  <hniksic@srce.hr>
10875
10876         * init.c: Added --mirror.
10877
10878         * main.c (main): Added -X to force saving of directory hierarchy.
10879
10880         * ftp.c (ftp_retrieve_list): Added recursion depth counter.
10881         (ftp_retrieve_list): Check whether quota is exceeded.
10882
10883         * url.c (get_urls_html): Skip leading blanks for absolute URIs.
10884
10885         * http.c (gethttp): Use referer if present.
10886
10887         * recur.c (recursive_retrieve): Set u->referer before calling
10888         retrieve_url.
10889
10890         * url.c (newurl): Use memset to nullify the struct members.
10891         (freeurl): Free the referer field too.
10892
10893         * url.h: Added referer to urlinfo.
10894
10895         * geturl.1: Updated the manual to document some of the new features.
10896
10897         * utils.c (numdigit): Moved from url.c.
10898
10899         * README: Rewritten.
10900
10901         * config.h.in: Add the support for socks.
10902
10903         * configure.in: Add the support for socks.
10904
10905         * url.c (url_filename): If the dir_prefix is ".", work with just
10906         the file name.
10907         (url_filename): Do not look for .n extensions if timestamping if
10908         turned on.
10909
10910         * retr.c (show_progress): Skip the over-abundant restval data, and
10911         print the rest of it with ',' instead of '.'.
10912
10913 1996-07-05  Hrvoje Niksic  <hniksic@srce.hr>
10914
10915         * retr.c (show_progress): Changed second arg. to long (as it
10916         should be).
10917         (show_progress): Moved to retr.c.
10918         (get_contents): Moved to retr.c.
10919
10920         * version.c: Change version to 1.4b13.
10921
10922 1996-07-05  Hrvoje Lacko <hlacko@fly.cc.fer.hr>
10923
10924         * url.c (in_acclist): Would return after the first suffix.
10925
10926 1996-07-04  Hrvoje Niksic  <hniksic@srce.hr>
10927
10928         * version.c: "Released" 1.4b12.
10929
10930         * url.c (path_simplify): More kludgifications.
10931         (get_urls_html): Use new parameters for htmlfindurl.
10932
10933         * html.c: Removed memorizing "parser states", since the new
10934         organization does not require them.
10935
10936         * init.c (run_geturlrc): Use read_whole_line.
10937
10938         * ftp-unix.c (ftp_parse_ls): Use read_whole_line.
10939
10940         * recur.c (parse_robots): Use read_whole_line.
10941
10942         * utils.c (read_whole_line): New function.
10943
10944         * recur.c (tried_robots): Use add_slist/in_slist, *much* cleaner.
10945
10946         * host.c (ngethostbyname): Call inet_addr just once. Yet to be
10947         tested on OSF and Ultrix.
10948         (add_hlist): New function.
10949         (free_hlist): New function.
10950         (search_host): New function.
10951         (search_address): New function.
10952         (realhost): Use search_host, search_address and add_hlist.
10953         (same_host): Replaced realloc() with strdupdelim(), made
10954         case-insensitive, fixed a memory leak.
10955
10956         * html.c (ftp_index): Fixed tm_min and tm_sec to be tm_hour and
10957         tm_min, like intended.
10958
10959         * version.c: Change user agent information to
10960         Geturl/version.
10961
10962 1996-07-03  Hrvoje Niksic  <hniksic@srce.hr>
10963
10964         * utils.c: Renamed nmalloc.c to utils.c, .h likewise.
10965
10966         * url.c (acceptable): Always accept directories.
10967
10968         * ftp-unix.c (ftp_parse_ls): Support brain-damaged "ls -F"-loving
10969         servers by stripping trailing @ from symlinks and trailing / from
10970         directories.
10971
10972         * ftp.c (ftp_loop): Debugged the "enhanced" heuristics. :-)
10973
10974         * url.c (skip_url): Use toupper instead of UCASE.
10975
10976         * host.c (sufmatch): Made it case-insensitive.
10977
10978         * url.c (match_backwards_or_pattern): Fixed i == -1 to j == -1.
10979         (match_backwards): New function, instead of
10980         match_backwards_or_pattern.
10981
10982         * recur.c (recursive_retrieve): Increased performance by
10983         introducing inl, which reduces number of calls to in_slist to only
10984         one.
10985
10986         * ftp.c (ftp_loop): Enhanced the heuristics that decides which
10987         routine to use.
10988
10989         * main.c (printhelp): Removed the warranty stuff.
10990
10991 1996-07-02  Hrvoje Niksic  <hniksic@srce.hr>
10992
10993         * url.c (add_slist): Simplify.
10994         (match_backwards_or_pattern): New function.
10995         (in_acclist): Use match_backwards_or_pattern.
10996         (matches): Remove.
10997
10998 1996-06-30  Hrvoje Niksic  <hniksic@srce.hr>
10999
11000         * ftp.c (ftp_loop): Call ftp_index on empty file names, if not
11001         recursive.
11002
11003         * html.c (ftp_index): Fixed to work. Beautified the output.
11004
11005         * ftp.c (ftp_retrieve_glob): Another argument to control whether
11006         globbing is to be used.
11007         (ftp_retrieve_list): Compare the time-stamps of local and remote
11008         files to determine whether to download.
11009
11010 1996-06-29  Hrvoje Niksic  <hniksic@srce.hr>
11011
11012         * ftp.c (rel_constr): New function.
11013
11014         * retr.c (retrieve_from_file): Check for text/html before
11015         retrieving recursively.
11016
11017         * main.c (main): Check whether the file is HTML before going into
11018         recursive HTML retrieving.
11019
11020         * ftp.c (ftp_retrieve_list): Manage directories.
11021         (ftp_retrieve_glob): Pass all the file-types to ftp_retrieve_list.
11022         (ftp_1fl_loop): Fixed a bug that caused con->com to be incorrectly
11023         initialized, causing bugchecks in getftp to fail.
11024
11025         * configure.in: Check for symlink.
11026
11027         * ftp.c (ftp_retrieve_list): Added support for symlinks.
11028
11029         * version.c: "Released" 1.4b10.
11030
11031         * atotm.c (atotm): Redeclared as time_t.
11032
11033         * init.c: New variable "timestamping".
11034
11035         * main.c (main): New option 'N'.
11036
11037         * http.c (hgetlocation): Case-insensitive match.
11038         (hgetmodified): New function.
11039         (http_loop): Implement time-stamping.
11040
11041 1996-06-28  Hrvoje Niksic  <hniksic@srce.hr>
11042
11043         * version.c: Changed version to 1.4b10
11044
11045         * atotm.c: New file, from phttpd.
11046
11047         * options.h (struct options): New parameter timestamping.
11048
11049         * version.c: 1.4b9 "released".
11050
11051         * recur.c (recursive_retrieve): Used linked list (ulist) for
11052         faster storing of URLs.
11053
11054         * url.c (get_urls_html): Removed the old kludge with comparing the
11055         outputs of htmlfindurl and findurl.
11056         (get_urls_html): Added better protocol support here.
11057         (create_hash): Removed, as well as add_hash and in_hash.
11058         (addslist): New function.
11059         (in_slist): ditto
11060
11061         * version.c: Released 1.4b8, changed version to b9.
11062
11063 1996-06-27  Hrvoje Niksic  <hniksic@srce.hr>
11064
11065         * ftp.c (freefileinfo): New function.
11066         (delelement): New function.
11067
11068         * everywhere: GPL!
11069
11070         * ftp.c (ftp_loop): Use ccon.
11071         (ftp_retrieve_glob): Likewise.
11072
11073         * ftp.h: Define ccon, to define status of control connection.
11074
11075         * ftp.c (ftp_get_listing): New function.
11076         (ftp_retrieve_more): New function.
11077         (ftp_retrieve_glob): New function.
11078
11079 1996-06-25  Hrvoje Niksic  <hniksic@srce.hr>
11080
11081         * configure.in: Removed the search for cuserid().
11082
11083         * init.c (getmode): Renamed to getperms.
11084
11085 1996-06-24  Hrvoje Niksic  <hniksic@srce.hr>
11086
11087         * version.c: New version.
11088
11089         * main.c (hangup): New function, that handles hangup. Hangup
11090         signal now causes geturl to stop writing on stdout, and to write
11091         to a log file.
11092
11093         * ftp.c (getftp): "Released" 1.4b7.
11094
11095         * html.c (htmlfindurl): Ignore everything inside <head>...</head>.
11096         (ftp_index): Use fileinfo/urlinfo.
11097
11098         * ftp-unix.c (ftp_parse_ls): New function.
11099         (symperms): New function.
11100
11101         * ftp.c (ftp_1fl_loop): New function, to handle 1-file loops.
11102
11103         * retr.c (retrieve_url): Added FTP support.
11104
11105 1996-06-23  Hrvoje Niksic  <hniksic@srce.hr>
11106
11107         * geturl.h: Removed NOTFTP2HTML enum.
11108         Added DO_LOGIN, DO_CWD and DO_LIST. LIST_ONLY is obsolete.
11109
11110         * ftp.c (getftp): Resynched with urlinfo.
11111         (getftp): Removed HMTL-ization of index.html from getftp.
11112
11113         * version.c: 1.4b6 "released".
11114
11115         * options.h (options): New struct, to keep options in.
11116
11117         * http.c (http_loop,gethttp): Synched with proxy.
11118
11119         * retr.c (retrieve_url): Implemented proxy retrieval.
11120
11121         * main.c (main): Use retrieve_from_file.
11122
11123 1996-06-22  Hrvoje Niksic  <hniksic@srce.hr>
11124
11125         * retr.c (retrieve_from_file): New function.
11126
11127         * url.c (parseurl): Modified to return URLOK if all OK. Protocol
11128         can be found in u->proto.
11129
11130         * ftp.c (ftp_response): Fixed to accept multi-line responses as
11131         per RFC 959.
11132
11133         * recr.c (recursive_retrieve): Take newloc from retrieve_url.
11134
11135         * url.c (mymkdir): Removed the file of the same name, if one
11136         exists.
11137         (isfile): New function.
11138         (mkstruct): Fixed the '/' glitches.
11139         (path_simplify): Hacked to treat something/.. correctly.
11140
11141 1996-06-21  Hrvoje Niksic  <hniksic@srce.hr>
11142
11143         * http.c (gethttp): Close the socket after error in headers.
11144         (http_loop): HEOF no longer a fatal header.
11145
11146         * loop.c (retrieve_url): When dt is NULL, do not modify it. This
11147         simplifies the syntax of calling retrieve_url.
11148
11149         * recr.c (recursive_retrieve): Modified to use get_urls_html.
11150
11151         * url.c (get_urls_file): New function.
11152         (get_urls_html): New function.
11153
11154         * recr.c (recursive_retrieve): Patched up to conform to the
11155         standards.
11156
11157         * http.c (gethttp): Synched with the rest...
11158         (gethttp): Treat only CONREFUSED specially, with connection
11159         errors.
11160
11161         * init.c,geturl.1,http.c (http_loop): Removed kill_error.
11162
11163 1996-06-20  Hrvoje Niksic  <hniksic@srce.hr>
11164
11165         * http.c (http_loop): New function.
11166
11167         * loop.c: Removed *lots* of stuff from retrieve_url.
11168
11169         * url.c (parseurl): Changed to work with urlinfo. Integrated
11170         username finding and path parsing.
11171         (newurl): New function.
11172         (freeurl): New function.
11173         (mkstruct): Removed the old bogosities, made it urlinfo-compliant.
11174         (url_filename): Likewise.
11175         (path_simplify): Accept relative paths too.
11176         (opt_url): Made urlinfo-compliant, removed bogosities.
11177         (path_simplify): Expanded to accept relative paths.
11178         (str_url): A replacement for hide_url
11179         (decode_string): Fixed a bug that caused malfunctioning when
11180         encountering an illegal %.. combination.
11181         (opt_url): Removed the argument. Dot-optimizations are now default.
11182
11183         * nmalloc.c (strdupdelim): New function.
11184
11185         * url.h: Added the urlinfo structure
11186
11187 1996-06-19  Hrvoje Niksic  <hniksic@srce.hr>
11188
11189         * url.c (hide_url): Thrown out the protocol assertion. Do not
11190         change the URL if the protocol if not recognized.
11191         (findurl): Put continue instead of break.
11192
11193 1996-06-18  Hrvoje Niksic  <hniksic@srce.hr>
11194
11195         * sample.geturlrc: Changed the defaults to be commented out and
11196         harmless (previous defaults caused pains if copied to
11197         ~/.geturlrc).
11198
11199         * http.c (gethttp): Print the HTTP request in debug mode.
11200
11201         * connect.c (iread): Added EINTR check loop to select-ing
11202         too. EINTR is now correctly handled with select().
11203
11204         * TODO: new file
11205
11206 1996-05-07  Hrvoje Niksic  <hniksic@srce.hr>
11207
11208         * host.c (same_host): Made the function a little bit more
11209         intelligent regarding diversified URL syntaxes.
11210
11211         * url.c (skip_url): Spaces are now skipped after URL:
11212
11213         * Released 1.3.1 with the patch to prevent crashing when sending
11214         NULL to robot* functions and the patch to compile "out of the box"
11215         on AIX.
11216
11217         * recr.c (recursive_retrieve): Added checking whether this_url is
11218         NULL when calling the robot functions.
11219
11220         * ChangeLog: New file.