]> sjero.net Git - wget/blob - src/ChangeLog
Fix indentation.
[wget] / src / ChangeLog
1 2010-10-11  Giuseppe Scrivano  <gscrivano@gnu.org>
2
3         * ftp.c (getftp): Fix indentation.
4
5 2010-10-11  Steven Schubiger <stsc@member.fsf.org>
6
7         * ftp.c (getftp): Initialize `targ'.
8
9 2010-10-08  Ivanov Anton <x86mail@gmail.com> (tiny change)
10
11     * src/html-url.c (check_style_attr): Skip quotes when they are present.
12
13 2010-10-06  Giuseppe Scrivano  <gscrivano@gnu.org>
14
15         * main.c (main): Remove unused variable `status'.
16
17 2010-09-25  Merinov Nikolay  <kim.roader@gmail.com>
18
19         * init.c: Add "unlink" command into command list.
20         * main.c: Add "unlink" option into option_data list.
21         * options.h: Adding unlink field into struct options.
22         * wget.h: Addind UNLINKERR error into uerr_t enum.
23         * exits.c (get_status_for_err): define status for UNLINKERR.
24         * ftp.c (getftp): unlink file if exists, instead clobbering.
25         (ftp_loop_internal): processing UNLINKERR.
26         * http.c (gethttp): unlink file if exists, instead clobbering.
27         (http_loop): processing UNLINKERR.
28
29 2010-09-24  Dennis, CHENG Renquan <crquan@fedoraproject.org>
30
31         Fix problem when content-disposition is used with recursive downloading.
32         * url.h (url_file_name): Add a new argument `replaced_filename'.
33         * url.c (url_file_name): Likewise.
34         * http.c (parse_content_disposition): Do not add a prefix to the return
35         value.
36         (test_parse_content_disposition): Adjust tests.
37         (gethttp): Pass additional parameter to `url_file_name'.
38         (http_loop): Likewise.
39         * ftp.c (ftp_loop_internal, ftp_get_listing, ftp_retrieve_list)
40         (ftp_loop): Likewise.
41
42 2010-09-14  Giuseppe Scrivano  <gscrivano@gnu.org>
43
44         * convert.c (local_quote_string): Accept new parameter `no_html_quote'.
45         Inhibit HTML quoting when `no_html_quote'.
46         (convert_links): Disable HTML quoting in CSS files.
47         Reported by: Manuel Reinhardt <reinhardt@syslab.com>.
48
49 2010-09-12  Giuseppe Scrivano  <gscrivano@gnu.org>
50
51         * main.c (print_help): Align --trust-server-names help text with
52         the rest of the text.
53         Suggested by: Mike Frysinger  <vapier@gentoo.org>.
54
55 2010-08-20  Giuseppe Scrivano  <gscrivano@gnu.org>
56
57         * convert.c: Include "iri.h".
58         (convert_links_in_hashtable): Parse the url, if
59         necessary, before check if it is present in the dowloaded url
60         map.
61         Reported by: <sk.random@gmail.com>.
62
63 2010-08-09  Giuseppe Scrivano  <gscrivano@gnu.org>
64
65         Fix a problem with HTTP/1.0 proxies.
66         * http.c (gethttp): Specify the connection header when keep alive
67         connections are not used.
68
69         Use persistent connections with proxies supporting them.
70         * http.c (gethttp): Specify Proxy-Connection to the HTTP proxy.
71
72 2010-08-06  Giuseppe Scrivano  <gscrivano@gnu.org>
73
74         * css-url.c (get_uri_string): Skip empty urls.
75
76 2010-07-25  John Trengrove  <jtrengrove@gmail.com> (tiny change)
77
78         * ftp.h: Added enum `parsetype'.  Modified struct to hold parsetype.
79
80         * ftp-ls.c (ftp_parse_unix_ls): Default to TT_DAY. Change to TT_HOUR_MIN
81         if hours/minutes parsed.
82         (ftp_parse_winnt_ls): Default to TT_HOUR_MIN.
83         (ftp_parse_vms_ls): Default to TT_HOUR_MIN.
84         (ftp_index): Print only if fileinfo struct value ttype set to TT_HOUR_MIN.
85
86 2010-07-30  Giuseppe Scrivano  <gscrivano@gnu.org>
87
88         * html-url.h (struct map_context): Remove member `tail'.
89
90         * html-url.c (append_url): Append the new url ordered by `position'.
91         (get_urls_html): Do not initialize `ctx.tail'.
92
93         * css-url.c (get_urls_css_file): Do not initialize `ctx.tail'.
94
95 2010-07-29  Giuseppe Scrivano  <gscrivano@gnu.org>
96
97         * gnutls.c (wgnutls_peek): Don't read more data if the buffered peek
98         data is sufficient.
99
100 2010-07-28  Giuseppe Scrivano  <gscrivano@gnu.org>
101
102         * http.h (http_loop): Add new argument `original_url'
103         * http.c (http_loop): Add new argument `original_url'.  Use
104         `original_url' to get a filename if `trustservernames' is false.
105
106         * init.c (commands): Add "trustservernames".
107
108         * options.h (library): Add variable `trustservernames'.
109
110         * main.c (option_data): Add trust-server-names.
111         (print_help): Describe --trust-server-names.
112
113         * retr.c (retrieve_url): Pass new argument to `http_loop'.
114
115 2010-07-20  Alan Jenkins <alan-jenkins@tuffmail.co.uk> (tiny change)
116
117         * http.c (gethttp): Check content-length was set before trying to
118         compare it with the already downloded filesize.
119
120 2010-07-20  Leonid Petrov <nouser@lpetrov.net>
121
122         * ftp.c (getftp): Don't attempt to retrieve the file if it is already
123         completely.
124         (ftp_loop_internal): Force the length to be zero for symlinks.
125
126 2010-07-18  Giuseppe Scrivano  <gscrivano@gnu.org>
127
128         * http.c (gethttp): If -N is used, don't exit immediately if the content
129         length is less or equal than the existing file size.  Specify "Range"
130         only if -N is not used.
131         Reported by: Caleb Cushing <xenoterracide@gmail.com>.
132
133 2010-07-14  Giuseppe Scrivano  <gscrivano@gnu.org>
134
135         * ftp.c (max): Remove definition.
136         (getftp): New variable `got_expected_bytes'.  Let `expected_bytes' be
137         the value SIZE returns, otherwise use the bytes count returned by RETR.
138         Suggested by Daniel Stenberg <daniel@haxx.se>.
139
140 2010-07-14  Giuseppe Scrivano  <gscrivano@gnu.org>
141
142         * ftp.c (max): Add definition.
143         (getftp): Consider for `expected_bytes' the greatest value between the
144         bytes count returned by SIZE and the bytes count returned by RETR.
145         Reported by: Jozua <jozua@sparky.za.net>.
146
147 2010-07-11  Giuseppe Scrivano  <gscrivano@gnu.org>
148
149         * http.c (http_loop): New variable `force_full_retrieve'.  If the remote
150         file is newer that the local one then inhibit -c.
151         Reported by: Caleb Cushing <xenoterracide@gmail.com>.
152
153 2010-07-09  Giuseppe Scrivano  <gscrivano@gnu.org>
154
155         * css-url.c (get_urls_css_file): Use `wget_read_file' instead of
156         `read_file'.  Use `wget_read_file_free' instead of `read_file_free'.
157         * convert.c (convert_links): Likewise.
158         * html-url.c (get_urls_html, get_urls_file): Likewise.
159         * res.c (res_parse_from_file): Likewise.
160
161         * utils.h: Rename `read_file' to `wget_read_file'.  Rename
162         `read_file_free' to `wget_read_file_free'.
163
164         * utils.c (wget_read_file): Renamed from `read_file'.
165         (wget_read_file_free): Renamed from `read_file_free'.
166
167 2010-07-05  Giuseppe Scrivano  <gscrivano@gnu.org>
168
169         * gnutls.c (ssl_init): New local variables `ca_directory' and `dir'.
170         Load default root certificates under the `ca_directory' directory.
171
172 2010-07-03  Giuseppe Scrivano  <gscrivano@gnu.org>
173
174         * gnutls.c (ssl_connect_wget): New local variable `allowed_protocols'.
175         Honor the --secure-protocol flag.
176
177 2010-06-20  Giuseppe Scrivano  <gscrivano@gnu.org>
178
179         * main.c (print_help): Fix help string for --random-wait.  Its range is
180         [0.5*wait, 1.5*wait) not [0, 2*wait).
181         Reported by: Tom Mizutani <gombei1970@gmail.com>.
182
183 2010-06-15  Giuseppe Scrivano  <gscrivano@gnu.org>
184
185         * gnutls.c [WIN32]: Include "w32sock.h".
186         (FD_TO_SOCKET): Add definition.
187         (ssl_connect_wget): Get the real socket handle by FD_TO_SOCKET.
188         Define FD_TO_SOCKET if it is not yet defined.
189
190 2010-06-14  Giuseppe Scrivano  <gscrivano@gnu.org>
191
192         * gnutls.c: Include <stdlib.h>.
193         (struct wgnutls_transport_context): Remove `peekstart'.
194         (ssl_connect_wget): Renamed from `ssl_connect'.
195         (wgnutls_poll): New variable `ctx'.
196         (wgnutls_read): Don't use `ctx->peekstart'.
197         (wgnutls_peek): Likewise.  Don't attempt to read if there is not
198         ready data.
199
200 2010-06-14  Giuseppe Scrivano  <gscrivano@gnu.org>
201         * http.c (http_loop): Always send a HEAD request when -N is used
202         together with --content-disposition.
203         Reported by: Jochen Roderburg <Roderburg@Uni-Koeln.DE>.
204
205 2010-06-10  Muthu Subramanian K <muthusuba@gmail.com> (tiny change)
206
207         * http.c (http_loop): Increase `total_downloaded_bytes' by
208         `hstat.rd_size', not `hstat.len'.
209
210 2010-06-10  Giuseppe Scrivano  <gscrivano@gnu.org>
211
212         * main.c (print_version): Drop the current maintainer line.
213
214 2010-06-10  Giuseppe Scrivano  <gscrivano@gnu.org>
215
216         * Makefile.am (build_info.c): Generate the `build_info.c' file under
217         the build directory.
218         Patch by: Daniel Stenberg <daniel@haxx.se>.
219
220 2010-06-03  Giuseppe Scrivano  <gscrivano@gnu.org>
221
222         * http.c (http_loop): Do not send a HEAD request before the GET request
223         when --content-disposition is used.
224         Reported by: alex_wh@mail.ru.
225
226 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
227
228         * css.l: Use option "nounput".
229         (YY_NO_INPUT): Add macro definition.
230
231 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
232
233         * html-parse.c (map_html_tags): Fix condition for closed tag.  Handle
234         the case '>' is not specified after '/'.
235
236 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
237
238         * sysdep.h (_SVID_SOURCE): Remove definition.
239         (_BSD_SOURCE): Remove definition.
240
241 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
242
243         * recur.c (retrieve_tree): Remove variable `up_error_code'.
244
245         * iri.c (open_locale_to_utf8): Remove function.
246
247 2010-05-30  Giuseppe Scrivano  <gscrivano@gnu.org>
248
249         * html-parse.c (NAME_CHAR_P): Consider '<' an invalid character.
250         (advance_declaration): Close the tag if '<' is found.
251         (map_html_tags): Likewise.
252
253 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
254
255         * main.c (print_usage): Accept a new parameter `error'.
256         (main): Print diagnostic messages to stderr, not stdout.
257
258 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
259
260         * Makefile.am (wget_SOURCES): Remove `snprintf.c'.
261
262         * snprintf.c: Remove file.
263
264 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
265
266         * main.c (main): Exit with failure when -k is specified and -O is not
267         a regular file.
268
269 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
270
271         * http.c (gethttp): Consider new cookies retrieved when the
272         authorization fails.
273
274 2010-05-25  Giuseppe Scrivano  <gscrivano@gnu.org>
275
276         * host.c (sufmatch): Do not consider zero length entries.
277
278         * http.c (H_10X): New macro.
279         (gethttp): Silently ignore 1xx responses.
280
281 2010-05-24  Giuseppe Scrivano  <gscrivano@gnu.org>
282
283         * iri.h (dummy_iri): Define static.
284
285         * css-tokens.h (css_tokens): Remove variable.
286
287 2010-05-23  Giuseppe Scrivano  <gscrivano@gnu.org>
288
289         * http.c (http_atotm): Count the NUL character when copying the locale
290         string.
291         Reported by: Florian Weimer <fw@deneb.enyo.de>
292
293 2010-05-16  Giuseppe Scrivano  <gscrivano@gnu.org>
294
295         * Makefile.am (LDADD): Remove MD5_LDADD.
296         (MD5_LDADD): Remove definition.
297         (AM_CPPFLAGS): Remove MD5_CPPFLAGS.
298         (version.c): Remove dependency from MD5_LDADD.
299         (../md5/libmd5.a): Remove rule.
300
301         * ftp-opie.c: Include "md5.h".  Do not include "gen-md5.h".
302         (skey_response): New variable ctx.  Use md5 functions from the gnulib
303         module instead of functions defined previously in the "gen-md5.h" file.
304
305         * gen-md5.h: Remove file.
306         * gen-md5.c: Likewise.
307
308         * http.c: Include "md5.h".  Do not include "gen-md5.h".
309         (digest_authentication_encode): New variable ctx.  Use md5 functions
310         from the gnulib module instead of functions defined previously in the
311         "gen-md5.h" file.
312
313 2010-05-15  Giuseppe Scrivano  <gscrivano@gnu.org>
314
315         * Makefile.am: Quote any path using $(top_srcdir) or $(top_builddir).
316         (version.c): Remove dependency from configure.ac and Makefile.am.
317
318         * css.l: Include "wget.h".
319
320 2010-05-08  Giuseppe Scrivano  <gscrivano@gnu.org>
321
322         * Makefile.am: Update copyright years.
323
324         * cmpt.c: Likewise.
325
326         * connect.h: Likewise.
327
328         * convert.c: Likewise.
329
330         * convert.h: Likewise.
331
332         * cookies.c: Likewise.
333
334         * cookies.h: Likewise.
335
336         * css-tokens.h: Likewise.
337
338         * css-url.c: Likewise.
339
340         * css-url.h: Likewise.
341
342         * css.l: Likewise.
343
344         * exits.c: Likewise.
345
346         * exits.h: Likewise.
347
348         * ftp-basic.c: Likewise.
349
350         * ftp-ls.c: Likewise.
351
352         * ftp-opie.c: Likewise.
353
354         * ftp.c: Likewise.
355
356         * ftp.h: Likewise.
357
358         * gen-md5.c: Likewise.
359
360         * gen-md5.h: Likewise.
361
362         * gettext.h: Likewise.
363
364         * gnutls.c: Likewise.
365
366         * hash.c: Likewise.
367
368         * hash.h: Likewise.
369
370         * host.c: Likewise.
371
372         * host.h: Likewise.
373         * html-parse.c: Likewise.
374
375         * html-parse.h: Likewise.
376
377         * html-url.c: Likewise.
378
379         * html-url.h: Likewise.
380
381         * http-ntlm.c: Likewise.
382
383         * http-ntlm.h: Likewise.
384
385         * http.c: Likewise.
386
387         * http.h: Likewise.
388
389         * init.c: Likewise.
390
391         * init.h: Likewise.
392
393         * iri.c: Likewise.
394
395         * iri.h: Likewise.
396
397         * log.c: Likewise.
398
399         * log.h: Likewise.
400
401         * main.c: Likewise.
402
403         * mswindows.c: Likewise.
404
405         * mswindows.h: Likewise.
406
407         * netrc.c: Likewise.
408
409         * netrc.h: Likewise.
410
411         * openssl.c: Likewise.
412
413         * options.h: Likewise.
414         * progress.c: Likewise.
415
416         * progress.h: Likewise.
417
418         * ptimer.c: Likewise.
419
420         * ptimer.h: Likewise.
421
422         * recur.c: Likewise.
423
424         * recur.h: Likewise.
425
426         * res.c: Likewise.
427
428         * res.h: Likewise.
429
430         * retr.c: Likewise.
431
432         * retr.h: Likewise.
433
434         * spider.c: Likewise.
435
436         * spider.h: Likewise.
437
438         * ssl.h: Likewise.
439
440         * sysdep.h: Likewise.
441
442         * test.c: Likewise.
443
444         * test.h: Likewise.
445
446         * url.c: Likewise.
447
448         * url.h: Likewise.
449
450         * utils.c: Likewise.
451
452         * utils.h: Likewise.
453
454         * wget.h: Likewise.
455
456 2010-05-07  Giuseppe Scrivano  <gscrivano@gnu.org>
457
458         * gnutls.c (wgnutls_close): Use always `close', not `closesocket'.
459
460         * openssl.c (openssl_close): Use always `close', not `closesocket'.
461         (ssl_connect_wget): Get the real socket handle by FD_TO_SOCKET.
462         Define FD_TO_SOCKET if it is not yet defined.
463
464         * Makefile.am (libunittest_a_CPPFLAGS): Add -I$(top_builddir)/lib.
465
466         * mswindows.h: Always include <winsock2.h> and <ws2tcpip.h>.  Do not
467         include <winsock.h>.
468         [! INHIBIT_WRAP]: Remove macro's socket, bind, connect, accept, recv,
469         send, select, getsockname, getpeername, setsockopt, closesocket.
470         Remove wrapped_socket, wrapped_bind, wrapped_connect, wrapped_listen,
471         wrapped_accept, wrapped_recv, wrapped_send, wrapped_select,
472         wrapped_getsockname, wrapped_getpeername, wrapped_setsockopt,
473         wrapped_closesocket prototypes.
474
475         * mswindows.c:  Remove wrapped_socket, wrapped_bind, wrapped_connect,
476         wrapped_listen, wrapped_accept, wrapped_recv, wrapped_send,
477         wrapped_select, wrapped_getsockname, wrapped_getpeername,
478         wrapped_setsockopt, wrapped_closesocket functions.  Remove WRAP macro.
479
480         * host.h [WINDOWS]: Include <winsock2.h> not <winsock.h>.
481
482         * connect.c: Include <sys/socket.h> and <sys/select.h> on any platform,
483         gnulib ensures they exist.  Remove `read', `write', `close' macros.
484
485         * Makefile.am: Copy build_info.c.in only if we are working in a VPATH.
486         (AM_CPPFLAGS): Add directory with generated gnulib files.
487
488 2010-05-06  Giuseppe Scrivano  <gscrivano@gnu.org>
489
490         * Makefile.am (build_info.c): Generate build_info.c in the builddir,
491         not srcdir.
492
493 2010-05-05  Giuseppe Scrivano  <gscrivano@gnu.org>
494
495         * http.c (gethttp): Give a nicer message on a malformed status line.
496
497 2010-05-04  Giuseppe Scrivano  <gscrivano@gnu.org>
498
499         * http.c (gethttp): Check `resp_status' return code and handle
500         errors.
501
502 2010-05-01  Giuseppe Scrivano <gscrivano@gnu.org>
503
504         * http.c (request_send): Specify 1.1 as HTTP version for requests.
505         (skip_short_body): Accept new parameter `chunked'.  New variable
506         `remaining_chunk_size'.  Handle the chunked transfer encoding.
507         (gethttp): New variable `chunked_transfer_encoding`.  Set `keepalive'
508         by default to true.  Check if the server is using the chunked transfer
509         encoding.
510
511         * retr.h: Define `rb_chunked_transfer_encoding'.
512
513         * retr.c (fd_read_body): New variable `chunked'.  New variable
514         `remaining_chunk_size'.  Handle the chunked transfer encoding.
515
516 2010-03-04  Steven Schubiger  <stsc@member.fsf.org>
517
518         * ftp.c (ftp_loop_internal): Omit input file from being
519         deleted after retrieval.
520
521         * retr.c (input_file_url): New function.
522
523         * retr.h: Add declaration for input_file_url.
524
525 2010-03-02  Steven Schubiger  <stsc@member.fsf.org>
526
527         * retr.c (retrieve_from_file): Improve checking for a URL
528         by invoking url_valid_scheme instead of url_has_scheme.
529
530         * url.c (url_valid_scheme): New function.
531
532         * url.h: Add declaration for url_valid_scheme.
533
534 2010-03-02  Steven Schubiger  <stsc@member.fsf.org>
535
536         * retr.c (retrieve_from_file): Free memory of input file.
537
538 2010-03-01  Steven Schubiger  <stsc@member.fsf.org>
539
540         * retr.c (retrieve_url): Retrieve the local filename from ftp_loop.
541         (retrieve_from_file): Return if there's no input file.
542
543         * ftp.c (ftp_loop_internal): Duplicate the local filename into
544         retrieve_url's scope when a valid reference is being passed.
545         (ftp_loop): Call ftp_loop_internal here with passing a
546         reference to the local filename, elsewhere with NULL.
547
548         * ftp.h: Adjust declaration of ftp_loop.
549
550 2010-01-27  Paul Townsend  <aab@purdue.edu>  (tiny change)
551
552         * retr.c (fd_read_body): Be sure to measure timer when time has
553         elapsed, too, not just when we've made progress.
554
555 2010-01-13  Micah Cowan  <micah@cowan.name>
556
557         * openssl.c: Fixed some mixed declarations-and-code.
558
559 2010-01-09  Micah Cowan  <micah@cowan.name>
560
561         * init.c, main.c, http.c, ftp.c, options.h: Renamed
562         --no-match-server-timestamps to --no-use-server-timestamps, and
563         add it to print_help.
564
565 2010-01-09  David Holman  <holman.david@gmail.com>  (tiny change)
566
567         * init.c, main.c, http.c, ftp.c, options.h: Added support for
568         --no-match-server-timestamps.
569
570 2009-12-03  Peter Rosin  <peda@lysator.liu.se>
571
572         * snprintf.c (dopr): Output %p as unsigned.
573
574 2010-01-09  Jeremy Olexa  <darkside@gentoo.org>  (tiny change)
575
576         * init.c: Deal with systems which provide PATH_MAX in
577         sys/param.h rather than limits.h.
578
579 2009-10-09  Steven Schweda  <sms@antinode.info>
580
581         * utils.c: Added characters " : \ | to the list of normal
582         caret-escaped (ODS5) characters in the char_prop[] table.
583
584 2009-09-22  Arvind Jamuna Dixit  <ardsrk@gmail.com>
585
586         * http.c (extract_param, parse_content_disposition): Support
587         RFC 2231 while parsing Content-Disposition header
588
589 2009-10-24  Petr Pisar  <petr.pisar@atlas.cz>
590
591         * openssl.c: Implement support for (multiple) subjectAltNames in
592         X509 certificates, not just the commonName.
593
594 2009-10-09  Micah Cowan  <micah@cowan.name>
595
596         * main.c: Fix declaration of compiled_features.
597
598         * build_info.c.in: Adapt to new input format. Added a check for
599         large-file support. Replaced the "openssl" and "gnutls"
600         advertisements with a single "ssl/foo" advertisement.
601
602 2009-09-30  Micah Cowan  <micah@cowan.name>
603
604         * sysdep.h: Unconditionally include stdbool.h (gnulib has it for
605         systems that don't supply it.)
606
607         * vms.c: Added functions vms_basename(), used to extract the
608         bare executable name from argv[0], and vms_getpass(), a
609         VMS-specific replacement for GNU getpass().
610
611          vms.c: Added global string constants: compilation_string
612         (NULL), link_string (NULL), and version_string (real).
613
614 2009-09-24  Micah Cowan  <micah@cowan.name>
615
616         * vms.c: Moved from vms/vms.c.
617
618         * sysdep.h: Use proper prototypes for snprintf, vsnprintf (thanks
619         to Steven Schweda).
620
621 2009-09-24  Steven Schweda  <sms@antinode.info>
622
623         * main.c (print_version): Remove VMS-conditional build info
624         string; the new VMS builders use OS_TYPE.
625
626         * ftp.c (getftp): Fix accidental use of target -> targ.
627
628 2009-09-24  Micah Cowan  <micah@cowan.name>
629
630         * host.c (host_errstr): host_errstr should return const char *.
631
632 2009-09-22  Micah Cowan  <micah@cowan.name>
633
634         * Makefile.am (version.c): Explicitly tell Mercurial where the
635         top-source repository should be, so it doesn't accidentally use
636         the repository for a containing directory (for instance, if the
637         user's home directory is managed by a Mercurial repo). Also
638         ensures we find the repository, even if the build directory is
639         outside the source directory.
640
641         * wget.h: define WINDOWS if _WIN32 or __WIN32__ is defined, but
642         not __CYGWIN__.
643
644         * mswindows.c (xsleep): Check for availability of the sleep
645         function, in addition to the usleep function.
646         (get_winsock_error, windows_strerror): Removed (gnulib already
647         supplies this functionality).
648
649         * mswindows.h [NEED_GAI_STRERROR]: define gai_strerror
650         to (gnulib's) strerror, rather than windows_strerror. Removed
651         error macro definitions provided by gnulib.
652         (windows_strerror): Removed (gnulib already supplies this
653         functionality).
654
655         * host.c: Don't declare h_errno when building on Windows.
656
657         * Makefile.am (LIBS): Added @W32LIBS@.
658         (EXTRA_wget_SOURCES): Removed (it's in LIBOBJ now).
659         (version.c): Removed dependency on $(LDADD), since it may include
660         dependencies that are not part of the Wget sources (-lwsock32, for
661         instance).
662
663         * openssl.c (ssl_check_certificate): Avoid reusing the same buffer
664         space for successive quoted arguments. Thanks to Steven Schweda
665         for pointing out the problem.
666
667 2009-09-21  Micah Cowan  <micah@cowan.name>
668
669         * progress.c (update_speed_ring): "the the" -> "the".
670
671         * css-url.c, iri.c, mswindows.c: Removed assert.h inclusion (not
672         using it).
673
674 2009-09-11  Steven Schweda  <sms@antinode.info>
675
676         * utils.c, utils.h (fopen_excl): Make second argument an int,
677         rather than a bool (so it can handle the appropriate VMS version
678         of the flag).
679
680         * main.c (print_version): Don't print LOCALEDIR unless NLS is
681         enabled.
682
683         * http.c (gethttp): Pass FOPEN_BIN_FLAG, instead of true.
684
685         * ftp.c (ftp_retrieve_glob): Cast strcmp to assign to cmp, for a
686         silly HP build environment.
687
688 2009-09-08  Steven Schubiger  <stsc@member.fsf.org>
689
690         * main.c, init.c: Mark the --preserve-permissions and
691         --html-extension option as deprecated.
692
693 2009-09-06  Micah Cowan  <micah@cowan.name>
694
695         * ftp.c (getftp, ftp_loop_internal): Separate "len" input/output
696         parameter (with different meanings for input and output), into two
697         separate parameters, one input (passed_expected_bytes) and one
698         output (qtyread). Fixes bug #26870.
699
700 2009-09-05  Steven Schubiger  <stsc@member.fsf.org>
701
702         * retr.h: Declare set_local_file() to avoid build warnings.
703
704 2009-09-05  Gisle Vanem  <gvanem@broadpark.no>
705
706         * connect.c, init.c, main.c, openssl.c, options.h:  Replace
707         "ifdef MSDOS" with "ifdef USE_WATT32" since DOS-targets in fact
708         use the Watt-32 tcp/ip stack.
709
710 2009-09-04  Micah Cowan  <micah@cowan.name>
711
712         * Makefile.am: Move build_info.c to wget_SOURCES from
713         nodist_wget_SOURCES, reduce dependencies, and invoke build_info.pl
714         in its new home, $(top_srcdir)/build-aux.
715
716 2009-09-03  Micah Cowan  <micah@cowan.name>
717
718         * ftp-ls.c (ftp_parse_vms_ls): Replace use of localtime_r with
719         localtime, as not all platforms have localtime_r.
720
721         * Makefile.am (wget_SOURCES): Rearranged some of the file order,
722         so .c files and .h files are apart. Added gettext.h, so that it
723         shows up in the dist.
724
725 2009-09-02  Micah Cowan  <micah@cowan.name>
726
727         * gettext.h: Refreshed from gettext 0.17.
728
729         * test.c: Added definition of program_name variable, required by
730         lib/error.c (libgnu.a). Doesn't cause problems until you try to
731         build on a non-GNU system...
732
733         * build_info.c.in: Removed useless "+gettext" feature ad.
734
735 2009-08-29  Steven Schubiger  <stsc@member.fsf.org>
736
737         * convert.c (local_quote_string): Percent-encode semicolons
738         in local file strings.
739
740 2009-08-27  Micah Cowan  <micah@cowan.name>
741
742         * wget.h (uerr_t): added new VERIFCERTERR code for SSL certificate
743         problems. Marked exit codes that are defined but never used (at
744         least, the ones I could find).
745
746         * retr.c, retr.h (retrieve_url): Added a new boolean argument to
747         determine whether an exit status should be recorded.
748         (retrieve_from_file): Adjust to new retrieve_url signature.
749
750         * res.c (res_retrieve_file): Don't have retrieve_url record an
751         exit status for robots.txt.
752
753         * recur.c (retrieve_tree): Adjust to new retrieve_url signature.
754
755         * main.c (main): Use the exit status stored by retrieve_url.
756
757         * http.c (gethttp): Distinguish certificate verification problems
758         from SSL connection issues.
759         (http_loop): Handle newly-created VERIFCERTERR error code.
760
761         * exits.c, exits.h: Newly added.
762
763         * Makefile.am (wget_SOURCES): Add exits.c and exits.h.
764
765 2009-08-27  Micah Cowan  <micah@cowan.name>
766
767         * http.c (gethttp): Make sure Wget heeds cookies when they
768         are sent with a 401 response; or any other sort of response for
769         that matter (#26775).
770
771 2009-08-19  Micah Cowan  <micah@cowan.name>
772
773         * openssl.c (ssl_check_certificate): Only warn about an attack if
774         the hostname would otherwise have matched. Also some formatting
775         cleanup.
776
777 2009-08-19  Joao Ferreira  <joao@joaoff.com>
778
779         * openssl.c (ssl_check_certificate): Detect embedded NUL
780         characters in the SSL certificate common name.
781
782 2009-08-17  Tony Lewis  <tlewis@exelana.com>
783
784         * http.c (gethttp): Ensure that we parse Content-Length before we
785         attempt to refer to its value. Without this fix, NTLM support was
786         completely buggered. #27192
787
788 2009-08-09  Michael Baeuerle  <michael.baeuerle@gmx.net>
789
790         * ftp.c: #include <strings.h> for strcasecmp.
791
792 2009-07-28  Micah Cowan  <micah@cowan.name>
793
794         * main.c (option_data): Rename --html-extension to
795         --adjust-extension.
796         (print_help): Ditto.
797
798         * options.h (struct option): Rename html_extension to
799         adjust_extension.
800         * http.c (gethttp): Ditto.
801         * convert.c (local_quote_string): Ditto.
802
803         * init.c (commands): Add "adjustextension", and reflect rename
804         change for opt.adjust_extension, for both "adjustextension" and
805         "htmlextension".
806
807 2009-07-27  Micah Cowan  <micah@cowan.name>
808
809         * options.h (struct options): Added restrict_files_nonascii
810         boolean field.
811
812         * url.c (FILE_CHAR_TEST): Add check for chars outside the ASCII
813         range.
814
815         * init.c (defaults): Add restrict_files_nonascii to initialization.
816         (cmd_spec_restrict_file_names): Allow parsing of "ascii" keyword.
817
818 2009-07-27  Marcel Telka  <marcel@telka.sk>
819
820         * iri.c (do_conversion): Typo: invalide -> invalid
821
822 2009-07-27  Petr Pisar  <petr.pisar@atlas.cz>
823
824         * main.c (print_help): Fixed a couple typos.
825
826 2009-07-26  Micah Cowan  <micah@cowan.name>
827
828         * main.c (option_data): Rename --locale option to --local-encoding
829         (print_help): Document --no-iri, --local-encoding, and
830         --remote-encoding, within usage message. Remove defunct
831         --preserve-permissions.
832
833 2009-07-23  Micah Cowan  <micah@cowan.name>
834
835         * progress.c (get_eta): Change "Translation note" in comment to
836         "TRANSLATORS", so it actually appears in wget.pot.
837
838 2009-07-06  Micah Cowan  <micah@cowan.name>
839
840         * main.c (print_help): Improve documentation of --base.
841
842 2009-07-05  Micah Cowan  <micah@cowan.name>
843
844         * html-url.c (tag_handle_meta): Handle meta name="robots"
845         properly: deal with whitespace, commas after...
846
847         * netrc.c (parse_netrc): Rename local-scope variable "quote" to
848         "qmark", to avoid conflict with the function name.
849
850 2009-07-05  Petr Pisar  <petr.pisar@atlas.cz>
851
852         * main.c (print_version): Mark initial line for translation, along
853         with (env), (user), and (system). Change copyright year to 2009.
854
855         * http.c (http_loop): Space after colon.
856
857         * gnutls.c (ssl_check_certificate): Use quote function, rather
858         than explicit quotes.
859
860 2009-07-05  Micah Cowan  <micah@cowan.name>
861
862         * Makefile.am (version.c): Add dependency on configure.ac.
863
864         * iri.c: Mark some strings for translation.
865
866 2009-07-04  Steven Schweda  <sms@antinode.info>
867
868         * wget.h (ORIG_SFX): Macro added, to supply an alternative "_orig"
869         suffix on VMS.
870
871         * connect.c, host.c, host.h, main.c: Include "vms_ip.h" rather
872         than <netdb.h> on VMS systems.
873
874         * convert.c (write_backup_file): Use "_orig" rather than ".orig"
875         on VMS.
876
877         * ftp-basic.c (ftp_list): Don't use LIST -a on VMS servers.
878
879         * ftp.c [__VMS]: Include "vms.h"
880         * ftp.c (getftp): Disable some unhelpful "for VMS" code. Pass the
881         OS type to ftp_list.
882         (getftp) [__VMS]: Alter the filename as required, and invoke fopen
883         with extra optional arguments.
884         (ftp_retrieve_list): Set permissions before setting the times.
885
886         * ftp-ls.c [__VMS]: Various improvements.
887
888         * http.c (SET_USER_AGENT): Added. Include operating-system info in
889         the User-Agent header.
890         (gethttp): Use ORIG_SFX macro.
891         (gethttp) [__VMS]: invoke fopen with extra arguments to
892         communicate file type.
893         (http_loop): Add cast to time_t.
894
895         * init.c (wgetrc_user_file_name) [__VMS]: Adjustments for where to
896         find the .wgetrc.
897
898         * log.c: Adjustments to improve handling of log files on VMS.
899
900         * main.c [__VMS]: Added --ftp-stmlf option (and associated
901         documentation). Adjust description of backup-suffixes, as they now
902         differ for VMS.
903         (print_help, print_version): Include OS type in version
904         information.
905         (main) [__VMS]: Invoke fopen with extra options, to specify file
906         type information.
907
908         * netrc.c (search_netrc) [__VMS]: Fix .netrc-finding.
909
910         * openssl.c, openssl.h (ssl_connect_wget): Renamed from ssl_connect.
911
912         * options.h (struct options): Add ftp_stmlf field.
913
914         * retr.c (write_data) [__VMS]: Avoid fflush.
915
916         * url.c [__VMS]: Include vms.h.
917         * url.c (url_file_name) [__VMS]: Handle naming as required for VMS.
918
919         * utils.c [__VMS]: Include vms.h. Various added facilities for VMS
920         needs.
921
922 2009-07-04  Micah Cowan  <micah@cowan.name>
923
924         * main.c (print_version): Allow localization of the version-info
925         labels, eschew attempts at alignment (which is complicated when
926         handling translated strings), and avoid using printf() with
927         variable-stored format strings that lack conversion
928         specifications.
929         (format_and_print_line): For similar reasons, don't calculate
930         line-continuation tabulation based on the number of bytes in a
931         string.
932
933 2009-07-04  Steven Schubiger  <stsc@member.fsf.org>
934
935         * url.c (url_parse): If an URL scheme is invalid, distinguish
936         between an unsupported or missing scheme.
937
938         * url.c: Add a "missing scheme" entry to parse_errors.
939
940 2009-07-03  Micah Cowan  <micah@cowan.name>
941
942         * iri.h (iri_dup): Provide macro definition for when IRIs are
943         disabled.
944
945         * Makefile.am (LIBS): Added @LIBICONV@.
946         (wget_SOURCES): Added iri.h.
947         (EXTRA_wget_SOURCES): Added iri.c, so it gets packaged even if IRI
948         support was disabled.
949
950 2009-07-02  Micah Cowan  <micah@cowan.name>
951
952         * recur.c (url_enqueue): Quote enqueue/dequeue debug messages.
953
954         * html-url.c (append_url): Change "merge()" quoting style from
955         locale_quoting_style to escape_quoting_style.
956
957 2009-07-01  Micah Cowan  <micah@cowan.name>
958
959         * retr.c (retrieve_url): Use the existing "redirect" label,
960         instead of superfluous "second_try". Removed no-longer-accurate
961         debug statement. Use the "newloc" parameter to store the fallback
962         URL, when IRI version was rejected.
963
964         * recur.c (retrieve_tree): Always use the parsed URL for tracking
965         the Referer, since that's the one we actually requested (if
966         there's a difference in terms of percent-encodings and such).
967
968 2009-07-01  Steven Schubiger  <stsc@member.fsf.org>
969
970         * Makefile.am: Add a rule to generate build_info.c and list
971         the build_info.c.in file in EXTRA_DIST. Adjust elsewhere
972         where needed.
973
974         * build_info.c: Remove this static source file.
975
976         * build_info.c.in: Data for generation of build_info.c.
977
978 2009-06-29  Micah Cowan  <micah@cowan.name>
979
980         * html-url.c (append_url): Quote some more arguments that might
981         contain characters that are inappropriate to display for the
982         current locale.
983
984         * retr.c (retrieve_from_file): Be sure to pass iri information
985         when parsing an input-fle url, and be sure to hand a clean iri
986         struct, off to retrieve_tree and retrieve_url.
987
988         * iri.c, iri.h (iri_dup): Added.
989
990         * retr.c (retrieve_url): Re-parse for IRI fallback.
991
992         * main.c (main): Set up iri before the url_parse invocation (so we
993         can use it).
994
995 2009-06-20  Jay Krell  <jay.krell@cornell.edu>
996
997         * sysdep.h (_ALL_SOURCE): (small change) Define the _ALL_SOURCE
998         macro on INTERIX systems. (I switched the location from ftp.c to
999         sysdep.h --mjc)
1000
1001 2009-06-15  Micah Cowan  <micah@cowan.name>
1002
1003         * ftp.c (getftp): If we can't accept the connection, return
1004         CONERROR, not whatever the contents of err happens to be. Fixes
1005         bug #25015.
1006
1007         * retr.c (fd_read_body): Make both args to progress_create
1008         consistent, resulting in an accurate progress display. Fixes bug
1009         #24948.
1010
1011 2009-06-14  Micah Cowan  <micah@cowan.name>
1012
1013         * Makefile.am (wget_SOURCES): css-tokens.h needs to ship with
1014         dist, too.
1015
1016 2009-06-13  Micah Cowan  <micah@cowan.name>
1017
1018         * init.c: Rename setval_internal_wrapper to setval_internal_tilde,
1019         ensure we don't "replace" the tilde unless it's actually
1020         present. Clean up some minor GNU style issues.
1021
1022 2009-06-13  Julien Pichon  <julienpichon7@gmail.com>
1023
1024         * init.c: Handle tilde-expansion in wgetrc commands, without
1025         resorting to setting/unsetting globals to change behavior in one
1026         call location.
1027
1028 2009-06-12  Micah Cowan  <micah@cowan.name>
1029
1030         * host.c: Include <sys/types.h> before <sys/socket.h>. Not
1031         required by POSIX any more, but some older systems (such as
1032         FreeBSD 4.1) still need it, and it doesn't seem like it could
1033         hurt...
1034
1035         * build_info.c (library): Handle "https" as a feature in its own
1036         right, apart from "gnutls" and "openssl".
1037
1038         * host.c: Declare h_errno if no declaration is provided. Idea
1039         thanks to Maciej W. Rozycki.
1040
1041 2009-06-11  Xin Zou  <zouxin2008@gmail.com>
1042
1043         * http.c (gethttp): Fix some memory leaks.
1044
1045 2009-06-11  Micah Cowan  <micah@cowan.name>
1046
1047         * http.c (http_atotm): Handle potential for setlocale's return
1048         value to be static storage. Thanks to Benjamin Wolsey
1049         <bwy@benjaminwolsey.de>.
1050
1051         * sysdep.h: Need NAMESPACE_TWEAKS on non-Linux glibc-based
1052         systems, too. Thanks to Robert Millan.
1053
1054 2009-05-28  Steven Schubiger  <stsc@member.fsf.org>
1055
1056         * ftp.c (ftp_get_listing): Update the "listing file"
1057         string after calling ftp_loop_internal().
1058
1059 2009-05-27  Steven Schubiger  <stsc@member.fsf.org>
1060
1061         * ftp.c (ftp_get_listing): Duplicate the "listing file"
1062         string to avoid memory corruption when FOPEN_EXCL_ERR is
1063         encountered.
1064
1065 2009-05-17  Steven Schubiger  <stsc@member.fsf.org>
1066
1067         * progress.c (eta_to_human_short): Fix the remaining hours
1068         to be displayed. Spotted by Tadeu Martins (#26411).
1069
1070 2009-04-24  Micah Cowan  <micah@cowan.name>
1071
1072         * hash.c: Change stdint.h inclusion to use HAVE_STDINT_H, not C99
1073         check.
1074
1075         * connect.c: stdint.h inclusion added.
1076
1077         Thanks to Markus Duft <mduft@gentoo.org> for a similar patch.
1078
1079 2009-04-20  Micah Cowan  <micah@cowan.name>
1080
1081         * Makefile.am (version.c): Fix unportable use of "echo -n".
1082
1083 2009-04-13  Steven Schubiger  <stsc@member.fsf.org>
1084
1085         * ftp.c (ftp_retrieve_list): Move the duplicated code that
1086         determines the local file to a function.
1087
1088         * http.c (http_loop): Likewise.
1089
1090         * retr.c (set_local_file): New function.
1091
1092 2009-04-11  Steven Schubiger  <stsc@member.fsf.org>
1093
1094         * init.c (initialize): Run a custom SYSTEM_WGETRC when
1095         provided as an environment variable.
1096
1097 2009-02-27  Gisle Vanem  <gvanem@broadpark.no>
1098
1099         * main.c (main): "freopen (NULL,.." causes an assertion in MSVC
1100         debug-mode.  I.e. NULL isn't legal. But the "CONOUT$" device works
1101         fine.
1102
1103 2009-02-27  Steven Schubiger  <stsc@member.fsf.org>
1104
1105         * ftp.c (ftp_loop_internal): Don't claim for FTP retrievals
1106         when writing to standard output either that the document
1107         has been saved. Addresses bug #20520 again.
1108
1109 2009-02-21  Steven Schubiger  <stsc@member.fsf.org>
1110
1111         * http.c (http_loop): When a document is written to
1112         standard output, don't claim it has been saved to a file.
1113         Addresses bug #20520.
1114
1115 2009-02-18  Steven Schubiger  <stsc@members.fsf.org>
1116
1117         * recur.h: Remove the dangling declaration for recursive_cleanup().
1118
1119 2009-02-01  Gerardo E. Gidoni  <gerel@gnu.org>
1120
1121         * main.c, recur.c, recur.h, res.c, retr.c, retr.h: restructured code to
1122         avoid multiple 'url_parse' calls.
1123
1124 2008-11-13  Micah Cowan  <micah@cowan.name>
1125
1126         * http.c (gethttp): Don't do anything when content-length >= our
1127         requested range.
1128
1129 2008-11-27  Saint Xavier  <wget@sxav.eu>
1130
1131         * http.c (gethttp): Move authentication code before filename
1132         allocation avoiding fallbacking on default filename because
1133         "Content-Disposition" header wasn't present before authentcation
1134         has been completed. Fixes bug #24862.
1135
1136 2008-11-16  Steven Schubiger  <stsc@members.fsf.org>
1137
1138         * main.c: Declare and initialize the numurls counter.
1139
1140         * ftp.c, http.c: Make the counter visible here and use it.
1141
1142         * options.h: Remove old declaration from options struct.
1143
1144 2008-11-15  Steven Schubiger  <stsc@members.fsf.org>
1145
1146         * init.c (defaults): Set default waitretry value.
1147
1148 2008-11-14  Steven Schubiger  <stsc@members.fsf.org>
1149
1150         * main.c (format_and_print_line): Use a custom format
1151         string for printing leading spaces.
1152
1153 2008-11-12  Micah Cowan  <micah@cowan.name>
1154
1155         * ftp-ls.c (ftp_index): HTML-escape dir name in title, h1, a:href.
1156
1157 2008-11-12  Alexander Belopolsky  <alexander.belopolsky@gmail.com>
1158
1159         * url.c, url.h (url_escape_unsafe_and_reserved): Added.
1160
1161         * ftp-ls.c (ftp_index): URL-escape, rather than HTML-escape, the
1162         filename appearing in the link.
1163
1164 2008-11-12  Steven Schubiger  <stsc@members.fsf.org>
1165
1166         * main.c (print_version): Hand the relevant
1167         xstrdup/xfree calls back to format_and_print_line().
1168
1169 2008-11-11  Steven Schubiger  <stsc@members.fsf.org>
1170
1171         * main.c (format_and_print_line): Move both the memory
1172         allocating and freeing bits upwards to print_version().
1173
1174 2008-11-10  Saint Xavier  <wget@sxav.eu>
1175
1176         * http.c: Make --auth-no-challenge works with user:pass@ in URLs.
1177
1178 2008-11-05  Micah Cowan  <micah@cowan.name>
1179
1180         * ftp.c (print_length): Should print humanized "size remaining"
1181         only when it's at least 1k.
1182
1183 2008-10-31  Micah Cowan  <micah@cowan.name>
1184
1185         * main.c (print_version): Add information about the mailing list.
1186
1187 2008-10-31  Alexander Drozdov  <dzal_mail@mtu-net.ru>
1188
1189         * retr.c (fd_read_hunk): Make assert deal with maxsize == 0.
1190
1191         * ftp-ls.c (clean_line): Prevent underflow on empty lines.
1192
1193 2008-10-26  Gisle Vanem  <gvanem@broadpark.no>
1194
1195         * main.c (format_and_print_line): Put variables on top of
1196         blocks (not all compilers are C99). Add an extra '\n' if
1197         SYSTEM_WGETRC isn't defined and printed.
1198
1199 2008-09-09  Gisle Vanem  <gvanem@broadpark.no>
1200
1201         * url.c (url_error): Use aprintf, not asprintf.
1202
1203 2008-09-09  Micah Cowan  <micah@cowan.name>
1204
1205         * init.c (home_dir): Save the calculated value for home,
1206         to avoid duplicated work on repeated calls.
1207         (wgetrc_file_name) [WINDOWS]: Define and initialize home var.
1208
1209         * build_info.c, main.c: Remove unnecessary extern vars
1210         system_wgetrc and locale_dir.
1211
1212         * main.c: Define program_name for lib/error.c.
1213
1214 2008-09-02  Gisle Vanem  <gvanem@broadpark.no>
1215
1216         * mswindows.h: Must ensure <stdio.h> is included before
1217         we redefine ?vsnprintf().
1218
1219 2008-08-08  Steven Schubiger  <stsc@members.fsf.org>
1220
1221         * main.c, utils.h: Removed some dead conditional DEBUG_MALLOC code.
1222
1223 2008-08-03  Micah Cowan  <micah@cowan.name>
1224
1225         * main.c (print_help): Added --default-page.
1226
1227 2008-08-01  Joao Ferreira  <joao@joaoff.com>
1228
1229         * init.c, main.c, options.h, url.c: Added option --default-page
1230         to support alternative default names for index.html
1231
1232 2008-08-03  Micah Cowan  <micah@cowan.name>
1233
1234         * build_info.c, css-url.c: #include wget.h, not config.h.
1235
1236 2008-08-03  Steven Schubiger  <stsc@members.fsf.org>
1237
1238         * url.c, url.h (url_error): Better messages for unsupported
1239         schemes, especially https.
1240
1241         * html-url.c, recur.c, retr.c: Adjust to new url_error
1242         invocation, and free result.
1243
1244 2008-07-17  Steven Schubiger  <stsc@members.fsf.org>
1245
1246         * retr.c (retrieve_from_file): When given an URL as input file,
1247         use it as baseref if none was specified and treat the input file
1248         as HTML if its content type is text/html.
1249
1250         * init.c (cleanup): Free the memory associated with the base
1251         option (when DEBUG_MALLOC is defined).
1252
1253 2008-07-02  Xavier Saint  <wget@sxav.eu>
1254
1255         * iri.c, iri.h  : New function idn_decode() to decode ASCII
1256         encoded hostname to the locale.
1257
1258         * host.c : Show hostname to be resolved both in locale and
1259         ASCII encoded.
1260
1261 2008-06-28  Steven Schubiger  <stsc@members.fsf.org>
1262
1263         * retr.c (retrieve_from_file): Allow for reading the links from
1264         an external file (HTTP/FTP).
1265
1266 2008-06-26  Xavier Saint  <wget@sxav.eu>
1267
1268         * iri.c, iri.h : New functions locale_to_utf8() and
1269         idn_encode() adding basic capabilities of IRI/IDN.
1270
1271         * url.c : Convert URLs from locale to UTF-8 allowing a basic
1272         support of IRI/IDN
1273
1274 2008-06-25  Steven Schubiger  <stsc@members.fsf.org>
1275
1276         * ftp.c (getftp): When spidering a FTP URL, emit a diagnostic
1277         message if the remote file exists.
1278
1279 2008-06-24  Steven Schubiger  <stsc@members.fsf.org>
1280
1281         * http.c (http_loop): Replace escnonprint() occurence with
1282         a quotearg_style() call.
1283
1284 2008-06-24  Micah Cowan  <micah@cowan.name>
1285
1286         * ftp-ls.c (ftp_index): Don't assume time_t* is compatible with
1287         long*. Fixes crash on Windows, and probably other systems.
1288
1289 2008-06-22  Steven Schubiger  <stsc@members.fsf.org>
1290
1291         * http.c: Explicitly initialize and deallocate the message
1292         string used by the -nv --spider functionality.
1293
1294 2008-06-22  Steven Schubiger  <schubiger@gmail.com>
1295
1296         * http.c: Make -nv --spider include the file's name when it
1297         exists.
1298
1299 2008-06-22  Micah Cowan  <micah@cowan.name>
1300
1301         * Makefile.am (version.c): Fixed version string invocation so it
1302         once again can't result in unterminated strings, made all the
1303         string vars pointers-to-const, and moved line lengths
1304         below 80 (in Makefile.am, not in version.c).
1305
1306 2008-06-19  Xavier Saint  <wget@sxav.eu>
1307
1308         * iri.c, iri.h : New function check_encoding_name() as
1309         a preliminary encoding name check.
1310
1311         * main.c, iri.c : Make use of check_encoding_name().
1312
1313 2008-06-19  Xavier Saint  <wget@sxav.eu>
1314
1315         * iri.c : Include missing stringprep.h file and add a
1316         cast.
1317
1318         * init.c : set a default initial value for opt.enable_iri,
1319         opt.locale and opt.encoding_remote.
1320
1321 2008-06-19  Xavier Saint  <wget@sxav.eu>
1322
1323         * iri.c, iri.h : Add a new function find_locale() to find
1324         out the local system encoding.
1325
1326         * main.c : Make use of find_locale().
1327
1328 2008-06-19  Xavier Saint  <wget@sxav.eu>
1329
1330         * html-url.c : Add "content-type" meta tag parsing for
1331         retrieving page encoding.
1332
1333         * iri.h : Make no-op version of parse_charset() return
1334         NULL.
1335
1336 2008-06-16  Micah Cowan  <micah@cowan.name>
1337
1338         * http.c (http_loop): When hstat.len is higher than the
1339         successfully completed content's length, but it's because we
1340         _set_ it that way, don't abort.
1341
1342 2008-06-14  Xavier Saint  <wget@sxav.eu>
1343
1344         * iri.c, iri.h : New files.
1345
1346         * Makefile.am : Add files iri.h and conditional iri.c.
1347
1348         * build_info.c : Add compiled feature "iri".
1349
1350         * http.c : include iri.h and parse charset from Content-Type
1351         header.
1352
1353         * init.c, main.c, options.h : if an options isn't supported
1354         at compiled time, don't get rid off it and show a dummy
1355         message instead if they are used.
1356
1357 2008-06-13  Micah Cowan  <micah@cowan.name>
1358
1359         * build_info.c: ENABLE_NTLM, not HAVE_NTLM; distinguish OpenSSL
1360         from "ssl".
1361
1362 2008-06-13  Madhusudan Hosaagrahara <com.gmail.hrmadhu>
1363
1364         * Makefile.am, main.c, init.c, init.h, build_info.c: Adds build
1365         information to the --version command line option. Fixes bug
1366         #20636.
1367
1368 2008-06-01  Micah Cowan  <micah@cowan.name>
1369
1370         * main.c [WINDOWS]: Reopen stdout in binary mode, when -O - is
1371         given.
1372
1373 2008-05-31 Micah Cowan  <micah@cowan.name>
1374
1375         * html-url.c, http.c: Avoid casts in a couple spots.
1376
1377 2008-05-30 Henri Häkkinen  <henux@users.sourceforge.net>
1378
1379         * cookies.c, ftp-basic.c, hash.c, html-url.c, http-ntlm.c, http.c,
1380         init.c, log.c, main.c, progress.c, ptimer.c, spider.c, url.c,
1381         utils.c: Minor changes to silence warnings when using -Wall.
1382
1383 2008-05-26  Steven Schubiger  <schubiger@gmail.com>
1384
1385         * ftp.c (getftp): Replace last remaining invocation of escnonprint
1386         with gnulib quote.
1387
1388 2008-05-19  Micah Cowan  <micah@cowan.name>
1389
1390         * main.c (main): Password prompt should be done only once (not
1391         once per argument), and should be done prior to the background
1392         fork.
1393
1394 2008-05-17  Steven Schubiger  <schubiger@gmail.com>
1395
1396         * init.c (defaults): Set the preferred IP family to `none' by
1397         default.
1398
1399 2008-05-17  Kenny Parnell  <k.parnell@gmail.com>
1400
1401         (cmd_spec_prefer_family): Initialize prefer_family to prefer_none.
1402
1403 2008-05-17  Micah Cowan  <micah@cowan.name>
1404
1405         * main.c (main): Handle Ctrl-D on command-line.
1406
1407 2008-05-15  Steven Schubiger  <schubiger@gmail.com>
1408
1409         * ftp.c (getftp): Verify that the file actually exists in FTP, by
1410         checking it against the listing.
1411
1412 2008-05-15  Micah Cowan  <micah@cowan.name>
1413
1414         * main.c (prompt_for_password): Use the quote module.
1415
1416 2008-05-14  Micah Cowan  <micah@cowan.name>
1417
1418         * ftp.c (ftp_retrieve_list): Symlinks and other filenames
1419         should be fully quoted.
1420
1421 2008-05-12  Micah Cowan  <micah@cowan.name>
1422
1423         * main.c (main): Downgrade "-N with -O" to a warning, and switch
1424         it off to avoid confusing messages.
1425
1426 2008-04-30  Micah Cowan  <micah@cowan.name>
1427
1428         * progress.c (create_image): Fix glitch where too many spaces are
1429         printed on lines that don't display the ETA, in multibyte
1430         locales.
1431
1432 2008-04-30  Steven Schubiger  <stsc@members.fsf.org>
1433
1434         * main.c (main): New code that handles prompting for passwords
1435         when specified explicitly via command-line option (using gnulib's
1436         getpass-gnu module).
1437         (main): Include the getpass header.
1438
1439         * init.c: Add "ask-password" to the list of recognized commands.
1440
1441         * options.h: Add an according boolean member to the options
1442         struct.
1443
1444         * sysdep.h: Comment the defines __EXTENSIONS__ and _GNU_SOURCE
1445         out, because they're now defined independently by config.h.
1446
1447 2008-04-27  Rabin Vincent  <rabin@rab.in>
1448
1449         * http.c (http_loop): Fix return for the case where we don't
1450         download a file because of -nc.
1451
1452 2008-04-27  Micah Cowan  <micah@cowan.name>
1453
1454         * url.c (path_simplify): Go back to allowing leading ".." in
1455         paths, but only for FTP URLs.
1456         (test_path_simplify): Add scheme-specificness to tests, adapt for
1457         mu_run_test.
1458
1459         * test.c (all_tests): Add test_path_simplify.
1460
1461         * main.c (main): Downgrade -r, -p with -O to a warning rather than
1462         an error; elaborate just a bit more for other -O combination
1463         cases.
1464
1465 2008-04-26  Micah Cowan  <micah@cowan.name>
1466
1467         * http.c (gethttp): Move proxy CONNECT handling to below the
1468         retry_with_auth label, to deal with properly reconnecting to
1469         proxies when we need to authenticate.
1470
1471 2008-04-25  Micah Cowan  <micah@cowan.name>
1472
1473         * Makefile.am: -I foo -> -Ifoo.
1474
1475 2008-04-24  Micah Cowan  <micah@cowan.name>
1476
1477         * main.c: Revised usage description of --convert-links to apply
1478         to CSS as well as to HTML.
1479
1480 2008-04-23  Micah Cowan  <micah@cowan.name>
1481
1482         * utils.c (test_dir_matches_p): Added a test for the case
1483         described in issue #20518.
1484
1485 2008-04-22  Micah Cowan  <micah@cowan.name>
1486
1487         * Makefile.am, css.lex, css.l: Renamed css.lex to css.l.
1488         * recur.c (retrieve_tree): Fix typo to allow text/css files to
1489         be parsed.
1490
1491 2008-04-22  Ted Mielczarek  <ted.mielczarek@gmail.com>
1492
1493         * css.lex, css-url.c, css-url.h: Added to implement support for
1494         parsing CSS in Wget.
1495         * convert.c: Convert links in CSS files, too.
1496         * convert.h (convert_options): Added for options link_css_p,
1497         link_expect_css.
1498         * convert.h: Added prototype for new register_css function.
1499         * html-parse.c: Added support for parsing element content, in
1500         addition to tag starts and ends.
1501         * html-parse.h (taginfo): Added delimiter fields for element
1502         content.
1503         * html-url.h: Added.
1504         * html-url.c (append_url): No longer internal-linkage only. Now
1505         takes position and size as explicit parameters.
1506         * html-url.c: Use new html-url.h header, add support for
1507         handling of "style" HTML attributes. Mark URIs obtained from
1508         link tags with rel="stylesheet" with link_expect_css. Adapt
1509         uses of append_url to supply the newly-added parameters for
1510         position and size.
1511         * http.c: Add detection for when the content-type is text/css;
1512         and ensure that such files have the ".css" filename extension,
1513         when --convert-links is active.
1514         * recur.h: Remove declarations for functions found in
1515         html-url.c (moved to html-url.h).
1516         * recur.c: Add support for culling links from CSS files, too,
1517         and tracking for when we're expecting the file to be CSS (even
1518         when its content type isn't text/css).
1519         * retr.c (retrieve_url): Add registration of CSS files.
1520         * wget.h: Added TEXTCSS to dt flags enum.
1521         * Makefile.am: Added css.lex, css-url.c, css-url.h, html-url.h
1522         to wget_SOURCES.
1523
1524 2008-04-22  Jim Paris  <jim@jtan.com>
1525
1526         * openssl.c (ssl_init): Enable combined certificate/key in
1527         single file (apparent regression from ~1.9). Resolves issue
1528         #22767.
1529
1530 2008-04-22  Steven Schubiger  <schubiger@gmail.com>
1531
1532         * http.c (print_response_line): Changed to make responses always
1533         be logged, even in --quiet mode, if --server-response was
1534         specified. This is to bring http.c's handling of the situation
1535         in line with ftp.c's.
1536
1537 2008-04-22  Pranab Shenoy  <pranab.loosinit.shenoy@gmail.com>
1538
1539         * init.c: Added test_commands_sorted unit test to check is
1540         commands are sorted.  Fixes bug #21245.
1541
1542         * test.c: Added test_commands_sorted to the test suite.
1543
1544 2008-04-22  Rabin Vincent  <rabin@rab.in>
1545
1546         * ftp.c (ftp_get_listing): Only remove .listing if it has been
1547         created.
1548
1549 2008-04-22  Alain Guibert  <alguibert+bts@free.fr>
1550
1551         * test.h (mu_run_test): Move declaration before statements, for
1552         C90 conformance. Fixes bug #22789.
1553
1554 2008-04-22  Mike Frysinger  <vapier@gentoo.org>
1555
1556         * Makefile.am: Move @LIBS@ after other libraries, for better
1557         static-linking support. Fixes bug #22143.
1558
1559 2008-04-16  Steven Schubiger  <schubiger@gmail.com>
1560
1561         * ftp.c: Use Gnulib's quote function for printing filenames and
1562         such.
1563         * connect.c: Likewise.
1564         * convert.c: Likewise.
1565         * cookies.c: Likewise.
1566         * ftp-opie.c: Likewise.
1567         * gnutls.c: Likewise.
1568         * init.c: Likewise.
1569         * log.c: Likewise.
1570         * mswindows.c: Likewise.
1571         * openssl.c: Likewise.
1572         * progress.c: Likewise.
1573         * recur.c: Likewise.
1574         * res.c: Likewise.
1575         * utils.c: Likewise.
1576
1577 2008-04-16  Steven Schubiger  <schubiger@gmail.com>
1578
1579         * sysdep.h: Comment the defines __EXTENSIONS__ and _GNU_SOURCE
1580         out, because they're now defined independently by config.h.
1581
1582 2008-04-14  Steven Schubiger  <schubiger@gmail.com>
1583
1584         * http.c: Use Gnulib's quote function for printing filenames and
1585         such.
1586         * wget.h: #include "quote.h".
1587
1588 2008-04-12  Rabin Vincent  <rabin@rab.in>
1589
1590         * mswindows.c (fake_fork_child): Don't create a logfile for
1591         --background when --quiet is used, but not --server-response.
1592         Fixes bug #20917.
1593
1594         * utils.c (fork_to_background): Likewise.
1595
1596 2008-04-12  Micah Cowan  <micah@cowan.name>
1597
1598         * utils.c (aprintf): Minor formatting changes to Alex's code (80-
1599         column limit, concatenated string literals, avoiding nesting
1600         levels), and removed invocation of free (since we're aborting
1601         anyway).
1602
1603 2008-04-11  Alexander Dergachev  <cy6erbr4in@gmail.com>
1604
1605         * utils.c (aprintf): Now we are setting limits (1 Mb) for text
1606         buffer when we use non-C99 vsnprintf.
1607
1608 2008-04-11  Micah Cowan  <micah@cowan.name>
1609
1610         * ftp.c (getftp, ftp_loop_internal): Don't append to an existing
1611         .listing when --continue is used.  Fixes bug #22825. Thanks to
1612         Rabin Vincent <rabin@rab.in> for pointing the way with a
1613         suggested fix!
1614
1615 2008-04-10  Alexander Dergachev  <cy6erbr4in@gmail.com>
1616
1617         * xmalloc.c, xmalloc.h (memfatal): Now exported; accepts an
1618         "unknown" value for the attempted allocation size.
1619         * utils.c (aprintf): Now calls memfatal, instead of aborting.
1620
1621 2008-03-19  Micah Cowan  <micah@cowan.name>
1622
1623         * utils.c (test_dir_matches_p): More tests related for
1624         dir_matches_p.
1625
1626 2008-03-17  Micah Cowan  <micah@cowan.name>
1627
1628         * connect.c: Include sys/time.h to support use of the select
1629         function on older systems.
1630
1631 2008-02-11  Benno Schulenberg  <bensberg@justemail.net>
1632
1633         * http.c: More accurate and descriptive messages for when a file
1634         won't be retrieved during spider-mode.
1635
1636 2008-02-10  Micah Cowan  <micah@cowan.name>
1637
1638         * http.c: Added existence_checked member to the http_stat
1639         struct.
1640         (gethttp): Mark hs->existence_checked when we've checked whether
1641         a file-to-download exists; so we don't check it again if the
1642         connection gets lost (and potentially pick a new "unique" name).
1643         This fixes bug 22251.
1644         * progress.c (create_image): Add space for an extra column in
1645         the "eta" portion of the progress bar image; to deal with
1646         too-long Czech translation.
1647         * main.c, http.c, init.c: Added --auth-no-challenge option, to
1648         bring back 1.10.2 unsafe auth behavior when needed. This fixes
1649         bug #22242.
1650
1651 2008-02-07  Micah Cowan  <micah@cowan.name>
1652
1653         * progress.c (create_image): Remove assertion on exceeding
1654         screen width, which given the less-than-robust code there, can
1655         be broken by a number of factors (such as large file downloads).
1656
1657 2008-02-06  Micah Cowan  <micah@cowan.name>
1658
1659         * progress.c (countcols): Use strlen() when mbtowc or wcwidth
1660         not available (or not using NLS).
1661         * utils.c: Ensure we use single-byte separators when not doing
1662         NLS progress-bars.
1663         * wget.h: Determine whether to use NLS for progress-bars, based
1664         on whether wcwidth and mbtowc are available.
1665
1666 2008-02-03  Micah Cowan  <micah@cowan.name>
1667
1668         * progress.c (create_image): Use number of characters/columns
1669         consumed, rather than number of bytes, to determine how much of
1670         a line we've used. Fixes assertion errors and field alignment
1671         bugs (#22161, #20481)
1672         (get_eta, count_cols): Added to support the changes for
1673         create_image.
1674         * http.c (http_loop): Put no-clobber logic back into http_loop,
1675         before starting to fetch, for when we're not doing
1676         content-disposition.
1677
1678 2008-01-31  Micah Cowan  <micah@cowan.name>
1679
1680         * http.c (gethttp): Don't derive hs->contlen from possibly
1681         invalid/missing Content-Length; instead, get the appropriate
1682         value from the Content-Range header values.
1683         (parse_content_range): Handle '*' instance-length field.
1684
1685 2008-01-25  Micah Cowan  <micah@cowan.name>
1686
1687         * main.c: Added notes to translators regarding (C), diacritics
1688         in names.
1689         * Makefile.am, cmpt.c, connect.c, connect.h, convert.c,
1690         cookies.c, cookies.h, ftp-basic.c, ftp-ls.c, ftp-opie.c, ftp.c,
1691         ftp.h, gen-md5.c, gen-md5.h, gnutls.c, hash.c, hash.h, host.c,
1692         host.h, html-parse.c, html-parse.h, html-url.c, http-ntlm.c,
1693         http-ntlm.h, http.c, http.h, init.c, init.h, log.c, log.h,
1694         main.c, mswindows.c, mswindows.h, netrc.c, netrc.h, openssl.c,
1695         options.h, progress.c, progress.h, ptimer.c, ptimer.h, recur.c,
1696         recur.h, res.c, res.h, retr.c, retr.h, spider.c, spider.h,
1697         ssl.h, sysdep.h, test.c, test.h, url.c, url.h, utils.c,
1698         utils.h, wget.h, xmalloc.c, xmalloc.h: Updated copyright year.
1699
1700 2007-12-10  Micah Cowan  <micah@cowan.name>
1701
1702         * main.c: The option is --content-disposition, not
1703         --no-content-disposition (at the moment).
1704
1705 2007-12-08  Hrvoje Niksic  <hniksic@xemacs.org>
1706
1707         * ftp.c (ftp_retrieve_glob): Print both arguments of fnmatch in
1708         fnmatch error message.
1709         (ftp_retrieve_glob): Don't match with fnmatch if we're only
1710         supposed to get one file.
1711
1712 2007-12-07  Micah Cowan  <micah@cowan.name>
1713
1714         * Makefile.am: Plug in vars to include stuff from
1715         $(top_srcdir)/md5 when appropriate.
1716
1717 2007-12-05  Micah Cowan  <micah@cowan.name>
1718
1719         * utils.c (subdir_p): Handle the case where d1 is "".
1720         * convert.c (convert_all_links): Don't return without
1721         deallocating timer.
1722
1723 2007-11-28  Micah Cowan  <micah@cowan.name>
1724
1725         * Makefile.am, cmpt.c, connect.c, connect.h, convert.c,
1726         convert.h, cookies.c, cookies.h, ftp-basic.c, ftp-ls.c,
1727         ftp-opie.c, ftp.c, ftp.h, gen-md5.c, gen-md5.h, gnutls.c,
1728         hash.c, hash.h, host.c, host.h, html-parse.c, html-parse.h,
1729         html-url.c, http-ntlm.c, http-ntlm.h, http.c, http.h, init.c,
1730         init.h, log.c, log.h, main.c, mswindows.c, mswindows.h,
1731         netrc.c, netrc.h, openssl.c, options.h, progress.c, progress.h,
1732         ptimer.c, ptimer.h, recur.c, recur.h, res.c, res.h, retr.c,
1733         retr.h, safe-ctype.c, safe-ctype.h, spider.c, spider.h, ssl.h,
1734         sysdep.h, test.c, test.h, url.c, url.h, utils.c, utils.h,
1735         wget.h, xmalloc.c, xmalloc.h: Updated license exception for
1736         OpenSSL, per the SFLC.
1737
1738 2007-10-30  Micah Cowan  <micah@cowan.name>
1739
1740         * main.c (main): Declare argv parameter as char **argv, rather
1741         than char *const *argv. This fixes usage of getopt_long,
1742         regardless of whether getopt_long has a constified argv or not.
1743
1744 2007-10-22  Gisle Vanem  <gvanem@broadpark.no>
1745
1746         * mswindows.c: Move INHIBIT_WRAP macro definition up with wget.h
1747         inclusion.
1748
1749 2007-10-18  Steven Schweda  <sms@antinode.org>
1750
1751         * sysdep.h: #include <stdint.h> as well as <inttypes.h>, to work
1752         around a glitch on Tru64 systems.
1753
1754 2007-10-18  Micah Cowan  <micah@cowan.name>
1755
1756         * Makefile.am: version.c should not be distributed. Removed
1757         config-post.h. Add version.c dependency and gnulib include path
1758         for libunittest.a.
1759         * sysdep.h: Got contents of config-post.h
1760         * config-post.h: Removed.
1761         * wget.h: #include "config.h".
1762         * alloca.c, cmpt.c, connect.c, convert.c, cookies.c,
1763         ftp-basic.c, ftp-ls.c, ftp-opie.c, ftp.c, gen-md5.c, gnutls.c,
1764         hash.c, host.c, html-parse.c, html-url.c, http-ntlm.c, http.c,
1765         init.c, log.c, main.c, mswindows.c, netrc.c, openssl.c,
1766         progress.c, ptimer.c, recur.c, res.c, retr.c, spider.c, url.c,
1767         utils.c, xmalloc.c: Use wget.h at very top, and instead of
1768         config.h.
1769
1770 2007-10-15  Micah Cowan  <micah@cowan.name>
1771
1772         * Makefile.am: Remove intermediary hg-id file generation, make
1773         version.c-generation more portable.
1774
1775 2007-10-14  Micah Cowan  <micah@cowan.name>
1776
1777         * cmpt.c, cookies.c, ftp-basic.c, ftp-ls.c, ftp.c, hash.c,
1778         host.c, html-parse.c, html-url.c, http-ntlm.c, http.c, init.c,
1779         log.c, main.c, netrc.c, openssl.c, res.c, url.c, utils.c,
1780         wget.h: Replace uses of ISSPACE, etc with c_isspace, etc.
1781         * gnu-md5.c, gnu-md5.h: Removed, in deference to gnulib.
1782         * Makefile.am: Removed gnu-md5.h from wget_SOURCES.
1783         * gen-md5.c: Changed #inclusion of gnu-md5.h to md5.h (gnulib's).
1784         * recur.c (download_child_p): Print error if unlink of
1785         robots.txt fails.
1786         * main.c (main): --spider or --delete-after now implies
1787         --no-directories (thanks, Josh Williams).
1788
1789 2007-10-14  Joshua David Williams  <yurimxpxman@gmail.com>
1790
1791         * recur.c (download_child_p): Remove robots.txt if
1792         --delete-after or --spider is on.
1793
1794 2007-10-13  Micah Cowan  <micah@cowan.name>
1795
1796         * Makefile.am: Make version.c depend on Wget dependencies (source
1797         files, plus such things as LIBOBJS so we get things like
1798         http-ntlm.c). Removed getopt.[ch], as we're now using gnulib for
1799         these.
1800
1801 2007-10-10  Micah Cowan  <micah@cowan.name>
1802
1803         * http-ntlm.c: Include openssl/opensslv.h explicitly, instead of
1804         hoping it'll be included by accident in openssl/des.h.
1805
1806 2007-10-09  Gisle Vanem  <gvanem@broadpark.no>
1807
1808         * mswindows.c: 'argc' and 'argv' in 'windows_main()' are no longer
1809         needed.  Hence simply the prototype. Free 'exec_name' at exit.
1810
1811 2007-10-09  Micah Cowan  <micah@cowan.name>
1812
1813         * gettext.h: Imported from /usr/share/gettext, fuller handling
1814         of --disable-nls.
1815         * wget.h: Remove logic for handling lack of NLS (now in
1816         gettext.h).
1817         * main.c: Use gettext's ENABLE_NLS rather than HAVE_NLS.
1818         * Makefile.am: added @LIBINTL@ to LIBS (though it probably
1819         belongs in LDADD, along with everything else currently assigned
1820         to LIBS).
1821
1822 2007-10-08  Micah Cowan  <micah@cowan.name>
1823
1824         * http.c (http_loop): Add send_head_first conditional back
1825         around code that needs it, but not around the last-modified
1826         header-parsing stuff this time. Removed no-longer-useful (was it
1827         ever?) restart_loop boolean, continuing unconditionally at end
1828         of send_head_first conditional block (if we haven't jumped out).
1829
1830 2007-10-04  Micah Cowan  <micah@cowan.name>
1831
1832         * http.c (http_loop): We've got_name if content_disposition
1833         support isn't on; make sure we continue properly in that case,
1834         even though we're not sending HEAD.
1835         * Makefile.in: Removed, replaced by Makefile.am.
1836         * Makefile.am: Converted from Makefile.in.
1837
1838 2007-10-02  Gisle Vanem  <gvanem@broadpark.no>
1839
1840         * ftp.c: Use "_listing" for MSDOS (".listing" is illegal).
1841
1842         * url.c: Update comment for 'filechr_not_windows'.
1843
1844         * utils.c: Include <process.h> for 'getpid()' on Watcom.
1845
1846 2007-10-02  Micah Cowan  <micah@cowan.name>
1847
1848         * ftp.c (getftp, ftp_loop_internal), http.c (http_loop), main
1849         (main): Use datetime_str instead of time_str, for those who have
1850         potentially long-running sessions. Based on suggestions by Saso
1851         Tomat <miskox@hotmail.com> and Steven M. Schweda
1852         <sms@antinode.org>.
1853         * http.c (gethttp): Warn about host lookup failures. Adjusted
1854         from Stephen Gildea's patch.
1855
1856 2007-10-02  Stephen Gildea  <stepheng+wget@gildea.com>
1857
1858         * connect.c (connect_to_host): Warn about host lookup failures.
1859
1860 2007-09-25  Micah Cowan  <micah@cowan.name>
1861
1862         * Makefile.in: Use EXEEXT instead of exeext.
1863
1864 2007-09-24  Gisle Vanem  <giva@bgnett.no>
1865
1866         * connect.c, init.c, main.c, openssl.c, options.h, sysdep.h,
1867         url.c, utils.c: Added support for building on MS-DOS.
1868
1869 2007-09-24  Jochen Roderburg  <roderburg@uni-koeln.de>
1870
1871         * http.c (http_zero): Remove no-longer-used local_size variable.
1872         Fixes bug #21057.
1873
1874 2007-09-12  Micah Cowan  <micah@cowan.name>
1875
1876         * http.c (http_loop): Remove send_head_first from condition for
1877         parsing timestamp.
1878
1879 2007-08-29  Micah Cowan  <micah@cowan.name>
1880
1881         * openssl.c (ssl_init): Re un-const-ified the meth local
1882         variable, to match current versions of openssl.
1883         * spider.c: Removed visited_url function, as it may be very
1884         inefficient.
1885         (print_broken_links): Removed traversal of referrers, until such
1886         time as a more efficient implementation can be written.
1887         * spider.h: Replaced declaration of visited_url with an
1888         empty-bodied, function-like macro.
1889
1890 2007-08-27  Gisle Vanem  <giva@bgnett.no>
1891
1892         * mswindows.c (run_with_timeout): Ensure that the correct
1893         conversion specification is used for the return result of
1894         the GetLastError function.
1895         * getopt.c: Fix missing (but, accidentally, legal) comment
1896         delimiter after licensing text.
1897         * recur.c (retrieve_tree): Inserted missing cast for strip_auth.
1898         Includes adjustment by Ralf Wildenhues.
1899         * openssl.c (ssl_init): const-ified the meth local variable.
1900         * main.c: Include all the static function definitions in the
1901         "#ifndef TESTING" clause, leaving just the definitions for
1902         exec_name (not set), and opt.
1903         * utils.c (run_with_timeout): Now returns bool, to align with
1904         declaration in utils.h.
1905
1906 2007-08-27  Micah Cowan  <micah@cowan.name>
1907
1908         * wget.h: Added macro replacement for ngettext, for environs
1909         that lack NLS.
1910
1911 2007-08-26  Micah Cowan  <micah@cowan.name>
1912
1913         * spider.c (print_broken_links): Fixed incorrect plurals msgid
1914         usage, switched to use ngettext function.
1915
1916 2007-08-24  Micah Cowan  <micah@cowan.name>
1917
1918         * http.c (http_loop): Introduced time_came_from_head boolean
1919         flag, to help avoid parsing the same Last-Modified header twice.
1920         Replaced spidering returns of RETRUNNEEDED for some situations,
1921         to RETROK, as otherwise it will be interpreted as an error.
1922         RETRUNNEEDED appears never to be referenced outside of
1923         http.c (and wget.h), and, when returned by gethttp, is
1924         translated by http_loop to RETROK.
1925         * url.c (are_urls_equal): Don't call getchar_from_escaped_string
1926         if u2 is shorter than u1.
1927         (getchar_from_escaped_string): Don't decode reserved characters.
1928         Handle illegally appearing '%'s as literal '%'s. Ensure hex
1929         digits before attempting to decode.
1930         (test_are_urls_equal): Added tests to handle u2 shorter than u1,
1931         and %2f not treated the same as /.
1932         * spider.c (in_url_list_p): Don't call are_urls_equal if one of
1933         them is NULL.
1934
1935 2007-08-23  Joshua David Williams  <yurimxpxman@gmail.com>
1936
1937         * spider.c (in_url_list_p): Removed the bool verbose argument
1938
1939 2007-08-22  Mauro Tortonesi  <mauro@ferrara.linux.it>
1940
1941         * http.c (http_loop): Fall back to GET if HEAD fails with a 500 or 501
1942         error code.
1943
1944 2007-08-21  Mauro Tortonesi  <mauro@ferrara.linux.it>
1945
1946         * http.c (http_loop): Send preliminary HEAD request if -N is given and
1947         the destination file exists already.
1948
1949 2007-08-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
1950
1951         * http.c (http_loop): Fixed HTTP HEAD requests logic when --spider is
1952         given.
1953
1954 2007-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1955
1956         * url.c (append_uri_pathel): Do not assume dest string to be
1957         zero-terminated.
1958         (test_append_uri_pathel): Terminate string to fix test failure.
1959
1960 2007-08-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1961
1962         * url.c (url_string): Use comparison, not assignment, in
1963         check for auth_mode == URL_AUTH_HIDE_PASSWD.
1964
1965 2007-08-09  Micah Cowan  <micah@cowan.name>
1966
1967         * http.c (http_loop): If we got a HEAD and then a GET, and the
1968         GET had a timestamp, use that one, not any we may have gotten
1969         from the HEAD.
1970
1971 2007-08-08  Micah Cowan  <micah@cowan.name>
1972
1973         * init.c (defaults): Content disposition will not be default,
1974         since it currently results in extra round-trips.
1975
1976 2007-07-31  Micah Cowan  <micah@cowan.name>
1977
1978         * http.c (gethttp): Set contlen = -1 when we encounter a
1979         negative-valued Content-Length header, so we don't consider it
1980         an internal error later on and call abort().
1981
1982 2007-07-29  Micah Cowan  <micah@cowan.name>
1983
1984         * url.h, url.c (url_string): Replaced bool arg of the url_string
1985         function with enum url_auth_mode, with added option to
1986         completely remove user/pass auth information.
1987         * http.c, ftp.c, url.c, recur.c: Adapted call to url_string
1988         function to fit new usage.
1989         * recur.c (retrieve_tree): Remove auth info from Referer header.
1990
1991 2007-07-28  Micah Cowan  <micah@cowan.name>
1992
1993         * options.h, init.c, retr.c, main.c: renamed opt maxredirect
1994         field to max_redirect, for improved consistency.
1995         * init.c: changed max_redirect parser from cmd_number_inf to
1996         cmd_number, as infinite redirects may not be appropriate.
1997         Alternatively, if cmd_number_inf should be used, then
1998         opt.max_redirect's value should be checked a bit differently in
1999         retr.c, to allow for the "infinite" meaning of zero.
2000
2001 2007-07-25  Micah Cowan  <micah@cowan.name>
2002
2003         * http.c (create_authorization_line)
2004         (basic_authentication_encode, known_authentication_scheme_p)
2005         (load_cookies): Moved declarations up.
2006         (basic_authed_hosts): Added. Tracks what hosts have issued Basic
2007         challenge and been given the global username, password.
2008         (maybe_send_basic_creds): Added. Sends Basic creds for hosts that
2009         have issued Basic challenges.
2010         (register_basic_auth_host): Added. Instantiates
2011         basic_authed_hosts if necessary, then registers the host that
2012         has issued a challenge.
2013         (gethttp) <auth>: Only send authentication credentials after
2014         we've received a challenge from that host. This is a stop-gap
2015         fix until a proper fix can be implemented; still isn't quite
2016         right, as we should only be sending credentials automatically
2017         for authenticated paths and below, and not for the entire host.
2018
2019 2007-07-16  Joshua David Williams  <yurimxpxman@gmail.com>
2020
2021         * options.h: added maxredirect to options struct
2022         * init.c: added maxredirect to list of variables
2023         * retr.c (retrieve_url): replaced MAX_REDIRECTIONS with opt.maxredirect
2024         * main.c: added option --max-redirect
2025
2026 2007-07-16  Joshua David Williams  <yurimxpxman@gmail.com>
2027
2028         * test.h: tests made more verbose; now displays the name
2029         of each test run.
2030
2031 2007-07-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
2032
2033         * http.c (http_loop): Fixed the HTTP requests logic. Now it skips the
2034         preliminary HEAD request if either -O or --no-content-disposition are
2035         given, and neither --spider and -N are given.
2036
2037 2007-07-05  Micah Cowan  <micah@cowan.name>
2038
2039         * cmpt.c, connect.c, connect.h, convert.c, convert.h:
2040         * cookies.c, cookies.h, ftp-basic.c, ftp.c, ftp.h, ftp-ls.c:
2041         * ftp-opie.c, gen-md5.c, gen-md5.h, getopt.c, getopt.h, gnu-md5.c:
2042         * gnu-md5.h, gnutls.c, hash.c, hash.h, host.c, host.h:
2043         * html-parse.c, html-parse.h, html-url.c, http.c, http.h:
2044         * http-ntlm.c, http-ntlm.h, init.c, init.h, log.c, log.h, main.c:
2045         * Makefile.in, mswindows.c, mswindows.h, netrc.c, netrc.h:
2046         * openssl.c, options.h, progress.c, progress.h, ptimer.c:
2047         * ptimer.h, recur.c, recur.h, res.c, res.h, retr.c, retr.h:
2048         * safe-ctype.c, safe-ctype.h, spider.c, spider.h, ssl.h, sysdep.h:
2049         * test.c, test.h, url.c, url.h, utils.c, utils.h, wget.h:
2050         * xmalloc.c, xmalloc.h:
2051         Updated GPL reference to version 3 or later, removed FSF
2052         address.
2053
2054 2007-07-04  Mauro Tortonesi  <mauro@ferrara.linux.it>
2055
2056         * http.c (http_loop): Skip HEAD request and start immediately with GET
2057         if -O is given.
2058
2059 2007-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
2060
2061         * http.c (print_server_response): Escape non-printable characters
2062         in server respone.
2063
2064 2007-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
2065
2066         * netrc.c: Don't make netrc_list static, as it prevents
2067         compilation with DEBUG_MALLOC.
2068
2069         * utils.c (aprintf): Don't use vasprintf when DEBUG_MALLOC is
2070         requested because, in that case, we want the calls to malloc to be
2071         coming from us.
2072
2073 2007-01-23  Hrvoje Niksic  <hniksic@xemacs.org>
2074
2075         * cookies.c (parse_set_cookie): Would erroneously discard cookies
2076         with unparsable expiry time.
2077
2078 2007-01-23  Hrvoje Niksic  <hniksic@xemacs.org>
2079
2080         * progress.c (create_image): Check for ETA overflow.
2081         (print_row_stats): Ditto.
2082
2083 2007-01-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
2084
2085         * init.c (cmd_spec_prefer_family): Small fix to get rid of a gcc
2086         warning about strict-aliasing violation.
2087
2088 2007-01-09  Steven M. Schweda  <sms@antinode.org>
2089
2090         * ftp-basic.c (ftp_syst): Fixed segfault if response text is missing.
2091
2092 2006-12-29  Gisle Vanem  <giva@bgnett.no>
2093
2094         * mswindows.c: Avoid a warning if 'ws_hangup()' is unused.
2095
2096 2006-12-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
2097
2098         * http.c (parse_content_disposition): Consider directory prefix, if
2099         specified.
2100
2101 2006-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
2102
2103         * retr.c (retrieve_from_file): Ditto.
2104         (url_uses_proxy): New function.
2105
2106         * main.c (main): Don't check for opt.use_proxy when deciding
2107         whether to call retrieve_url or retrieve_tree; check whether the
2108         proxy would be used for *this* URL.
2109
2110 2006-10-17  Mike Grant  <mggr@pml.ac.uk>
2111
2112         * ftp.c (ftp_loop_internal): Would incorrectly skip changing
2113         working directory when retrying after a failed FTP attempt.
2114         Originally reported by Nate Eldredge.
2115
2116 2006-10-12  Mauro Tortonesi  <mauro@ferrara.linux.it>
2117
2118         * convert.c (downloaded_file): Fixed bug which used to break -E -k -K
2119         mode.
2120
2121 2006-08-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
2122
2123         * http.c: #include'd spider.h to get rid of compiler warnings.
2124
2125         * main.c: Ditto.
2126
2127         * recur.c: Ditto.
2128
2129 2006-08-24  Mauro Tortonesi  <mauro@ferrara.linux.it>
2130
2131         * Makefile.in: Added spider.c to the list of files to compile and
2132         spider.h to the list of header files. Updated copyright information.
2133
2134         * http.c: Major changes to recursive spider mode. Now for every
2135         resource we are supposed to check, we send a HEAD request to find out
2136         if it exists. If the resource is a HTML file, we retrieve it and parse
2137         it to discover links to other resources.
2138
2139         * recur.c: Ditto.
2140
2141         * res.c (res_retrieve_file): Disable opt.timestamping and opt.spider
2142         when retrieving robots.txt. Updated copyright information.
2143
2144         * convert.c: Moved code tracking broken links to spider.c.
2145
2146         * convert.h: Ditto.
2147
2148         * spider.c: Created new file to keep track of visited URLs in spider
2149         mode.
2150
2151         * spider.h: Ditto.
2152
2153 2006-08-21  Mauro Tortonesi  <mauro@ferrara.linux.it>
2154
2155         * http.c: Fixed timestamping-related bug.
2156
2157 2006-08-16  Mauro Tortonesi  <mauro@ferrara.linux.it>
2158
2159         * http.c: Fixed bug which broke --continue feature. Now if -c is
2160         given, http_loop sends a HEAD request to find out the destination
2161         filename before resuming download.
2162
2163 2006-08-08  Hrvoje Niksic  <hniksic@xemacs.org>
2164
2165         * utils.c (datetime_str): Avoid code repetition with time_str.
2166
2167 2006-07-21  Hrvoje Niksic  <hniksic@xemacs.org>
2168
2169         * init.c (commands): Correctly place "contentdisposition".
2170
2171 2006-07-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
2172
2173         * sysdep.h: If intptr_t isn't defined, simply typedef it to long.
2174
2175         * http.c: Added explicit cast to int in logprintf call to remove
2176         compiler warnings on 64-bit platforms.
2177
2178         * connect.c: Added a few casts to intptr_t to remove compiler warnings
2179         on 64-bit platforms.
2180
2181         * main.c: Disable -r, -p and -N when -O is used. Disable -k when -O is
2182         used and multiple URLs are given. Update maintainer information.
2183
2184         * all: Update copyright information.
2185
2186 2006-07-10  KJKHyperion  <hackbunny@reactos.com>
2187
2188         * url.c (filechr_table): Mark DEL (0x7f) as a control character
2189         and | as a character Windows can't handle.
2190
2191 2006-06-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
2192
2193         * res.c: Implemented is_robots_txt_url function for detection of
2194         robots.txt URLs and related test routine.
2195
2196         * res.h: Ditto.
2197
2198         * url.c: Implemented are_urls_equal function for URL comparison and
2199         related testing routine.
2200
2201         * url.h: Ditto.
2202
2203         * convert.c: Fixes for recursive spider mode: don't consider
2204         non-existing robots.txt as a broken link, and use are_urls_equal
2205         instead of strcasecmp for referrer URLs comparison.
2206
2207         * test.c: Call tests routines for are_urls_equal and
2208         is_robots_txt_url.
2209
2210 2006-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2211
2212         * wget.h (wgint): Typedef to any 64-bit (or larger) type we can
2213         find, not necessarily off_t or long.
2214
2215 2006-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2216
2217         * cmpt.c (strtoll): Check for overflow and underflow without
2218         relying on (technically) undefined behavior.  Don't assume that
2219         strtoll_type is 64 bits wide.
2220
2221 2006-06-21  Hrvoje Niksic  <hniksic@xemacs.org>
2222
2223         * utils.c (base64_encode): Cast void pointer to char * before
2224         doing arithmetic.
2225
2226 2006-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
2227
2228         * utils.c (base64_encode): Made TBL const.
2229         (base64_decode): Made the base64_char_to_value table const.
2230
2231 2006-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
2232
2233         * utils.c (base64_encode): Made the DATA pointer void * so the
2234         callers can pass it any kind of pointer (including both signed and
2235         unsigned char pointers).
2236         (base64_decode): Ditto for DEST.
2237
2238 2006-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
2239
2240         * utils.c (base64_encode): Would read past end of STR.
2241         Reported by rick@eckle.org.
2242
2243 2006-06-13  Mauro Tortonesi  <mauro@ferrara.linux.it>
2244
2245         * options.h (struct options): Introduced member restrict_files_case to
2246         keep track of preferences on character case restrictions for
2247         filenames.
2248
2249         * init.c: Modified defaults and cmd_spec_restrict_file_names to
2250         support character case restrictions for filenames. Added
2251         test_cmd_spec_restrict_file_names unit test.
2252
2253         * url.c: Modified append_uri_pathel to support character case
2254         restrictions for filenames. Added test_append_uri_pathel unit test.
2255
2256         * test.c: Added test_cmd_spec_restrict_file_names and
2257         test_append_uri_pathel to the list of unit tests to run.
2258
2259 2006-06-12  Mauro Tortonesi  <mauro@ferrara.linux.it>
2260
2261         * retr.c (retrieve_from_file): Use retrieve_tree and automatically
2262         turn on opt.follow_ftp in case of recursive FTP retrieval through HTTP
2263         proxy.
2264
2265         * main.c: Automatically turn on opt.follow_ftp in case of recursive
2266         FTP retrieval through HTTP proxy.
2267
2268 2006-06-12  Tony Lewis  <tlewis@exelana.com>
2269
2270         * main.c: Improved CHEN Peng's patch by proposing a simpler logic.
2271
2272 2006-06-12  CHEN Peng  <chenpeng@alumni.nus.edu.sg>
2273
2274         * main.c: Use retrieve_tree in case of recursive FTP retrieval through
2275         HTTP proxy.
2276
2277 2006-05-25  Mauro Tortonesi  <mauro@ferrara.linux.it>
2278
2279         * convert.c: Added mechanisms to keep track broken links.
2280
2281         * convert.h: Ditto.
2282
2283         * wget.h: Reordered and enumerated uerr_t constants.
2284
2285         * recur.c: Fixes to support recursive spider mode.
2286
2287         * http.c: Ditto.
2288
2289         * main.c: Print broken links in case of recursive spider mode.
2290
2291         * retr.c: Changed interface of retrieve_url.
2292
2293         * retr.h: Ditto.
2294
2295         * ftp.c: Changed interface of ftp_loop.
2296
2297         * ftp.h: Ditto.
2298
2299         * res.c: Minor change to reflect changes in interface of retrieve_url.
2300
2301 2006-05-18  Lawrence Jones  <lawrence.jones@ugs.com>
2302
2303         * ftp-ls.c (ftp_parse_unix_ls): Correct size parsing, add size
2304         and filename debugging output.
2305
2306 2006-04-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
2307
2308         * http.c: If Content-Disposition header is present, allow unique
2309         filename generation unless -nc is given. Permit to disable parsing of
2310         Content-Disposition header.
2311
2312         * options.h: Added option --no-content-disposition to disable parsing
2313         of HTTP Content-Disposition header.
2314
2315         * init.c: Ditto.
2316
2317         * main.c: Ditto.
2318
2319 2006-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
2320
2321         * hash.c (TOLOWER): Wrap macro arg in parentheses.
2322
2323 2006-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
2324
2325         * http.c (parse_content_disposition): Doc fix.
2326
2327 2006-03-15  Mauro Tortonesi  <mauro@ferrara.linux.it>
2328
2329         * utils.c: Restricted operational semantics of frontcmp and proclist
2330         from generic strings to directory names and them to subdir_p and
2331         dir_matches_p respectively.  Applied George Ogata's one line patch to
2332         restrict algorithm of subdir_p to full directory name matching.  Added
2333         testcases for subdir_p and dir_matches_p.
2334
2335         * utils.h: Changed all frontcmp occurrences to subdir_p.
2336
2337         * recur.c: Ditto.
2338
2339         * test.c: Changed type returned by test functions from char * to const
2340         char *.  Added test_subdir_p and test_dir_matches_p to the list of
2341         tests to run.
2342
2343         * http.c (test_parse_content_disposition): Changed return type from
2344         char * to const char *.
2345
2346 2006-03-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
2347
2348         * recur.c (struct queue_element): Changed type of html_allowed member
2349         to bool.
2350
2351 2006-03-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
2352
2353         * ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST'
2354         in case of failure.
2355
2356 2006-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
2357
2358         * hash.c (TOLOWER): Fix definition when STANDALONE.
2359         Reported by Beni Serfaty.
2360
2361 2006-03-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
2362
2363         * http.c (http_loop): Fixed recursive HTTP retrieval.
2364
2365 2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
2366
2367         * http.c (extract_param): Declare extern so it can be used from
2368         other files.
2369         (extract_param): Return error for empty name.
2370
2371 2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
2372
2373         * url.c (find_last_char): Define in terms of memrchr.
2374
2375         * cmpt.c (memrchr): Define it on systems that don't have it.
2376
2377         * http.c (extract_param): New function for parsing header values
2378         with parameters.
2379         (parse_content_disposition): Use it.  Don't allow slashes and
2380         backslashes in the file name.
2381
2382 2006-02-27  Hrvoje Niksic  <hniksic@xemacs.org>
2383
2384         * url.c (path_simplify): Don't preserve ".." at beginning of path.
2385         Suggested by Frank McCown.
2386
2387 2006-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
2388
2389         * http.c (gethttp): Only use FILE.N.html if FILE.html exists.
2390
2391 2006-02-09  Hrvoje Niksic  <hniksic@xemacs.org>
2392
2393         * mswindows.c (run_with_timeout): Made thread_hnd non-static.
2394
2395 2006-02-05  Hrvoje Niksic  <hniksic@xemacs.org>
2396
2397         * retr.c (sleep_between_retrievals): Sleep at a minimum of 1/2 of
2398         the specified wait period.
2399
2400 2006-02-03  Hrvoje Niksic  <hniksic@xemacs.org>
2401
2402         * utils.c (number_to_string): Don't use sprintf for printing
2403         WGINT_MIN; simply divide n by 10 and defer printing the last
2404         digit.
2405         (number_to_string): Removed the SPRINTF_WGINT macro.
2406
2407 2006-02-03  Mauro Tortonesi  <mauro@ferrara.linux.it>
2408
2409         * http.c: Fixed support for Content-Disposition header.
2410
2411         * test.c: Added test_parse_content_disposition to the list of unit
2412         tests to run.
2413
2414 2006-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
2415
2416         * hash.c: Don't define countof if it's already defined.
2417
2418         * hash.c: Obtain the definition of uintptr_t when standalone.
2419
2420 2006-01-30  Mauro Tortonesi  <mauro@ferrara.linux.it>
2421
2422         * http.c: Changed output format. Removed excessively verbose debugging
2423         output.
2424
2425 2005-12-07  Mauro Tortonesi  <mauro@ferrara.linux.it>
2426
2427         * http.c: Fixed pre-download verbose output which was broken by
2428         HTTP code refactoring.
2429
2430 2005-11-23  Mauro Tortonesi  <mauro@ferrara.linux.it>
2431
2432         * http.c: Refactored HTTP code.  If -O is not used, the new code
2433         delays the choice of the file name where the downloaded resource
2434         will be saved until the HTTP headers have been retrieved.
2435         Added support for Content-Disposition header.
2436
2437 2005-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
2438
2439         * hash.c (INVALID_PTR): Use uintptr_t instead of unsigned long.
2440         (hash_pointer): Don't assume a pointer fits in `unsigned long'.
2441
2442 2005-11-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
2443
2444         * Makefile.in: Removed support for unit testing (now it is in
2445         tests/Makefile.in).
2446
2447 2005-10-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
2448
2449         * Makefile.in: Added basic support for unit testing.
2450
2451         * test.c: Ditto.
2452
2453         * test.h: Ditto.
2454
2455 2005-10-13  Daniel Stenberg  <daniel@haxx.se>
2456
2457         * http-ntlm.c (ntlm_output): Fixed buffer overflow vulnerability.
2458
2459 2005-10-09  Russ Allbery  <rra@stanford.edu>
2460
2461         * snprintf.c: Remove round to round_int and pow10 to pow10_int, to
2462         avoid warnings from GCC 4.0.
2463
2464 2005-10-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
2465
2466         * retr.c: Changed semantics of no_proxy_match.
2467
2468 2005-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
2469
2470         * main.c (main): Don't print the summary if nothing has been downloaded.
2471
2472 2005-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
2473
2474         * retr.c (retr_rate): Rename parameter from MSECS to SECS since it
2475         no longer holds milliseconds.
2476
2477 2005-09-01  Hrvoje Niksic  <hniksic@xemacs.org>
2478
2479         * progress.c: Introduce symbolic constants for "magic" values of
2480         0.2 and 0.9, REFRESH_INTERVAL and ETA_REFRESH_INTERVAL.
2481
2482 2005-08-27  Hrvoje Niksic  <hniksic@xemacs.org>
2483
2484         * cmpt.c (strtoll): Correctly handle strtoll("0x", ptr, 0) and
2485         strtoll("0x<nonhexchar>", ptr, 0) -- in both cases *ptr must be
2486         set to the position of 'x', not after it.
2487
2488 2005-08-27  Hrvoje Niksic  <hniksic@xemacs.org>
2489
2490         * hash.c (hash_table_map): Rename to hash_table_for_each and
2491         update callers.
2492         Document the meaning of the callback's return value.
2493         (hash_table_iterate): New function.
2494         (hash_table_iter_next): Likewise.
2495         Update most places that used hash_table_for_each to use the
2496         iteration, which doesn't require a temporary function with
2497         explicit state management.
2498
2499 2005-08-26  Albert Chin  <wget@mlists.thewrittenword.com>
2500
2501         * Makefile.in: Use @datadir@.  Define localedir as $(datadir)/locale.
2502
2503 2005-08-26  Jeremy Shapiro  <jnshapiro@gmail.com>
2504
2505         * openssl.c (ssl_init): Set SSL_MODE_AUTO_RETRY.
2506
2507 2005-08-23  Hrvoje Niksic  <hniksic@xemacs.org>
2508
2509         * host.c (address_list_from_ipv4_addresses): Use IP_INADDR_DATA.
2510
2511 2005-08-12  Hrvoje Niksic  <hniksic@xemacs.org>
2512
2513         * wget.h: Renamed strtoll_return to strtoll_type.
2514
2515 2005-08-11  Hrvoje Niksic  <hniksic@xemacs.org>
2516
2517         * progress.c (eta_to_human_short): Switch to days when printing
2518         more than 48h rather than 100h.  (It's not immediately apparent
2519         how many days there are in 83h.)
2520
2521 2005-08-11  Hrvoje Niksic  <hniksic@xemacs.org>
2522
2523         * cmpt.c (strtoll): Define it if missing on the system and if Wget
2524         needs it.
2525
2526         * mswindows.c (str_to_int64): Move to cmpt.c and rename to strtoll.
2527
2528 2005-08-10  Hrvoje Niksic  <hniksic@xemacs.org>
2529
2530         * host.c (print_address): Always use inet_ntop when IPv6 is
2531         enabled.
2532
2533         * host.h (ip_address): Simplify the data union.
2534
2535 2005-08-09  Hrvoje Niksic  <hniksic@xemacs.org>
2536
2537         * mswindows.c (inet_ntop): Also handle IPv4 addresses for
2538         completeness.
2539
2540 2005-08-09  Hrvoje Niksic  <hniksic@xemacs.org>
2541
2542         * http.c (gethttp): Don't read more than the amount of data
2543         specified by the content-length header.
2544
2545 2005-08-09  Vasil Dimov  <vd@datamax.bg>
2546
2547         * ftp.c (getftp): Don't free RESPLINE if ftp_response returns a
2548         status other than FTPOK.
2549
2550 2005-08-04  Giuseppe Bonacci  <g.bonacci@libero.it>
2551
2552         * ftp-ls.c (ftp_parse_unix_ls): Remember the position of the
2553         previous token instead of backtracking back to it.
2554
2555 2005-07-08  Gisle Vanem  <giva@bgnett.no>
2556
2557         * mswindows.h: Include process.h to get getpid() declaration.
2558
2559 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
2560
2561         * utils.c (aprintf): Use vasprintf where available.
2562
2563 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
2564
2565         * url.c (rewrite_shorthand_url): Simplify code using aprintf and
2566         strspn.
2567
2568 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
2569
2570         * gnutls.c (ssl_check_certificate): Check for the validity of the
2571         presented X509 certificate.
2572
2573 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
2574
2575         * openssl.c (ssl_check_certificate): Print custom error messages
2576         for frequent X509 certificate problems.
2577
2578 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
2579
2580         * mswindows.h: Define an alias for stat and fstat, as requested by
2581         config-compiler.h.
2582         (gai_strerror): Define to windows_strerror if NEED_GAI_STRERROR is
2583         defined.
2584
2585 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
2586
2587         * mswindows.h: Use strtoll where available.
2588
2589 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
2590
2591         * sysdep.h: Add a full declaration of fnmatch.h.
2592
2593 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
2594
2595         * utils.c: Unconditionally include <setjmp.h>.
2596
2597 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
2598
2599         * utils.c (fnmatch_nocase): New function.
2600         (proclist): Use it instead of fnmatch when opt.ignore_case is
2601         requested.
2602         (in_acclist): Respect opt.ignore_case.
2603         (frontcmp): Respect opt.ignore_case.
2604
2605         * options.h (struct options): New flag opt.ignore_case.
2606
2607 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
2608
2609         * ptimer.c: Measure time in seconds rather than milliseconds.
2610         Adjusted all callers.
2611
2612 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
2613
2614         * http.c (gethttp): When freeing MESSAGE, take into account that
2615         it can be NULL.
2616
2617 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
2618
2619         * cmpt.c (timegm): Handle years after 2099.
2620
2621 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
2622
2623         * cmpt.c (timegm): Remove unused variable.
2624
2625 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
2626
2627         * cmpt.c (timegm): Don't call mktime; simply count the seconds
2628         between 1970-01-01 and the specified date.
2629
2630 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
2631
2632         * wget.h (or): Define HAVE_SSL when either HAVE_OPENSSL or
2633         HAVE_GNUTLS are defined.
2634
2635         * gnutls.c: New file.
2636
2637 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
2638
2639         * http.c (gethttp): Don't print the request write error message
2640         twice.
2641
2642 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
2643
2644         * openssl.c (openssl_errstr): Instead of always using a large
2645         static buffer, only allocate the error string when there is an
2646         actual error.
2647
2648 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
2649
2650         * xmalloc.c (debugging_free): Prefix hex pointer value with "0x"
2651         when printing.
2652
2653 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
2654
2655         * utils.c (NEXT_BASE64_CHAR): Rename to NEXT_CHAR and simplify to
2656         get the next non-whitespace character.
2657
2658 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
2659
2660         * utils.c (base64_decode): Don't silently tolerate non-base64
2661         non-white-space characters in the base64 stream.
2662
2663 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
2664
2665         * connect.c (LAZY_RETRIEVE_INFO): Make last_tick unsigned to match
2666         transport_map_modified_tick.
2667
2668 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
2669
2670         * config-post.h (alloca): Updated declaration to not enumerate all
2671         Windows compilers.
2672
2673 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
2674
2675         * openssl.c (openssl_errstr): Separate error messages with "; ".
2676
2677 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
2678
2679         * ftp.c (getftp): Ditto.
2680
2681         * http.c (gethttp): Use fd_errstr.
2682
2683         * connect.c (fd_register_transport): Restructure parameters to
2684         include only a single structure that describes transport
2685         implementation.
2686
2687         * openssl.c (openssl_errstr): New function: dump SSL error strings
2688         into a static buffer and return a pointer to the buffer.
2689
2690         * connect.c (fd_errstr): New function; returns transport-specific
2691         error message, or strerror(errno) if transport doesn't supply one.
2692
2693 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
2694
2695         * mswindows.h: Also wrap accept() and listen().
2696
2697 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
2698
2699         * url.c (path_end): Skip separators appropriate for the scheme.
2700         (strpbrk_or_eos): Remove gcc-specific version, as the optimization
2701         it tried to perform no longer applies.
2702
2703 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
2704
2705         * host.c: Don't include "connect.h" now that we no longer have
2706         socket_has_inet6.
2707
2708 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
2709
2710         * host.c: Remove extraneous definition of netdb.h.
2711
2712 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
2713
2714         * http.c (gethttp): Skip error message body in the keep-alive
2715         case.
2716
2717 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
2718
2719         * url.c (url_parse): Would crash when parsing fragments.  Support
2720         fragments for FTP URLs too.
2721
2722 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
2723
2724         * version.c: Don't use "cvs" in version name, since we're not
2725         using CVS anymore.
2726
2727 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
2728
2729         * progress.c (create_image): Ditto.
2730
2731         * retr.c (retr_rate): Display smaller rate numbers with greater
2732         precision.
2733
2734 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
2735
2736         * http.c (response_head_terminator): Minor optimization.
2737
2738         * retr.c (fd_read_hunk): Call terminator with pointer to the start
2739         of the data and the pointer to the current data.  Changed all
2740         callers.
2741
2742 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
2743
2744         * url.c (url_parse): Make sure u->params is not initialized for
2745         http/https URLs.
2746         (url_parse): Don't crash on garbage following []-delimited IPv6
2747         addresses.
2748
2749 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
2750
2751         * main.c (print_help): Don't refer to the non-existent -nr in
2752         description of --mirror.
2753
2754 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
2755
2756         * host.c (pretty_print_address): Renamed to just print_address.
2757         Clarify documentation.
2758
2759 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
2760
2761         * http.c (gethttp): Explicitly document the different cases when
2762         generating the Host header.
2763
2764 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
2765
2766         * host.c (pretty_print_address): Handle error result from
2767         inet_ntop.
2768
2769 2005-06-30  Gisle Vanem  <giva@bgnett.no>
2770
2771         * mswindows.c (inet_ntop): New function.  Print IPv6 addresses
2772         using WSAAddressToString.
2773
2774 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2775
2776         * progress.c (dot_update): Remove unused variable row_qty.
2777
2778 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
2779
2780         * main.c: Check for both SIGHUP and SIGUSR1 before using them.
2781
2782 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
2783
2784         * utils.c: Unconditionally include locale.h.
2785
2786 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
2787
2788         * ptimer.c: Include sys/time.h to get struct timeval.
2789
2790 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
2791
2792         * wget.h: Remove obsolete definition of with_thousand_seps_sum.
2793
2794 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
2795
2796         * gnu-md5.h: Unconditionally include limits.h.
2797
2798 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
2799
2800         * utils.c (random_number): Use lrand48 if available.
2801         (random_float): Use drand48 if available.
2802
2803 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
2804
2805         * main.c (secs_to_human_time): Use print_decimal when printing
2806         total download time in seconds.
2807
2808         * progress.c (print_row_stats): Use it to print total download
2809         time at the end of the download.
2810         (create_image): Ditto.
2811
2812         * utils.c (print_decimal): New function; print small decimal
2813         numbers with more precision than large ones.
2814
2815         * progress.c (print_row_stats): New function.  Print ETA after the
2816         download rate at the end of each row.
2817
2818 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
2819
2820         * init.c (parse_line): Check for alphanumerics.
2821
2822 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
2823
2824         * (dot_create): Remove unnecessary casts.
2825
2826 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
2827
2828         * ftp.c (getftp): Delete trailing newlines from LIST output so
2829         lines don't come out with trailing \015\012 with -S.
2830
2831 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2832
2833         * mswindows.h: Remove superfluous includes.
2834
2835 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2836
2837         * config-post.h (alloca): Amend alloca declaration to take care of
2838         all Win32 compilers, not just MSVC and MinGW.
2839
2840 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2841
2842         * utils.c (get_grouping_data): Force separator to "." rather than
2843         " " when "," is taken.
2844
2845 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2846
2847         * wget.h (PTR_FORMAT): Cast the result of sizeof to int before
2848         passing it to printf's %*.
2849
2850         * retr.h: Declare output_stream and output_stream_regular.
2851
2852         * ftp.h: Declare ftp_last_respline.
2853
2854         * convert.h: Declare dl_url_file_map.
2855
2856         * http.h: New file.
2857
2858 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2859
2860         * cookies.c: Make cookies_now static.
2861
2862 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2863
2864         * utils.c (human_readable): Remove intermediary cast to long; MSVC
2865         has problems casting *unsigned* __int64 to double.
2866
2867 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2868
2869         * sysdep.h: Use the system-provided fnmatch by default.
2870
2871 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2872
2873         * http.c (mktime_from_utc): Renamed to timegm and moved to cmpt.c.
2874         Don't compile it if GNU timegm is available.
2875         (http_atotm): Use timegm.
2876
2877 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2878
2879         * http.c (http_atotm): Correctly query the old locale value.
2880
2881 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2882
2883         * config-post.h (alloca): Don't #define alloca under MinGW32,
2884         which defines it in malloc.h, included from mswindows.h.
2885
2886 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2887
2888         * utils.c (get_grouping_data): Force the use of separators in C
2889         locale.
2890
2891 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2892
2893         * main.c (i18n_initialize): Set all locale categories.
2894
2895         * http.c (http_atotm): Temporarily set locale to "C".
2896
2897 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2898
2899         * http.c (gethttp): Improve "POST data file missing" error
2900         message.
2901
2902 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2903
2904         * progress.c (set_progress_implementation): Type COLON as const
2905         char *.
2906
2907 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
2908
2909         * utils.c (with_thousand_seps): Handle negative numbers.
2910
2911 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2912
2913         * progress.c (create_image): Mark the "eta" string for translation.
2914
2915 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2916
2917         * html-url.c (get_urls_file): Don't explicitly set entry->next to
2918         NULL since entry is already zeroed out.
2919
2920 2005-06-26  Gisle Vanem  <giva@bgnett.no>
2921
2922         * mswindows.h: Define gai_strerror under MinGW.
2923
2924 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2925
2926         * utils.c (with_thousand_seps): Correctly implement thousand seps
2927         consisting of more than one character.
2928
2929 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2930
2931         * main.c (secs_to_human_time): Ditto.
2932
2933         * progress.c (create_image): Print more exact duration of very
2934         short downloads.
2935
2936         * main.c (secs_to_human_time): Don't translate time suffixes "h",
2937         "m", and "s", which are not strictly SI, but are "accepted for use
2938         with SI".
2939         (secs_to_human_time): Print really small intervals as 0s, not
2940         0.00s.
2941
2942 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2943
2944         * config-post.h: Replace the alloca declaration with the one from
2945         the latest Autoconf manual.  This should remove a warning with GCC
2946         on AIX.
2947
2948 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2949
2950         * ftp.c (getftp): Always invoke SIZE, not only when continuing a
2951         download.
2952
2953         * main.c (main): Ditto here.
2954
2955         * progress.c (create_image): When the download is finished, print
2956         how long it took.
2957
2958 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
2959
2960         * main.c (main): Print the downloaded and quota amounts with the
2961         "human_readable" function.
2962
2963         * ftp.c (print_length): Ditto.
2964
2965         * http.c (gethttp): Don't display thousand separators.
2966
2967         * utils.c (with_thousand_seps): Rewritten to respect locale
2968         settings and to be type size agnostic.
2969
2970 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
2971
2972         * utils.c (human_readable): Divide with 1024 instead of shifting
2973         so the operation can work with non-integer N.
2974
2975 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
2976
2977         * progress.c (eta_to_human): New logic for more human-readable
2978         ETA.
2979
2980 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
2981
2982         * utils.c (with_thousand_seps_sum): Decrease buffer size so it
2983         cannot overrun add_thousand_seps's buffer.
2984
2985 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
2986
2987         * utils.c (SPRINTF_WGINT): The correct format is %I64d, not just
2988         %I64.
2989
2990 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
2991
2992         * http.c (http_loop): Don't warn about wildcards in HTTP URLs if
2993         globbing isn't requested in the first place.
2994
2995         * retr.c (retrieve_url): Temporarily turn off globbing when
2996         processing HTTP->FTP redirects.
2997
2998 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
2999
3000         * utils.c (with_thousand_seps_sum): Now defined only if
3001         SUM_SIZE_INT is double.
3002
3003         * wget.h (SUM_SIZE_INT): Instead of bothering with long, long
3004         long, __int64, and friends, simply either use wgint or double, end
3005         of story.  Since we know how to print either, we no longer need
3006         LARGE_INT_FMT.
3007
3008         * sysdeps.h (LARGE_INT): Renamed to SUM_SIZE_INT to better reflect
3009         its intent, and moved to wget.h.
3010
3011 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
3012
3013         * Makefile.in: No need to clean .libs.
3014
3015 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
3016
3017         * cookies.c (parse_set_cookies): Cast pointer subtraction to int
3018         before using it with %d; AIX compiler warns on this.
3019         Reported by Jens Schleusener.
3020
3021 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
3022
3023         * http.c (gethttp): Don't prepend / here.
3024
3025         * cookies.c (cookie_handle_set_cookie): Prepend / to PATH.
3026         (cookie_header): Ditto.
3027
3028 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
3029
3030         * init.c: opt.verbose must be declared as int.
3031
3032 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
3033
3034         * cmpt.c (strpbrk): Removed.
3035         (mktime): Removed.
3036         Include <time.h>.
3037
3038 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
3039
3040         * utils.c (read_file): Ditto.
3041
3042         * main.c (main): Use struct_fstat.
3043
3044         * mswindows.h (struct_fstat): Define a struct_fstat to deal with
3045         the fact that Borland 5.5 has 64-bit stat, but not 64-bit fstat!
3046
3047 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
3048
3049         * sysdep.h: Remove code that deals with Watcom.
3050
3051 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3052
3053         * all: Use bool instead of int and false/true instead of 0/non-0
3054         for boolean variables and values.
3055
3056 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3057
3058         * sysdep.h: Include the stdbool.h/_Bool/bool blurb from Autoconf.
3059
3060 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3061
3062         * init.c (cmd_lockable_boolean): Removed.
3063
3064 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3065
3066         * cookies.c (struct cookie): Use 1-bit bitfields for booleans
3067         which makes the structure takes less space at no cost in
3068         complexity.
3069
3070 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3071
3072         * Makefile.in ($(OBJ)): Add the config.h dependency.
3073
3074 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3075
3076         * openssl.c, connect.c, host.c: Replace instances of #ifdef
3077         ENABLE_DEBUG if (opt.debug) {...} #endif with IF_DEBUG {...}.
3078
3079         * main.c: Rename the IF_DEBUG defined here to WHEN_DEBUG.
3080
3081         * wget.h (IF_DEBUG): New macro.
3082         (DEBUGP): Define in terms of IF_DEBUG.
3083
3084 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3085
3086         * http.c (gethttp): Only handle --set-cookies (and assert that
3087         cookie jar exists) if opt.cookies is true.  Failure to do so
3088         triggered the assert when --no-cookies was used and the server
3089         sent a Set-Cookie header.  Ouch!
3090
3091 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3092
3093         * connect.c (select_fd): Expect select() to exist.
3094
3095         * utils.c (xsleep): Always use select() as sleep fallback on
3096         non-Windows platforms.
3097
3098         * ptimer.c: Delete the implementation of PTIMER_TIME.
3099
3100         * main.c: Assume existence of signal(), test for different signal
3101         names instead.
3102
3103         * cmpt.c: Better document reasons why certain functions are
3104         included.
3105
3106 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
3107
3108         * Makefile.in: Remove the manually maintained dependency list;
3109         make all object files depend on every header.
3110
3111 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
3112
3113         * hash.c: Rename "mapping" to "cell" to avoid confusion with the
3114         term "mapping" (or "map") sometimes being used for the entire hash
3115         table.  Also rename "non-empty" to "occupied" for easier reading
3116         of if (!NON_EMPTY (...)) ... .
3117
3118 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
3119
3120         * main.c, ptimer.c, sysdep.h, utils.c: Use #elif to simplify reading of
3121         chained if-else-else-else-... statements.
3122
3123 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
3124
3125         * all: Return type of signal handlers is `void'.  Include signal.h
3126         unconditionally.
3127
3128         * all: Don't explicitly cast values returned by malloc.  We no
3129         longer support ancient compilers that don't declare malloc, and we
3130         never supported C++ builds.
3131
3132 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
3133
3134         * all: Don't declare errno.  Include both time.h and sys/time.h,
3135         as long as sys/time.h exists.  Don't dereference function pointers
3136         when invoking the functions they point to.
3137
3138         * cmpt.c (memmove): Remove function mandated by C89.
3139         (strerror): Ditto.
3140         (strstr): Ditto.
3141
3142         * all: Undo the K&R-ization changes from 2005-05-03.
3143
3144         * all: Remove support for K&R compilers: use C89 function
3145         declarations, remove definition of PARAMS, remove support for
3146         varargs, and remove ansi2knr.  Assume the presence of time.h,
3147         string.h, and other headers mandated by C89.
3148
3149 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
3150
3151         * init.c (cmd_lockable_boolean): Don't recognize literal "2" and
3152         "-1" values; unlike 0 and 1, those should never be exposed to the
3153         user.  Update the error message to be more self-consistent, as
3154         proposed by Benno Schulenberg.
3155
3156 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
3157
3158         * http.c (gethttp): Don't free "head" before using it to save
3159         headers.
3160
3161 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
3162
3163         * http.c (gethttp): When -E is in use, check for file existence
3164         after appending ".html" to the name and modify the file name if
3165         necessary.
3166
3167 2005-06-17  Hrvoje Niksic  <hniksic@xemacs.org>
3168
3169         * connect.c (socket_has_inet6): Removed.
3170
3171         * host.c (lookup_host): Don't use the AI_ADDRCONFIG getaddrinfo
3172         hint.
3173
3174 2005-06-16  Hrvoje Niksic  <hniksic@xemacs.org>
3175
3176         * init.c (cmd_lockable_boolean): Improve the error message so it
3177         lists the more useful values first.
3178
3179 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
3180
3181         * http.c (gethttp): Also report the system error when the POST
3182         data file is missing.
3183
3184 2005-06-15  Benno Schulenberg  <benno@nietvergeten.nl>
3185
3186         * ftp.c, http.c, connect.c, cookies.c, html-url.c, init.c, res.c:
3187         Gettext-ize messages that were previously missed.
3188
3189 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
3190
3191         * host.h (ip_address): Remove the trailing comma from the type
3192         enum in the no-IPv6 case.
3193
3194         * main.c (struct cmdline_option): Remove the trailing comma from
3195         the enum.
3196
3197         Reported by Jens Schleusener.
3198
3199 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
3200
3201         * url.c (strpbrk_or_eos): Check for a recent GCC version before
3202         using the statement-as-expression extension.
3203
3204 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
3205
3206         * http.c (gethttp): Don't attempt to "skip short body" if we're
3207         issuing a HEAD request (in which case the response head is not
3208         followed by a body).
3209
3210 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
3211
3212         * init.c (cmd_spec_header): Don't split the string along the
3213         commas using cmd_vector; just append the new value using
3214         vec_append instead.
3215
3216         * utils.c (vec_append): New function.
3217
3218 2005-05-27  Andreas Beckmann  <debian@abeckmann.de>
3219
3220         * html-url.c (tag_handle_link): Mark the content from the <link
3221         src="..."> tag as expecting HTML.
3222
3223 2005-05-24  Hrvoje Niksic  <hniksic@xemacs.org>
3224
3225         * http.c (http_atotm): Document the origin of the "cookie date"
3226         format.
3227
3228 2005-05-21  Hrvoje Niksic  <hniksic@xemacs.org>
3229
3230         * init.c (setval_internal): Report exact command name alongside
3231         the "display name".
3232
3233 2005-05-18  Hrvoje Niksic  <hniksic@xemacs.org>
3234
3235         * cookies.c (update_cookie_field): Explicitly cast -1 to time_t to
3236         cope with systems where time_t is unsigned.
3237
3238         * cookies.c: Remove unnecessary casts to time_t from values
3239         already of that type.
3240
3241 2005-05-17  Hrvoje Niksic  <hniksic@xemacs.org>
3242
3243         * ftp.c (ftp_loop_internal): Same here.
3244
3245         * http.c (http_loop): Don't clobber the file when -c is specified
3246         and the first attempt to retrieve the file fails.
3247
3248 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
3249
3250         * openssl.c (ssl_check_certificate): Print all issues with a
3251         certificate.
3252
3253 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
3254
3255         * ftp-basic.c: Don't xfree() the line returned by ftp_response if
3256         the returned code is not FTPOK.
3257
3258 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
3259
3260         * init.c (cleanup): Don't free the non-existent opt.ftp_acc.  Free
3261         the SSL-related stuff.
3262
3263 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
3264
3265         * ftp.c (print_length): Consistently print \n at end of the
3266         "Length" line.
3267
3268 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
3269
3270         * openssl.c (ssl_connect): Announce the beginning and the end of
3271         the SSL handshake when in debug mode.
3272
3273         * wget.h (PTR_FORMAT): New macro for easier printing of pointer
3274         values.  Use %0*lx along with PTR_FORMAT instead of %p.
3275
3276 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
3277
3278         * http.c (gethttp): Would forget to close the connection when
3279         keep_alive was not used.
3280
3281 2005-05-13  Hrvoje Niksic  <hniksic@xemacs.org>
3282
3283         * openssl.c (pattern_match): Document the code that decides
3284         whether "*" matches ".".
3285
3286 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
3287
3288         * ftp-ls.c (ftp_index): Use %d to print the port number, which is
3289         now int.
3290         From Steven M. Schweda's VMS patches.
3291
3292 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
3293
3294         * url.c (rewrite_shorthand_url): Don't rewrite "https://host" to
3295         "ftp://https//host" when SSL is not used.
3296
3297 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
3298
3299         * openssl.c (ssl_check_server_identity): Renamed to
3300         ssl_check_certificate because it does more than just checking the
3301         server's identity.
3302         (ssl_check_certificate): Tell the user about
3303         --no-check-certificate.
3304
3305 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
3306
3307         * openssl.c (ssl_init): Always use SSL_VERIFY_NONE, so that the
3308         handshake finishes even if the certificate is invalid.  That way
3309         ssl_check_server_identity can provide better diagnostics on why
3310         the verification failed.
3311
3312 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
3313
3314         * openssl.c (pattern_match): New function.
3315         (ssl_check_server_identity): Treat peer certificate common name as
3316         wildcard.
3317
3318 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
3319
3320         * openssl.c (ssl_check_server_identity): Print certificate subject
3321         and issuer.
3322
3323 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
3324
3325         * res.c (res_register_specs): Correctly pass pointers to
3326         hash_table_get_pair.
3327
3328 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
3329
3330         * http.c (gethttp): Call ssl_check_server_identity.
3331
3332         * openssl.c (ssl_check_server_identity): New function, verifies
3333         that the host name in the certificate matches the actual host
3334         name.
3335         (verify_cert_callback): Removed, since it didn't do anything
3336         except returning the preverify_ok argument.
3337
3338         * connect.c (fd_transport_context): Allow retrieval of the context
3339         pointer registered with fd_register_transport.
3340
3341 2005-05-09  Hrvoje Niksic  <hniksic@xemacs.org>
3342
3343         * openssl.c (verify_cert_callback): Renamed from verify_callback.
3344         Always return the received "ok" value.  Print the X509 name in
3345         debug mode.
3346         (ssl_init): Enable partial writes in SSL context.
3347
3348 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
3349
3350         * http.c (http_loop): Check for wildcards in the URL path
3351         component, not in the whole URL.
3352
3353         * ftp.c (ftp_loop): Check for wildcards in URL path before
3354         unescaping, so the users can escape globbing metacharacters with %
3355         escapes.
3356
3357 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
3358
3359         * init.c (run_command): Correctly interpret the return value of
3360         parse_line.
3361         (commands): Re-alphabetize.
3362
3363 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
3364
3365         * netrc.c (parse_netrc): Explicitly check for assignment != NULL
3366         to silence warning from Borland C.
3367
3368         * url.c (sync_path): Don't unnecessarily increment p.
3369         (url_parse): Don't unnecessarily set url_encode to NULL just
3370         prior to return from the function.
3371
3372 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
3373
3374         * log.c (escnonprint_internal): Place variable declarations
3375         before other statements.
3376
3377 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
3378
3379         * html-url.c: Include recur.h.
3380
3381         * http.c (request_new): Define as accepting no args.
3382
3383 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
3384
3385         * url.c (strpbrk_or_eos): Made inline.  Use strchr(s, '\0') for
3386         finding the NUL char position.
3387
3388 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
3389
3390         * url.c (decide_copy_method): Renamed to char_needs_escaping.
3391         Since it now returns only two possible values, change it to return
3392         boolean (int).
3393
3394 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
3395
3396         * ftp-basic.c (ftp_request): Prevent newlines in VALUE causing
3397         inadvertent sending of multiple FTP commands.
3398
3399 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
3400
3401         * url.c (decide_copy_method): Never cause reencode_escapes to
3402         decode % escapes; it is too intrusive and breaks some servers.
3403
3404 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
3405
3406         * http.c (gethttp): When tunnelling SSL traffic over proxy with
3407         CONNECT, we're really talking to the remote server directly.
3408         Because of this, the request-line argument must be the URL path
3409         rather than the whole URL, as it would be when using regular
3410         proxies.
3411         Reported by Charles Lane.
3412
3413 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
3414
3415         * init.c (cmd_spec_useragent): Allow empty User-Agent.
3416
3417         * http.c (gethttp): Don't print "unknown authentication scheme"
3418         for failed Basic authentication.
3419         (SET_USER_AGENT): Don't set user-agent if opt.useragent is empty.
3420         (gethttp): Use alloca for allocation of www_authenticate.
3421
3422 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
3423
3424         * main.c (print_help): Fix wording of --secure-protocol help text.
3425
3426 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
3427
3428         * cmpt.c (strstr): Updated from glibc 2.3.5.
3429
3430 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3431
3432         * http.c (http_atotm): Zero out the whole struct tm being passed
3433         to strptime.
3434
3435 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3436
3437         * main.c (main): Propagate option name to setoptval.
3438
3439         * init.c (setoptval): Accept another argument, OPTNAME.  Propagate
3440         that argument as the option name independently of the actual
3441         command, determined by command_by_name(com).
3442
3443 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3444
3445         * init.c (parse_line): Make the return value indicate whether
3446         there was a syntax error or a setter failed.
3447         (run_wgetrc): Return an indication on whether an error has been
3448         encountered.
3449         (initialize): Abort if there have been errors running either
3450         .wgetrc file.
3451
3452 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3453
3454         * log.c (copy_and_escape): Slightly reduce code repetition between
3455         the two loops.
3456
3457 2005-05-05  Charles C.Fu  <ccwf@bacchus.com>
3458
3459         * utils.c (proclist): Strip leading slash when calling fnmatch
3460         too, otherwise wildcard comparisons always fail.
3461
3462 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3463
3464         * utils.c (touch): Set access time to current time.
3465
3466 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3467
3468         * url.c (url_unescape): Don't unescape %00, it effectively
3469         truncates the string.
3470
3471 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3472
3473         * log.c (copy_and_escape): Replace the FOR_URI argument with a
3474         slightly more general mechanism for specifying different kinds of
3475         escape.
3476
3477 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3478
3479         * ftp-basic.c (ftp_response): Fix printing FTP server response.
3480
3481 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
3482
3483         * retr.c (limit_bandwidth_reset): Reset sleep_adjust.
3484         (limit_bandwidth): Don't allow huge "adjustment" values that
3485         result from being suspended for a while.
3486
3487 2005-05-04  Hrvoje Niksic  <hniksic@xemacs.org>
3488
3489         * wget.h: If gettext was found but libtintl.h wasn't, declare
3490         gettext's return type to avoid type mismatches.
3491
3492 2005-05-03  Hrvoje Niksic  <hniksic@xemacs.org>
3493
3494         * url.c (url_parse): Rename label `error' to avoid conflict with
3495         identifier.
3496
3497         * retr.c (fd_read_body): Rename label `out' to avoid conflict with
3498         identifier.
3499         (fd_read_hunk): Use explicit double constant.
3500         (retrieve_from_file): Don't use string concatenation.
3501         (sleep_between_retrievals): Make sure xsleep is called with a
3502         `double' argument.
3503         (no_proxy_match): Define as static, like it is declared.
3504
3505         * progress.c (bar_create): Use 0.0 instead of 0 because K&R
3506         compilers can't automatically promote it.
3507
3508         * http-ntlm.c (ntlm_output): Replace \xHH sequences with \OOO for
3509         the sake of old compilers.
3510
3511         * ftp.c (ftp_loop_internal): Don't use string concatenation.
3512
3513         * http.c (request_send): Use explicit double constants when
3514         calling fd_read and fd_write.
3515         (post_file): Ditto.
3516         (gethttp): Ditto.
3517         (skip_short_body): Ditto.
3518
3519         * ftp-basic.c: When calling fd_write, specify the last argument as
3520         a `double' constant for the sake of K&R compilers which don't see
3521         the prototype and therefore can't promote it to double
3522         automatically.
3523
3524         * cookies.c (cookie_jar_load): Rename abort label to abort_cookie
3525         to avoid name conflict in K&R compilers.
3526
3527 2005-04-29  Hrvoje Niksic  <hniksic@xemacs.org>
3528
3529         * ptimer.c (posix_init): Since we allow _POSIX_MONOTONIC_CLOCK==0,
3530         it is not enough to check for _POSIX_MONOTONIC_CLOCK-0, we must
3531         also check for defined(_POSIX_MONOTONIC_CLOCK).
3532
3533 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
3534
3535         * ftp.c, hash.c, connect.c, host.c, http.c: Remove unreached code,
3536         such as "break" following return or abort.
3537
3538 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
3539
3540         * init.c (commands): Wrap the use of opt.random_file in #ifdef
3541         HAVE_SSL.
3542
3543 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
3544
3545         * http.c (gethttp): Correctly set the user agent.
3546
3547 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
3548
3549         * init.c (cmd_spec_useragent): Free the old value of
3550         opt.useragent before setting the new one.
3551
3552 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
3553
3554         * main.c: Map --ftp-password, --http-password and --proxy-password to
3555         the new ftppassword, httppassword and proxypassword commands
3556         respectively.  Document the --user and --password options in the help
3557         string.
3558
3559 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
3560
3561         * ftp.c: Add support for --user and --password.
3562
3563         * http.c: Add support for --user and --password.
3564
3565         * init.c: Deprecated ftppasswd, httppasswd, login, passwd and
3566         proxypasswd commands.  Added ftppassword, ftpuser, httppassword,
3567         password, proxypassword and user commands.
3568
3569         * main.c: Renamed --ftp-passwd to --ftp-password.  Added --ftp-user,
3570         --http-password, --password, --proxy-password and --user.  Deprecated
3571         --http-passwd and --proxy-passwd.  Added documentation for new options
3572         and removed documentation for deprecated options in the help string.
3573
3574         * options.h (struct options): Added user and passwd members to handle
3575         --user and --password respectively.  Renamed ftp_acc and ftp_pass
3576         members to ftp_user and ftp_passwd for consistency.
3577
3578 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
3579
3580         * main.c (print_help): Advertise "DER", not "ASN1".
3581
3582 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
3583
3584         * openssl.c (init_prng): Disable the weak random seed by default.
3585
3586         * http.c (gethttp): Simplify SSL initialization; disable SSL when
3587         anything goes wrong with the initialization.
3588
3589         * options.h (struct options): New option opt.random_file.
3590
3591 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
3592
3593         * init.c: Wrap private key commands in IF_SSL.
3594
3595 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
3596
3597         * openssl.c (ssl_init): Ditto.
3598
3599         * options.h (struct options): Allow separate specification of key
3600         type and certificate type.
3601
3602         * init.c (cmd_spec_cert_type): Provide a "der" synonym for "asn1"
3603         certificate encoding.
3604
3605 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
3606
3607         * openssl.c: Renamed "gen_sslfunc.c" to "openssl.c" and
3608         "gen_sslfunc.h" to "openssl.h".  This reflects the intent of
3609         openssl.c encapsulating the OpenSSL-specific code.
3610
3611 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
3612
3613         * init.c: Renamed "closure" (a synonym for context in some
3614         cultures) to "place", which more accurately reflects the usage.
3615
3616 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
3617
3618         * gen_sslfunc.c (ssl_init): Use default locations for loading the
3619         certificate bundles.
3620         (ssl_init_prng): Disable the cryptographically weak PRNG
3621         initialization fallback.
3622
3623         * init.c: Renamed SSL command-line arguments and wgetrc commands.
3624         (defaults): Check the server certificate by default.
3625
3626 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
3627
3628         * cookies.c (cookie_handle_set_cookie): Delete the part of the
3629         path after the trailing slash.
3630
3631         * http.c (gethttp): Call cookie_handle_set_cookie with path that
3632         begins with '/'.
3633
3634 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
3635
3636         * http.c (gethttp): Call skip_short_body only if keep_alive is in
3637         use.
3638         (gethttp): Send the User-Agent header with the CONNECT request as
3639         well.
3640
3641 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
3642
3643         * main.c (option_data): Removed support for the undocumented flag
3644         --use-proxy.
3645
3646 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
3647
3648         * main.c (option_data): Don't treat -Y as a boolean switch; treat
3649         it as a value switch instead, so "-Y off" continues to work.
3650
3651 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
3652
3653         * utils.c (aprintf): Delete unreachable statement.
3654
3655 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
3656
3657         * host.c (cmp_prefer_ipv4): New function.
3658         (cmp_prefer_ipv6): New function.
3659         (lookup_host): Use the appropriate comparator according to
3660         opt.prefer_family.
3661
3662         * init.c: New option prefer_family.
3663
3664         * host.c (is_valid_ipv6_address): Spell NS_* constants in lower
3665         case to avoid clash with system headers.
3666         (lookup_host): Reorder the addresses so that IPv4 ones come first.
3667
3668         * utils.c (stable_sort): New function.
3669
3670 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
3671
3672         * connect.c (retryable_socket_connect_error): Return 0 for
3673         ENETUNREACH and EHOSTUNREACH.
3674
3675 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
3676
3677         * cmpt.c: Reenable the memmove implementation for systems that
3678         lack it.
3679
3680         * http.c (gethttp): Store the "authorized" state of the persistent
3681         connection.
3682         (request_remove_header): New function.
3683         (gethttp): Don't send the "Basic" authentication if the connection
3684         is already authorized.
3685
3686 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
3687
3688         * utils.c (base64_encode): Treat input as unsigned chars.
3689         Required for correct encoding of binary stuff.
3690
3691 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
3692
3693         * http-ntlm.c: Format the function definitions in an
3694         ansi2knr-friendly fashion.
3695
3696 2005-04-22  Hrvoje Niksic  <hniksic@xemacs.org>
3697
3698         * http.c (gethttp): Handle multiple WWW-Authentication headers,
3699         only one of which is recognized.  Those are sent by IIS with NTLM
3700         authorization.
3701         (create_authorization_line): Propagate information whether
3702         authorization is finished.
3703         (gethttp): Only stop authorization when it's really finished, not
3704         after fixed two steps.
3705
3706 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
3707
3708         * gen_sslfunc.c (ssl_init): Fix warning message text; mark the
3709         message as translatable.
3710
3711 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
3712
3713         * main.c (print_help): Print the EGD option outside the cluster of
3714         SSL options.
3715
3716 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
3717
3718         * http-ntlm.c (ntlm_output): Fix setting the domain.
3719         Suggested by Sami Krank.
3720
3721 2005-04-20  Mauro Tortonesi  <mauro@ferrara.linux.it>
3722
3723         * connect.c: Set IPV6_V6ONLY socket option when -6 switch is used.
3724
3725 2005-04-20  FUJISHIMA Satsuki  <sf@FreeBSD.org>
3726
3727         * http.c (request_set_header): Fix the check whether a new header
3728         needs to be allocated.
3729
3730 2005-04-18  Hrvoje Niksic  <hniksic@xemacs.org>
3731
3732         * utils.c (base64_encode): Use the parameter order that makes more
3733         sense.  Return the length of the base64 written.  Updated all
3734         callers.
3735
3736 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
3737
3738         * http.c (request_set_header): Free NAME when VALUE is NULL and
3739         freeing the header name is requested.
3740
3741 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
3742
3743         * snprintf.c (fmtstr): Declare VALUE as const char *.
3744         Based on patch by Russ Allbery.
3745
3746 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
3747
3748         * snprintf.c (fmtfp): More correct handling of significant digit
3749         count with %g -- 0.002 has one significant digit, not three.
3750
3751 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
3752
3753         * retr.c (fd_read_body): Respect read timeout with non-interactive
3754         or no progress gauge -- treat ETIMEDOUT specially only when
3755         progress_interactive.
3756         Reported by FUJISHIMA Satsuki.
3757
3758 2005-04-16  FUJISHIMA Satsuki  <sf@FreeBSD.org>
3759
3760         * http.c (gethttp): Don't use HTTP/1.0 persistent connections over
3761         proxy.
3762
3763 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
3764
3765         * snprintf.c: Use the PARAMS macro to handle prototypes.  Write
3766         function definitions in the ansi2knr-friendly way.
3767         (fmtstr): If string precision is specified, don't read VALUE past
3768         it.
3769         (dopr): Actually print %g and %e formats.
3770         (fmtfp): Fix a bug that caused 0.01 to be printed as 0.1.
3771         (fmtfp): Use LLONG in floating point conversions to be able to
3772         convert more digits.
3773         (fmtfp): Interpret precision as number of significant digits with
3774         %g.
3775         (fmtfp): Omit trailing decimal zeros with %g.
3776
3777         * snprintf.c: Don't include <ctype.h> because none of it is used.
3778         Include strings.h/string.h, as per Autoconf.
3779
3780 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
3781
3782         * ptimer.c: Use _POSIX_TIMERS - 0 > 0, which handles the case when
3783         _POSIX_TIMERS is defined but empty, as well as the case when it is
3784         undefined.  Do the same with the check for _POSIX_MONOTONIC_CLOCK.
3785         Suggested by Larry Jones.
3786
3787 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
3788
3789         * ptimer.c: Check that _POSIX_TIMERS is defined as well as > 0.
3790         Problem reported by Steven M. Schweda.
3791
3792 2005-04-14  Hrvoje Niksic  <hniksic@xemacs.org>
3793
3794         * http.c (skip_short_body): Print the skipped body data in debug
3795         mode.
3796         (skip_short_body): Don't skip more than 4k of body data.
3797         (skip_short_body): Return whether the skipping was successful.
3798         (gethttp): If skip_short_body failed, invalidate the connection.
3799
3800 2005-04-12  Gisle Vanem  <giva@bgnett.no>
3801
3802         * ftp.c (getftp): Ditto.
3803
3804         * http.c (gethttp): Open the output file in binary mode.
3805
3806 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
3807
3808         * hash.c: Conditionalize including config.h on HAVE_CONFIG_H
3809         instead of on STANDALONE.
3810
3811 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
3812
3813         * gen_sslfunc.c (ssl_print_errors): Made static.
3814         (ssl_print_errors): Eliminate potentially dangerous fixed-size
3815         error buffer.  Passing NULL to ERR_error_string causes it to use
3816         its own static buffer, which is fine for our purposes.
3817
3818         * gen_sslfunc.c: Include gen_sslfunc.h.  Make the declarations of
3819         ssl_init and ssl_conect match the actual definitions.
3820         (ssl_connect): Simply return a boolean, the SSL context is no
3821         longer useful as a return value.
3822
3823         * retr.c: Don't include SSL headers; we don't need them.
3824
3825 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
3826
3827         * config-post.h: Don't define _VA_LIST under Solaris; it breaks
3828         compilation with GCC 3.4 under Solaris 10.  (It was defined to
3829         avoid a warning with previous versions of GCC.)
3830
3831 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
3832
3833         * xmalloc.c (register_ptr): Warn the user to increase SZ prior to
3834         aborting.
3835
3836 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
3837
3838         * convert.c (convert_cleanup): Free converted_files.
3839
3840 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
3841
3842         * wget.h (DEBUGP): Use __builtin_expect to give a hint to GCC that
3843         opt.debug is false in the vast majority of cases.
3844
3845 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
3846
3847         * config-post.h: Declare alloca as void *, not char *.
3848
3849 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
3850
3851         * recur.c (download_child_p): When -p is used, (temporarily)
3852         ignore accept/reject rules for HTMLs, even when they are at the
3853         maximum recursion depth.  That is because with -p we are, if
3854         necessary, overstepping the max. depth to get the requisites.
3855
3856 2004-06-12  Larry Jones <lawrence.jones@ugsplm.com>
3857
3858         * recur.c (download_child_p): Correct the logic in check number 6:
3859         test opt.reclevel (not DEPTH) against INFINITE_RECURSION.
3860
3861 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
3862
3863         * url.c: Use "static const" in preference to "const static".
3864         Sun's cc warns that "storage class after type is obsolescent".
3865
3866         * url.c (urlchr_table): Don't mark ~ as unsafe, too many broken
3867         web sites are confused when ~ is changed to %7E.  Their servers
3868         redirect /%7Efoo/ to /~foo/, which Wget again accesses using %7E,
3869         causing further redirections, therefore looping infinitely.  See
3870         Debian bug #301624 for an example.
3871
3872 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
3873
3874         * alloca.c: Include wget.h to be able to use xmalloc.  In addition
3875         to defining malloc to xmalloc, also define free to xfree.
3876
3877 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
3878
3879         * http-ntlm.c (ntlm_output): Use "char", not "unsigned char" for
3880         ntlmbuf.  Our base64 functions accept char anyway.
3881         (ntlm_output): Join up the format string, since we nominally
3882         support K&R compilers.
3883         (ntlm_output): Ditto.
3884
3885 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3886
3887         * ptimer.c: Use Windows timers under Cygwin, whose POSIX timer
3888         implementation is incomplete.
3889
3890 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3891
3892         * ptimer.c (struct ptimer): Remove the unused initialized field.
3893
3894         * ptimer.c: Renamed function parameters from WT (which used to
3895         stand for wget_timer or wtimer) to PT.
3896
3897 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3898
3899         * ptimer.c (posix_init): Be smarter about choosing clocks.  In
3900         decreasing order of preference, use CLOCK_MONOTONIC,
3901         CLOCK_HIGHRES, and CLOCK_REALTIME.
3902         (ptimer_allocate): Removed.
3903
3904         * ptimer.c: Refactor the code by cleanly separating the
3905         architecture-dependent code from the architecture-independent
3906         code.
3907
3908 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3909
3910         * ptimer.c (ptimer_init): Explicitly check that
3911         _POSIX_MONOTONIC_CLOCK is *both* defined and >=0.  (Undefined
3912         symbols are >=0.)
3913
3914 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3915
3916         * ptimer.c (ptimer_diff): Fix typo affecting Windows build.
3917
3918 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3919
3920         * ptimer.c (ptimer_init): In fact, _POSIX_MONOTONIC_CLOCK needs to
3921         be >= 0.
3922
3923         * ptimer.c (ptimer_init): Check whether _POSIX_MONOTONIC_CLOCK is
3924         defined instead of whether it's greater than 0.  glibc defines it
3925         to 0, but still makes it available via sysconf.
3926
3927 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3928
3929         * mswindows.c (str_to_int64): Rename OVERFLOW and UNDERFLOW to
3930         INT64_OVERFLOW and INT64_UNDERFLOW, since those names are used.
3931
3932 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
3933
3934         * ptimer.c: New file.  Move the "wtimer" functions from utils.c to
3935         this file and rename them to ptimer_.
3936
3937 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
3938
3939         * host.c (NO_ADDRESS): Define NO_ADDRESS only after the system
3940         headers have been included.
3941
3942 2005-04-06  Hrvoje Niksic  <hniksic@xemacs.org>
3943
3944         * http.c (pconn): Include NTLM data, which is per-connection.
3945         (known_authentication_scheme_p): Recognize NTLM authorization.
3946         (create_authorization_line): Call ntlm_input and ntlm_output.
3947
3948         * http-ntlm.c: New file, donated by Daniel Stenberg and originally
3949         written for curl, heavily modified for Wget.
3950
3951         * utils.c (base64_encode): Relocated from http.c, since it is now
3952         used by http-ntlm.c, and will possibly be used elsewhere.
3953         (base64_decode): New function, originally based on code from GNU
3954         recode.
3955
3956 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
3957
3958         * ftp.c (ftp_loop): Ditto.
3959
3960         * ftp-basic.c (ftp_pasv): Use the xzero shorthand for memset(0).
3961         (ftp_lpsv): Ditto.
3962
3963 2005-04-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
3964
3965         * Makefile.in: removed string_t.c from list of source files.
3966
3967 2005-04-04  Mauro Tortonesi  <mauro@ferrara.linux.it>
3968
3969         * string_t.c: Removed.
3970
3971         * string_t.h: Removed.
3972
3973 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
3974
3975         * url.c (rewrite_shorthand_url): Only accept recognized schemes.
3976         That way "foo:80" will correctly be rewritten to "http://foo:80"
3977         instead of left unchanged and ultimately rejected because of
3978         "unsupported scheme foo".
3979
3980 2005-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
3981
3982         * utils.c (number_to_string): Avoid explicit 64-bit constants;
3983         construct them by multiplication at compile-time.
3984
3985         * utils.c, elsewhere: Don't append "L" to 32-bit integer
3986         constants; we aren't really compilable on 16-bit systems anyway.
3987
3988         * hash.c (prime_size): Remove primes larger than 2^31, but include
3989         2^31-1, which is prime.
3990
3991 2005-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
3992
3993         * utils.c (string_set_to_array): New function.
3994
3995         * convert.c: Replace the use of "slists" with sets/hash-tables,
3996         which in fact suit the intended purpose much better.
3997         downloaded_html_list is removed altogether.
3998
3999 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
4000
4001         * ftp.h (enum): Rename GLOBALL, GETALL, and GETONE to
4002         GLOB_GLOBALL, GLOB_GETALL, and GLOB_GETONE to avoid conflict with
4003         Linux headers.
4004
4005 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
4006
4007         * utils.c (numdigit): More correct handling of negative numbers.
4008
4009 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
4010
4011         * http.c (gethttp): Print the human-readable size.
4012
4013         * ftp.c (getftp): Print the human-readable size of the file to be
4014         downloaded.
4015
4016         * utils.c (human_readable): New function.
4017
4018         * utils.c: Renamed "legible" to "with_thousand_seps",
4019         "legible_large_int" to "with_thousand_seps_large", and "legible_1"
4020         to "add_thousand_seps".
4021
4022 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
4023
4024         * http.c (gethttp): Inhibit persistent connections when talking to
4025         proxies, as mandated by RFC 2068.
4026
4027 2005-03-20  Hrvoje Niksic  <hniksic@xemacs.org>
4028
4029         * url.c (unescape_single_char): New function.
4030         (url_escape_dir): Use it to unescape slashes in directory
4031         components.
4032         (url_string): Escape unsafe chars in host name, except for the ':'
4033         charaters, which can appear in IPv6 addresses.
4034
4035         * main.c (main): Don't access the cookie jar directly.
4036
4037         * log.c (escnonprint_internal): Correctly calculate the needed
4038         string size.  Don't forget the buffer's new size after having
4039         reallocated it.
4040         (log_cleanup): New function.  Free the escnonprint ring data.
4041
4042         * init.c (cleanup): Don't free the cookie jar explicitly, it is
4043         now done by http_cleanup.
4044         (cleanup): opt.user_headers is now a vector, free it with
4045         free_vec.
4046
4047         * http.c (gethttp): Make sure to free the request data, the status
4048         message, and the response data before returning from the function.
4049         (save_cookies): New function.
4050         (http_cleanup): Free the cookie jar here.
4051
4052         * hash.c: Renamed string_hash to hash_string and ptrhash to
4053         hash_pointer.  Exported hash_pointer.
4054
4055         * xmalloc.c: Organized malloc_table (previously malloc_debug) as a
4056         simple EQ hash table.  register_ptr and unregister_ptr are now of
4057         O(1) complexity.
4058
4059         * xmalloc.c: Renamed "*_debug" to debugging_* and "*_real" to
4060         checking_*.
4061
4062 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
4063
4064         * utils.c (debug_test_md5): Moved to gen-md5.c.
4065
4066         * mswindows.h: Don't declare inet_ntop, since we don't use it.
4067
4068         * mswindows.h: For consistency, also wrap closesocket, it being
4069         a Winsock call.
4070
4071         * mswindows.h: Don't declare sleep and usleep; we're defining
4072         xsleep now.
4073
4074         * mswindows.h (mkdir): Don't special-case Borland C, _mkdir
4075         works there as well.
4076
4077         * host.c: Don't include winsock header files; the correct ones
4078         are already included by mswindows.h.
4079
4080         * mswindows.c (xsleep): Round toward the nearest millisecond
4081         in an attempt to avoid average short sleeps.
4082
4083         * utils.c (wtimer_granularity): Report correct values for
4084         Windows timers and for high-resolution timers.
4085
4086         * utils.c (wtimer_initialize_once): New function, called to
4087         initialize the timer frequency.
4088
4089         * utils.c: Replace the use of GetSystemTime with high-resolution
4090         counters under Windows.  When high-resolution counters are
4091         unavailable, use GetTickCount().
4092
4093 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
4094
4095         * retr.c (fd_read_body): Undo the 2004-11-18 change.  Instead,
4096         always be "exact".
4097
4098 2005-03-17  Hrvoje Niksic  <hniksic@xemacs.org>
4099
4100         * ftp-basic.c (ftp_login): Don't free the string if ftp_response
4101         returned an error status because the line didn't get allocated in
4102         the first place.
4103
4104 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
4105
4106         * http.c (read_http_response_head): Limit the response size to 64k
4107         bytes.
4108
4109         * retr.c (fd_read_hunk): Accept a MAXSIZE argument that limits the
4110         number of bytes the function is allowed to allocate.
4111         (fd_read_line): Limit the line to 4096 bytes.
4112
4113 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
4114
4115         * wget.h: Include options.h after wgint has been defined.
4116
4117         * options.h (struct options): Declare options processed with
4118         cmd_bytes as wgint, not long.
4119
4120 2005-03-18  Hrvoje Niksic  <hniksic@xemacs.org>
4121
4122         * init.c (cmd_file): Use concat_strings.
4123
4124         * http.c (basic_authentication_encode): Use concat_strings.
4125
4126         * ftp-ls.c (ftp_index): Use concat_strings.
4127
4128         * ftp-basic.c (ftp_request): Use concat_strings.
4129
4130         * utils.c (concat_strings): New function.
4131
4132 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
4133
4134         * init.c (simple_atof): Handle negative numbers; skip whitespace
4135         before the number.
4136         (simple_atoi): Ditto.  Also, check for overflow and underflow.
4137         (cmd_number): Bail out on negative numbers.
4138         (parse_bytes_helper): Ditto.
4139
4140 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
4141
4142         * http.c (gethttp): Handle multiple Set-Cookie headers sent by
4143         remote server.
4144
4145 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
4146
4147         * init.c (defaults): Use passive FTP by default.
4148
4149 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
4150
4151         * mswindows.c: Provide wrappers to Winsock functions that set
4152         errno to WSAGetLastError() in case of failure.  Also provide a
4153         Windows-specific version of strerror.
4154
4155         * mswindows.h: Wrap calls to socket, bind, connect, recv, send,
4156         select, getsockname, getpeername, and setsockopt.
4157
4158 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
4159
4160         * url.c (url_parse): Reject port numbers larger than 65535.  We
4161         also check for overflow while parsing port numbers.
4162
4163 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
4164
4165         * utils.c (read_file): Don't use wgint for file size; LFS won't
4166         work since the file is mmap'ed as a whole.
4167
4168         * options.h: Don't include stdio.h.
4169
4170         * log.c: Ditto.
4171
4172         * init.c: Disambiguate assignment from non-zero test to avoid
4173         Borland C warning.
4174
4175         * http.c (response_new): Don't needlessly post-increment count.
4176
4177         * hash.c: Include stdio.h.
4178
4179         * gnu-md5.h: Don't include stdio.h.
4180
4181         * getopt.h (struct option): Always use const.
4182
4183         * ftp.c (getftp): Avoid unnecessary assignment to RES to avoid
4184         Borland C warning.
4185
4186         * ftp-ls.c: Disambiguate assignment from non-zero test to avoid
4187         Borland C warning.
4188
4189         * cmpt.c (strptime_internal): Don't initialize rp_backup when
4190         !_NL_CURRENT to avoid Borland C warning.
4191
4192 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
4193
4194         * utils.c (fopen_excl): Fix parse error when O_BINARY is
4195         available.
4196
4197 2005-03-05  Hrvoje Niksic  <hniksic@xemacs.org>
4198
4199         * url.c (url_file_name): Don't allow hosts named ".." to be
4200         appended as path elements.
4201
4202 2005-03-03  Hrvoje Niksic  <hniksic@xemacs.org>
4203
4204         * retr.c (retrieve_url): Escape location header.
4205
4206         * http.c (print_server_response_1): Escape server response when
4207         printing it.
4208         (gethttp): Escape host name, status message, location header, and
4209         content type.
4210         (http_loop): Escape error message from server.
4211
4212         * host.c (lookup_host): Escape host name when printing it.
4213
4214         * ftp.c (getftp): Escape user name when printing it.
4215         (getftp): Escape remote file and directory for printing.
4216         (getftp): Escape server listing when printing it.
4217         (ftp_retrieve_list): Escape link name and file name.
4218         (ftp_retrieve_glob): Escape file name.
4219
4220         * ftp-basic.c (ftp_response): Escape server response when printing
4221         it.
4222
4223         * cookies.c (parse_set_cookies): Escape the cookie field when
4224         printing it.
4225         (parse_set_cookies): Escape contents of remote header.
4226         (cookie_handle_set_cookie): Escape host name and cookie domain.
4227
4228         * connect.c (connect_to_ip): Escape the host name.
4229
4230         * log.c (escnonprint): New function, used for printing strings
4231         coming from the server that possibly contain non-ASCII characters.
4232         (escnonprint_uri): Ditto.
4233
4234 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
4235
4236         * ftp.c (getftp): Ditto.
4237
4238         * http.c (gethttp): When we're not supposed to overwrite files,
4239         use fopen_excl to open the file and recompute the file name.
4240
4241         * log.c (redirect_output): Use unique_create to avoid a race
4242         condition.
4243
4244         * mswindows.c (fake_fork_child): Use unique_create.
4245
4246         * utils.c (fopen_excl): New function that opens a stdio stream
4247         with the O_EXCL flag (where available).
4248         (unique_create): New function, like unique_name, but also creating
4249         the file and returning a file pointer.
4250         (fork_to_background): Use unique_create to create the file
4251         immediately to avoid race condition with multiple instances of
4252         wget -b.
4253
4254 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
4255
4256         * host.c (lookup_host): Test for AI_ADDRCONFIG directly, instead
4257         of checking for HAVE_GETADDRINFO_AI_ADDRCONFIG.
4258
4259 2005-02-23  Hrvoje Niksic  <hniksic@xemacs.org>
4260
4261         * host.c (is_valid_ipv6_address): Move here from url.c.
4262         (lookup_host): If the address is numeric, don't print the
4263         "resolving..." line, don't set up DNS timeouts, and set the
4264         AI_NUMERICHOST hint, where available.
4265
4266 2005-02-26  Gisle Vanem  <giva@bgnett.no>
4267
4268         * utils.c: Use the nnnLL syntax under GCC.  Define struct_stat to
4269         struct _stati64 under __MINGW32__ as well as under MS VC.
4270
4271 2005-02-26  Hrvoje Niksic  <hniksic@xemacs.org>
4272
4273         * utils.c: Use the nnnI64 syntax for __int64 constants under all
4274         Windows compilers.
4275         (SPRINTF_WGINT): Use "%I64" under all Windows compilers.
4276
4277         * mswindows.h (WGINT_MAX): Use the nnnI64 syntax for
4278         __int64 constants under all Windows compilers.
4279         (struct_stat): Use `struct stati64' under Borland C.
4280         (fstat): Don't redefine to _fstati64 under Borland.
4281
4282         * mswindows.c: Define str_to_int64 under Borland C as well as
4283         under (older) Visual C.
4284
4285 2005-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
4286
4287         * ftp.c (getftp): Initialize err to suppress compiler warning.
4288
4289 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
4290
4291         * ftp.c (ftp_expected_bytes): Fix bug that caused infloop because
4292         of not correctly skipping the '(' character.
4293
4294 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
4295
4296         * mswindows.c (wget_ftello): Removed.
4297
4298         * mswindows.h: Remove bogus definition of stat.
4299         (wget_ftello): Remove the leftover ftello replacement.
4300
4301 2005-02-20  Hrvoje Niksic  <hniksic@xemacs.org>
4302
4303         * mswindows.c (wget_ftello): Wget's replacement for ftello.
4304
4305         * utils.c (file_size): Use ftello where available.
4306
4307         * ftp-ls.c (ftp_parse_unix_ls): Use str_to_wgint to parse the file
4308         size.
4309         (ftp_parse_winnt_ls): Ditto.
4310
4311         * ftp-basic.c (ftp_size): Use str_to_wgint to convert number to
4312         wgint; pass 10 instead of 0 as the BASE argument.
4313
4314         * ftp.c (ftp_expected_bytes): Use str_to_wgint to parse the file
4315         size.
4316
4317         * sysdep.h (LARGE_INT_FMT): Use __int64 as LARGE_INT on
4318         MSVC/Windows; print it with "%I64".
4319
4320         * wget.h: Define a `wgint' type, normally aliased to (the possibly
4321         64-bit variant of) off_t.
4322
4323         * all: Use `wgint' instead of `long' for numeric variables that
4324         can hold file sizes.
4325
4326         * utils.c (number_to_string): Support printing of `wgint'
4327         argument.
4328         (number_to_static_string): New function.
4329
4330         * all: Replace printf("%ld", long_value) with printf("%s",
4331         number_to_static_string(wgint_value)).
4332
4333 2005-02-18  Mauro Tortonesi <mauro@ferrara.linux.it>
4334
4335         * main.c: Added the --ftp-passwd command line option.
4336
4337         * init.c: Renamed command passwd to ftppasswd.
4338
4339 2005-02-11  Mauro Tortonesi <mauro@ferrara.linux.it>
4340
4341         * string_t.c: Fixed a bug in do_escape and triggered escape of
4342         backslashes in string_escape to avoid ambiguities in the result
4343         string.
4344
4345 2005-02-10  Mauro Tortonesi <mauro@ferrara.linux.it>
4346
4347         * string.h: Renamed to string_t.h to fix a compilation conflict
4348         with the string.h header in the standard C library.
4349
4350         * string.c: Renamed to string_t.c for consistency with string.h.
4351
4352         * string_t.c: Ditto.
4353
4354         * string_t.h: Ditto.
4355
4356 2004-12-31  Mauro Tortonesi <mauro@ferrara.linux.it>
4357
4358         * string.c: New file.
4359
4360         * string.h: New file.
4361
4362         * Makefile.in: Added string.c to the list of modules to compile.
4363
4364         * main.c: Updated copyright.
4365
4366 2004-11-18  Ulf Harnhammar <ulf.harnhammar.9485@student.uu.se>
4367
4368         * ftp-ls.c: Fixed a problem in ftp_parse_winnt_ls that could allow a
4369         malicious remote FTP server to crash wget.
4370
4371 2004-11-18  Hans-Andreas Engel <engel@node.ch>
4372
4373         * http.c: Enable --convert-links (-k) when a single page is downloaded
4374         via --output-document (-O).
4375
4376 2004-11-18  Mauro Tortonesi <mauro@deepspace6.net>
4377
4378         * connect.c: Minor correction to the comment in front of fd_peek.
4379
4380 2004-11-18  Leonid Petrov <nouser@lpetrov.net>
4381
4382         * retr.c: Fix a timeout problem in fd_read_body when using http_proxy.
4383
4384 2004-11-15  YAMAZAKI Makoto <Yamazaki.Makoto@fujixerox.co.jp>
4385
4386         * netrc.c: Fix termination by assertion bug in netrc parsing.
4387
4388 2004-05-09  David Fritz  <zeroxdf@att.net>
4389
4390         * mswindows.c (fake_fork): Pass entire command line to the child
4391         process.
4392
4393 2004-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
4394
4395         * http.c (gethttp): Fix typo: SCHEME_SSL -> SCHEME_HTTPS.
4396
4397 2004-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
4398
4399         * http.c (gethttp): Send the Proxy-Authorization header over
4400         non-SSL connections too.
4401
4402 2004-03-25  David Fritz  <zeroxdf@att.net>
4403
4404         * mswindows.c (fake_fork_child): Ignore error code when
4405         OpenFileMapping() fails; assume it failed because the object does
4406         not exist.
4407
4408 2004-03-24  David Fritz  <zeroxdf@att.net>
4409
4410         * mswindows.c (fake_fork): New function.
4411
4412         * mswindows.c (fork_to_background): Use it.
4413
4414 2004-03-19  David Fritz  <zeroxdf@att.net>
4415
4416         * mswindows.c (ws_hangup): Incorporate old fork_to_background()
4417         code.  Add event name argument.
4418         (fork_to_backgorund): Now a simple wrapper around ws_hangup().
4419         (ws_handler): Correctly handle the case when neither CTRLC_BACKGND
4420         nor CTRLBREAK_BACKGND are defined.  Don't bother handling close,
4421         logoff, or shutdown events.  Call ws_hangup() with the correct
4422         event name; don't assume it was CTRL+Break.
4423
4424 2004-03-19  Hrvoje Niksic  <hniksic@xemacs.org>
4425
4426         * url.c (url_parse): Decode %HH sequences in host name.
4427
4428 2004-03-04  Hrvoje Niksic  <hniksic@xemacs.org>
4429
4430         * convert.c (local_quote_string): Quote "#" as "%23" and "%" as
4431         "%25" when creating links to local files.
4432
4433 2004-03-02  David Fritz  <zeroxdf@att.net>
4434
4435         * mswindows.c (ws_percenttitle): Guard against future changes by
4436         doing nothing if the proper variables have not been initialized.
4437         Clamp percentage value.
4438
4439 2004-03-04  Gisle Vanem  <giva@bgnett.no>
4440
4441         * retr.c (fd_read_body): Don't change console title if quiet.
4442
4443 2004-02-25  David Fritz  <zeroxdf@att.net>
4444
4445         * mswindows.c (set_sleep_mode): Remove argument and return value.
4446         Call GetModuleHandle() instead of LoadLibrary()/FreeLibrary() for
4447         kernel32.dll.  Use typedef for function-pointer.  Don't cast
4448         l-value.  Don't use dereference operator when calling through
4449         function-pointer.
4450         (ws_startup): Update call to set_sleep_mode().
4451         (ws_cleanup): Remove call to set_sleep_mode().
4452
4453 2004-02-23  David Fritz  <zeroxdf@att.net>
4454
4455         * http.c (http_loop): Ditto.
4456
4457         * ftp.c (ftp_loop_internal): Update call to ws_changetitle().
4458
4459         * main.c (main): Don't bother calling ws_changetitle().
4460
4461         * mswindows.h (ws_changetitle): Update prototype.
4462
4463         * mswindows.c (ws_changetitle): Remove second argument.  Use
4464         xfree_null().
4465         (ws_percenttitle): Only update title when percentage has changed.
4466
4467 2004-02-23  David Fritz  <zeroxdf@att.net>
4468
4469         * mswindows.h: Ditto.
4470
4471         * mswindows.c: Misc. formatting/comment tweaks throughout.
4472
4473 2004-02-20  David Fritz  <zeroxdf@att.net>
4474
4475         * main.c (print_help): Remove call to ws_help().
4476
4477         * mswindows.c (ws_help): Remove.
4478
4479         * mswindows.h (ws_help): Remove.
4480
4481 2004-02-16  David Fritz  <zeroxdf@att.net>
4482
4483         * init.c (home_dir): Use aprintf() instead of xmalloc()/sprintf().
4484         Under Windows, if $HOME is not defined, use the directory that
4485         contains the Wget binary instead of hard-coded `C:\'.
4486         (wgetrc_file_name): Under Windows, look for $HOME/.wgetrc then, if
4487         not found, look for wget.ini in the directory of the Wget binary.
4488
4489         * mswindows.c (ws_mypath): Employ slightly more robust methodology.
4490         Strip trailing path separator.
4491
4492 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
4493
4494         * http.c (gethttp): Respect --ignore-length.
4495         (gethttp): Inhibit keep-alive if --ignore-length is specified.
4496
4497 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
4498
4499         * connect.c (sockaddr_set_data): Zero out
4500         sockaddr_in/sockaddr_in6.  Apparently BSD-derived stacks need this
4501         when binding a socket to local address.
4502
4503 2004-02-04  Hrvoje Niksic  <hniksic@xemacs.org>
4504
4505         * hash.c: Make the file compilable outside Wget source tree when
4506         -DSTANDALONE is used.
4507
4508 2004-01-29  Hrvoje Niksic  <hniksic@xemacs.org>
4509
4510         * utils.c (determine_screen_width): Return 0 if not running on
4511         Windows or on a TIOCGWINSZ-capable system.
4512
4513 2004-01-28  David Fritz  <zeroxdf@att.net>
4514
4515         * utils.c (determine_screen_width): Correctly determine console
4516         width under Windows.
4517
4518 2004-01-28  Christian Biere  <christianbiere@gmx.de>
4519
4520         * progress.c (bar_set_params): Fixed syntax error when HAVE_ISATTY
4521         was undefined.
4522
4523         * ftp.c (ftp_loop_internal): Allocate a larger buffer in case
4524         "try" gets translated to something large.  Ditto in http_loop in
4525         http.c.
4526
4527         * http.c (response_header_copy): Don't write to buf[BUFSIZE].
4528
4529         * ftp-opie.c (skey_response): Eliminate unnecessary string
4530         concatenation; just call gen_md5_update twice.
4531
4532 2004-01-25  Hrvoje Niksic  <hniksic@xemacs.org>
4533
4534         * utils.c (xsleep): Don't call usleep with values larger than
4535         1,000,000.
4536
4537 2003-12-16  Hrvoje Niksic  <hniksic@xemacs.org>
4538
4539         * http.c (gethttp): Fix generation of `Content-Length'.
4540
4541 2003-12-15  Gisle Vanem  <giva@bgnett.no>
4542
4543         * url.c (url_skip_credentials): Fixed return value; 'url' if no
4544         credentials.
4545
4546 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
4547
4548         * url.c (url_skip_credentials): Return a pointer directly.
4549
4550 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
4551
4552         * url.c (url_file_name): Ditto.
4553         (parse_errors): Ditto.
4554
4555         * retr.c (retr_rate): Ditto.
4556
4557         * progress.c (create_image): Ditto.
4558
4559         * netrc.c (parse_netrc): Ditto.
4560
4561         * main.c (struct cmdline_option): Ditto.
4562         (redirect_output_signal): Ditto.
4563
4564         * init.c (commands): Ditto.
4565
4566         * ftp-ls.c (ftp_index): Ditto.
4567
4568         * cookies.c (check_domain_match): Declare the pointer to a literal
4569         string as `const'.
4570
4571 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
4572
4573         * retr.c (fd_read_body): Pass total size to progress_create, not
4574         the remaining amount.
4575
4576 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
4577
4578         * retr.c (fd_read_body): Don't fiddle with "interactive timeout"
4579         if read timeout is unset.
4580
4581 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
4582
4583         * connect.c (bind_local): Don't set the IPV6_V6ONLY option on the
4584         socket.
4585
4586 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
4587
4588         * url.c (url_file_name): Respect the setting of
4589         opt.protocol_directories.
4590
4591         * main.c (main): Only check for ret=='?' when longindex is unset.
4592         (option_data): New option --protocol-directories.
4593
4594 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
4595
4596         * ftp.c (getftp): Ditto.
4597
4598         * http.c (gethttp): Correctly calculate bandwidth as total data
4599         read divided with download time.
4600
4601         * retr.c (fd_read_body): Separate the return values for data
4602         written and read.
4603
4604 2003-12-05  Hrvoje Niksic  <hniksic@xemacs.org>
4605
4606         * http.c (H_REDIRECTED): Respect the HTTP/1.1 "303 See Other"
4607         response code.
4608         Suggested by Dan Razzell.
4609
4610 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
4611
4612         * retr.c (fd_read_body): Report the amount of data *written* as
4613         amount_read.  This is not entirely logical, but that's what the
4614         callers expect, and it's not easy to change.
4615
4616         * ftp.c (ftp_loop_internal): Ditto.
4617
4618         * http.c (http_loop): Be smarter about assigning restval; if we're
4619         in the nth pass of a download, simply use the information we have
4620         about how much data has been retrieved as restval.
4621
4622         * ftp.c (getftp): Ditto for FTP "REST" command.
4623
4624         * http.c (gethttp): When the server doesn't respect range, skip
4625         the first RESTVAL bytes of the read body.  Never truncate the
4626         output file.
4627
4628         * retr.c (fd_read_body): Support skipping initial STARTPOS octets.
4629
4630 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
4631
4632         * http.c (skip_short_body): Renamed skip_body to skip_short_body;
4633         don't bother calling fd_read_body.
4634
4635 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
4636
4637         * retr.c (fd_read_body): Sanitize arguments and document them
4638         better.  Make sure the timer is created and updated only if
4639         necessary.  Updated callers.
4640
4641 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
4642
4643         * http.c (skip_body): New function.
4644         (gethttp): Use it to skip the body of the responses we don't care
4645         to download.  That allows us to reuse the connection.
4646         (gethttp): Trust that the HEAD requests will not generate body
4647         data.
4648
4649         * retr.c (fd_read_body): Don't write to OUT if it's NULL.
4650
4651 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
4652
4653         * http.c (gethttp): Initialize SSL only the first time when SSL
4654         URL is downloaded.
4655
4656 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
4657
4658         * cookies.c (cookie_header): Only generate the contents of the
4659         header, not the leading "Cookie: " or the trailing "\r\n".
4660
4661         * http.c (gethttp): When adding headers specified with `--header',
4662         allow them to override the headers generated by Wget.
4663
4664         * init.c (cmd_spec_header): Made opt.user_headers a vector.
4665
4666         * http.c (request_new): New function.  Returns a request structure
4667         which can be modified in various ways, most notably by adding HTTP
4668         headers to the request.
4669         (request_set_header): New function for adding the header to the
4670         request.  If the header is already available, it gets replaced.
4671         (request_send): Construct and send the request.
4672         (gethttp): Use the request_* functions to generate the request.
4673
4674 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
4675
4676         * http.c (gethttp): Don't include the Proxy-Authorization header
4677         in the request tunneled through proxy.
4678
4679 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
4680
4681         * http.c (gethttp): Use the CONNECT handle to establish SSL
4682         passthrough through non-SSL proxies.
4683
4684 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
4685
4686         * init.c: Don't #include netinet/Winsock stuff.
4687
4688 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
4689
4690         * http.c: Deleted the old functions header_process,
4691         header_extract_number, header_exists, header_strdup,
4692         http_process_range, http_process_none, http_process_type, and
4693         http_process_connection.
4694
4695         * http.c (response_new): New function.
4696         (response_header_bounds): Ditto.
4697         (response_header_copy): Ditto.
4698         (response_header_strdup): Ditto.
4699         (response_status): Ditto.
4700         (gethttp): Use the new response_* functions to parse the response.
4701         Support HTTP/0.9 responses.
4702
4703 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
4704
4705         * progress.c (create_image): Don't calculate ETA if nothing has
4706         been downloaded yet, because it causes division by zero.
4707
4708 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
4709
4710         * connect.c (bind_local): Rename sa_len to addrlen because IRIX
4711         headers define sa_len as a macro.
4712
4713 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
4714
4715         * html-parse.c (convert_and_copy): Remove embedded newlines when
4716         AP_TRIM_BLANKS is specified.
4717
4718 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
4719
4720         * ftp.c: Set con->csock to -1 where rbuf_uninitialize was
4721         previously used.
4722
4723 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
4724
4725         * Makefile.in (http$o): Added the trailing backslash that was
4726         missing.
4727
4728 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
4729
4730         * headers.c: Removed.  The file is no longer relevant, now that no
4731         special handling of headers is done by the rbuf code.  Moved
4732         portions to http.c.
4733
4734 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
4735
4736         * rbuf.c: Removed.
4737
4738         * ftp-basic.c (ftp_response): Use fd_read_line.  No longer use
4739         struct rbuf.  Updated all callers.
4740
4741         * http.c (gethttp): Use fd_read_head to read all the headers in
4742         one go.
4743         (next_header): New function.
4744
4745         * retr.c (fd_read_line): New function: reads a line from FD,
4746         leaving the rest of the data unread.
4747         (fd_read_head): New function.
4748
4749         * connect.c (fd_peek): New function, implements peeking.
4750         (poll_internal): New function.
4751         (fd_read): Use it.
4752         (fd_write): Ditto.
4753         (fd_peek): Ditto.
4754         (fd_register_transport): Allow registering a "peeker" callback.
4755
4756 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
4757
4758         * connect.c: Renamed xread/xwrite/xclose to
4759         fd_read/fd_write/fd_close.  The "x" prefix is not appropriate
4760         because the semantics have diverged from read/write/close too
4761         significantly.  Updated all callers.
4762
4763 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
4764
4765         * connect.c (sock_write): It's not necessary to initialize RES.
4766
4767 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
4768
4769         * main.c (main): Don't reference opt.ipv4_only and opt.ipv6_only
4770         if IPv6 is disabled.
4771
4772 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
4773
4774         * connect.c (socket_has_inet6): Only compile it if IPv6 is enabled
4775         and AI_ADDRCONFIG is missing.
4776
4777 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
4778
4779         * gen_sslfunc.c (ssl_init_prng): Warn the user when using a weak
4780         random seed.
4781
4782 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
4783
4784         * host.c (address_list_contains): Renamed address_list_find to
4785         address_list_contains because its result is boolean.
4786
4787 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
4788
4789         * connect.c (select_fd): Return 1 if select is not available.
4790
4791 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
4792
4793         * connect.c (connect_to_host): Don't reference address list after
4794         releasing it.
4795
4796 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
4797
4798         * main.c (print_help): Fix alignment of FTP options output.
4799
4800 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
4801
4802         * host.c (lookup_host): Check for the ability to create IPv6
4803         sockets here.
4804
4805         * init.c (defaults): Don't auto-set --inet4-only on IPv6-less
4806         systems.
4807
4808 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
4809
4810         * main.c (print_help): Fix typo in `-O' help message.  Fix docs of
4811         -Y/--proxy.  Fix docs of `--cookies' and `--glob'.  Improve docs
4812         of --convert-links.  Fix docs of SSL options.
4813
4814 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
4815
4816         * ftp-basic.c: Don't include <arpa/inet.h> and others because
4817         they're no longer needed.
4818
4819 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
4820
4821         * main.c (main): Don't allow setting of both opt.ipv4_only and
4822         opt.ipv6_only.
4823
4824         * init.c (defaults): Mark opt.ipv4_only specially when set
4825         automatically.
4826
4827 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
4828
4829         * host.c (lookup_host): Use AI_ADDRCONFIG only if the family is
4830         unspecified.  This ensures that specifying `--no-inet4' on systems
4831         where IPv6 resolves, but doesn't work behaves the same regardless
4832         of the availability of AI_ADDRCONFIG.
4833
4834 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
4835
4836         * host.c: Don't refer to the now-removed function
4837         forget_host_lookup in the documentation of lookup_host.
4838
4839 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
4840
4841         * http.c (persistent_available_p): Correctly specify the endpoint
4842         argument to socket_ip_address.
4843         (gethttp): When printing the "reusing connection to..." message,
4844         specify the host name of the reused connection, not the current
4845         host name.  That makes more sense because it provides a useful
4846         piece of information -- we know to which host we're supposed to
4847         connect anyway!
4848
4849 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
4850
4851         * init.c: Make sure the options are in alphabetic order!
4852
4853         * host.c (lookup_host): Merge lookup_host_passive and lookup_host
4854         after all -- having both would result in some code duplication.
4855         (lookup_host): Set hints.ai_family to AF_INET if ipv4_only is
4856         requested.  Likewise, set it to AF_INET6 for ipv6_only.  Specify
4857         AI_ADDRCONFIG where available.
4858         (lookup_host): New flag LH_REFRESH that specifies that a cached
4859         entry for HOST should be refreshed.
4860         (cache_query): New function.
4861         (cache_store): Ditto.
4862         (cache_remove): Ditto.
4863         (forget_host_lookup): No longer necessary, replaced with static
4864         function cache_remove.
4865
4866 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
4867
4868         * main.c: Enable -4 and -6 only if IPv6 is enabled.
4869
4870 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
4871
4872         * connect.c (register_transport): Renamed from register_extended.
4873         Explain the intended usage.
4874
4875 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
4876
4877         * url.c (uri_merge): Merging "foo" and "bar" should result in
4878         "bar", not in "foo/bar".
4879         (path_simplify): Don't remove empty path elements; don't
4880         special-case leading slash.
4881         (path_simplify): Don't swallow ".."'s at the beginning of string.
4882         E.g. simplify "foo/../../bar" as "../bar", not as "bar".
4883         (append_uri_pathel): Defang ".." path element upon encountering
4884         it.
4885
4886 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
4887
4888         * http.c (persistent_available_p): Don't attempt to talk to two
4889         different SSL sites over the same secure connection.
4890
4891 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
4892
4893         * http.c (gethttp): Ditto.
4894
4895         * ftp.c (getftp): Use retryable_socket_connect_error instead of
4896         CONNECT_ERROR.
4897
4898         * wget.h (CONNECT_ERROR): Removed.
4899
4900         * connect.c (retryable_socket_connect_error): New function instead
4901         of unsupported_socket_family_error.
4902
4903 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
4904
4905         * wget.h (CONNECT_ERROR): Use it.
4906
4907         * connect.c (unsupported_socket_family_error): New function.
4908
4909 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
4910
4911         * connect.c (bind_local): Renamed bindport to bind_local; return
4912         the socket directly.  Updated callers.
4913         (accept_connection): Renamed acceptport to accept_connection;
4914         return the created socket directly.  Updated callers.
4915
4916 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
4917
4918         * init.c (defaults): Turn on opt.ipv4_only if we're compiling with
4919         IPv6, and AI_ADDRINFO is not available, and AF_INET6 sockets can't
4920         be created.
4921
4922 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
4923
4924         * host.c (lookup_host): Document the fact that the addresses are
4925         returned in order.
4926
4927 2003-11-12  Hrvoje Niksic  <hniksic@xemacs.org>
4928
4929         * utils.c: Use limits.h only where available.
4930
4931         * hash.c: Use INVALID_PTR and INVALID_PTR_BYTE.  Include limits.h.
4932
4933 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
4934
4935         * main.c: Added options --inet4-only and --inet6-only.
4936
4937 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
4938
4939         * host.c (host_errstr): Use the more standard message "Unknown
4940         host".
4941
4942 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
4943
4944         * connect.c (connect_to_host): Use that flag to decide whether to
4945         re-resolve the host name.
4946
4947         * host.c (struct address_list): Added a flag that maintains
4948         whether the connection worked at some point.
4949
4950 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
4951
4952         * host.c (lookup_host): Special-case the numeric addresses only in
4953         the non-IPv6 case.
4954
4955 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
4956
4957         * connect.c (resolve_bind_address): Call lookup_host_passive.
4958         Make sure that opt.bind_address is resolved only once.
4959
4960         * host.c (lookup_host_passive): New function, handles "passive"
4961         lookups.
4962         (lookup_host): Remove the passive flags.  Remove the
4963         family-related flags -- use ip_default_family instead.
4964
4965 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
4966
4967         * html-url.c: Get URLs from <object data="...">.
4968
4969 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
4970
4971         * main.c (option_data): Specify the command to use for --mirror.
4972
4973 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
4974
4975         * cookies.c (cookie_handle_set_cookie): Specify exact match for
4976         unspecified domains.
4977
4978 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
4979
4980         * main.c (main): Removed one-letter options `-C', `-g', `-G', and
4981         `-s'.
4982
4983 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
4984
4985         * main.c (main): Add --dont-remove-listing for backward
4986         compatibility with previous versions.
4987         (print_help): Fix typo, spotted by Dennis Smit.
4988
4989 2003-11-08  Gisle Vanem  <giva@bgnett.no>
4990
4991         * ftp-basic.c: Support Windows-2000 ftp servers. Win-2000 *is*
4992         Win-NT 5.0 so calling it ST_WINNT is okay I guess.
4993
4994 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
4995
4996         * progress.c (update_speed_ring): Clear the speed ring when the
4997         download stalls.
4998
4999         * retr.c (get_contents): Specify 0.95s read timeout, so that the
5000         progress gauge can be updated even when data arrives very slowly
5001         or stalls.
5002
5003 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
5004
5005         * utils.c (wtimer_allocate): Bless the use of wtimer_read on a
5006         timer that has merely been allocated because get_contents() does
5007         that.
5008         (wtimer_update): Abort if the timer is not initialized.
5009
5010 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
5011
5012         * retr.c (get_contents): Pass the timer to limit_bandwidth().
5013
5014         * utils.c (wtimer_update): New function instead of wget_elapsed;
5015         just update the timer, but don't return anything.
5016         (wtimer_read): Read and return the last known value of the timer.
5017
5018 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
5019
5020         * http.c (persistent_available_p): Instead of matching all the
5021         addresses of HOST and last host, determine the peer's IP address
5022         with socket_ip_address and see if that address is one of those
5023         HOST resolves to.
5024
5025         * host.c (address_list_match_all): Removed.
5026         (address_list_find): New function, finds an IP address in the
5027         address list.
5028
5029         * ftp.c (ftp_do_pasv): Get the peer's address here, and pass it to
5030         ftp_epsv so it doesn't need to call getpeername.
5031
5032         * ftp-basic.c (ftp_port): Use socket_ip_address instead of
5033         getpeername.
5034         (ftp_lprt): Ditto.
5035
5036         * connect.c (socket_ip_address): Replaces conaddr, generalized to
5037         either get peer's or local address.
5038         (sockaddr_get_data): Made local to this file.
5039
5040 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
5041
5042         * hash.c (HASH_POSITION): Explicitly accept the hash function.
5043         (grow_hash_table): Extract ht->hash_function outside the loop.
5044         (hash_table_remove): Ditto.
5045         (hash_table_clear): Fill entries with 0xff to clear them.
5046         (hash_table_remove): Mark entries as deleted with the correct
5047         marker.
5048
5049 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
5050
5051         * http.c (persistent_available_p): No reason for the host lookup
5052         to be silent -- it's a lookup like any other.
5053
5054 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
5055
5056         * connect.c (register_extended): Check that fd >= 0.
5057
5058 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
5059
5060         * connect.c (LAZY_RETRIEVE_INFO): Set LAST_INFO.
5061
5062 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
5063
5064         * hash.c (NON_EMPTY): Use the all-bit-set value as the marker that
5065         the field is empty.  This allows NULL pointer and 0 value to be
5066         used as keys, which is necessary for the connect.c code to work
5067         when fd==0.
5068         (hash_table_new): Fill mappings with 0xff.
5069         (grow_hash_table): Ditto.
5070
5071 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
5072
5073         * url.c (url_parse): Allow empty ports.
5074
5075 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
5076
5077         * main.c (print_help): Break the help string into multiple chunks.
5078         (cmdline_option): New option handler OPT_FUNCALL.  Generalized
5079         HANDLE_CMD to generic DATA.
5080         (option_data): Use the new OPT_FUNCALL feature.
5081
5082 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
5083
5084         * log.h: Declare log_init, log_close, and
5085         log_request_redirect_output here.
5086
5087 2003-11-05  Dennis Smit  <ds@nerds-incorporated.org>
5088
5089         * main.c: (main): added --preserve-permissions option.
5090
5091         * ftp.c (ftp_retrieve_list): added support for
5092         --preserve-permissions option.
5093
5094         * init.c: added support for --preserve-permission option.
5095
5096         * option.h: added support for --preserve-permission option.
5097
5098 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
5099
5100         * main.c (init_switches): New function.  Convert option_data to
5101         long_options and short_options, which can be fed to getopt_long.
5102         (main): Execute command-line options by consulting option_data.
5103
5104 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
5105
5106         * gen_sslfunc.c (ssl_read): Implement a more correct check for
5107         EINTR.
5108         (ssl_write): Ditto.
5109         (init_ssl): Use a global SSL context.
5110
5111 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
5112
5113         * connect.c (xclose): Free INFO even if it doesn't provide a
5114         closer.
5115
5116 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
5117
5118         * connect.c: Updated all callers of
5119         iread/ssl_iread/iwrite/ssl_iwrite to use xread and xwrite instead.
5120
5121         * rbuf.h (struct rbuf): Removed the SSL member because SSL is
5122         handled automatically by xread.
5123
5124         * hash.c (ptrhash): Made private.
5125         (ptrcmp): Ditto.
5126         (inthash): Removed.
5127
5128         * connect.c (select_fd): Don't set errno, leave it to the caller.
5129
5130         * gen_sslfunc.c (connect_ssl): Use register_extended to register
5131         SSL callbacks for communication with SSL-enabled endpoints.
5132         (ssl_read): New function.
5133         (ssl_write): Ditto.
5134         (ssl_poll): Ditto.
5135         (ssl_close): Ditto.
5136
5137         * connect.c (register_extended): New function -- register
5138         callbacks for basic socket operations.
5139         (xread): Ditto.
5140         (xwrite): Ditto.
5141         (xclose): Ditto.
5142         (sock_read): New function, default implementation for reading.
5143         (sock_write): Ditto for writing.
5144         (sock_poll): Ditto for polling.
5145         (sock_close): Ditto for closing.
5146
5147 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
5148
5149         * connect.c (bindport): Fix compilation under pre-C99 compilers.
5150
5151 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
5152
5153         * connect.c (connect_to_ip): More compact error checking.
5154         (bindport): Don't treat failed setsockopt as a fatal error.
5155
5156 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
5157
5158         * connect.c (resolve_bind_address): Use a more accurate error
5159         message -- we're not binding to ANY, we're disabling bind
5160         altogether.
5161
5162 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
5163
5164         * cookies.c (save_cookies_mapper): Respect the setting of
5165         keep-session-cookies.
5166         (cookie_jar_load): Import session cookies.
5167         Based on code submitted by Nicolas Schodet.
5168
5169         * utils.c (datetime_str): Use information in TM when it's
5170         non-NULL.
5171
5172         * main.c (main): New option `--keep-session-cookies'.
5173
5174 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
5175
5176         * Makefile.in (realclean): Delete config.h.in.
5177
5178 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
5179
5180         * config-post.h: New file, included from now autogenerated
5181         config.h.in.
5182
5183 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
5184
5185         * progress.c (progress_handle_sigwinch): Don't call
5186         determine_screen_width() from the signal handler.  Instead, just
5187         set a volatile variable.
5188         (bar_create): Check whether SIGWINCH was received.
5189         (bar_update): Ditto.
5190
5191         * sysdep.h: Define SYSTEM_FNMATCH only if HAVE_FNMATCH_H is true.
5192
5193 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
5194
5195         * utils.c (xsleep): New function.  Uses nanosleep where available,
5196         resuming sleeps interrupted by signals.  Updated callers of sleep
5197         and usleep to use xsleep.
5198
5199 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
5200
5201         * ftp-basic.c (ftp_login): Remove shadowing (and bogus)
5202         declaration of SEED.
5203
5204 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
5205
5206         * log.c (logvprintf): Documented better.  Renamed to
5207         log_vprintf_internal to avoid confusion with the public API
5208         functions logprintf and logputs.
5209
5210 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
5211
5212         * wget.h (N_): Don't parenthesize argument.
5213
5214 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
5215
5216         * host.h (ADDRESS_IPV4_DATA): Don't take the address of in.s_addr
5217         because that doesn't work on machines that define it as bitfield.
5218
5219 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
5220
5221         * connect.c (select_fd): Generalize the third argument into WAIT,
5222         so that the caller can request waiting for both read and write.
5223         Updated callers.
5224
5225 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
5226
5227         * html-url.c (cleanup_html_url): Destroy the hash tables, don't
5228         just call free on them.
5229         (init_interesting): Use hash_table_put instead of string_set_add
5230         because we don't need the strdup that the latter function
5231         performs.
5232
5233         * init.c (cleanup): Don't pass NULL to cookie_jar_delete.
5234
5235         * xmalloc.c (xfree_real): Abort when passed a NULL pointer.
5236         (xfree_debug): Print at the file and line of the offending call to
5237         free.
5238
5239 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
5240
5241         * wget.h: Retired the `boolean' type.  Moved the DEFAULT_LOGFILE
5242         define to log.h.  Moved the INFINITE_RECURSION define to recur.h.
5243
5244         * xmalloc.h: Renamed FREE_MAYBE to xfree_null and moved the
5245         definition from wget.h to xmalloc.h.
5246
5247 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
5248
5249         * html-parse.c (decode_entity): New function; split the decoding
5250         of entities here.
5251         (convert_and_copy): Use it to decode entities.
5252         (decode_entity): Handle the &apos entity.
5253         (decode_entity): Don't decode Latin 1 numeric entities.  Don't
5254         decode &#0.
5255
5256 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
5257
5258         * ftp-opie.c (calculate_skey_response): Use uint32_t instead of
5259         `unsigned long' for the cheksum array.  Document the function.
5260
5261 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
5262
5263         * connect.c (acceptport): Don't call select_fd when timeout is not
5264         requested.
5265
5266 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
5267
5268         * host.c: Removed the ip_default_family global variable.
5269
5270         * host.c (lookup_host): Document the function.  Fixed declaration
5271         of VEC.
5272
5273 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
5274
5275         * various: Use new macros xnew, xnew0, xnew_array, and xnew0_array
5276         in various places.
5277
5278 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
5279
5280         * wget.h: Move declarations of malloc and logging code to
5281         xmalloc.h and log.h respectively to unclutter this file.
5282         (STRDUP_ALLOCA): Made it side-effect free.
5283
5284         * xmalloc.h: New files.  Define macros xnew, xnew0, xnew_array,
5285         and xnew0_array.
5286
5287         * xmalloc.c: New file.  Move the xmalloc routines here.
5288
5289 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
5290
5291         * connect.c (sockaddr_set_data): Remove the broken code that
5292         checked for NULL address.
5293
5294 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
5295
5296         * host.c (address_list_from_single): Removed.
5297         (address_list_from_ipv4_addresses): Renamed from
5298         address_list_from_vector.
5299
5300 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
5301
5302         * sysdep.h (CLOSE): Don't call close on file descriptors less than
5303         0, i.e. on uncreated sockets.
5304
5305         * connect.c (resolve_bind_address): Work on struct sockaddr
5306         directly.
5307         (connect_to_host): Replacement for connect_to_many.  Resolve HOST
5308         and connect to any of its addresses.  If we can't connect and the
5309         host name lookup was cached, try to resolve it again.  This should
5310         fix problems with hosts behind dynamic DNS.  Updated all callers.
5311         (connect_to_ip): Replacement for connect_to_one.  Removed SILENT;
5312         added the argument PRINT instead.  Updated all callers.
5313         (set_connection_host_name): Removed.
5314
5315         * host.c (address_list_address_at): New function instead of
5316         address_list_copy_one. It returns a pointer to ip_address *, so
5317         it's not necessary to copy the data.
5318         (address_list_cached_p): New function.
5319         (forget_host_lookup): Ditto.
5320
5321         * connect.c: Got rid of the MSOCK global variable.  Made bindport
5322         return the local socket it creates.  Added a new argument to
5323         acceptport, the socket to call accept on.  Updated callers.
5324         (closeport): Removed.
5325
5326         * connect.c: Moved the sockaddr code from host.c to this file,
5327         because most of that stuff is used for connecting, and has nothing
5328         to do with host names anyway.
5329         (sockaddr_set_data, sockaddr_get_data): New functions, replace the
5330         old sockaddr_set_address, sockaddr_set_port, sockaddr_get_address,
5331         and sockaddr_get_port.
5332
5333 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
5334
5335         * sysdep.h: Use `S >= 8' rather than `S == 8' when looking for
5336         large integers.
5337
5338 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
5339
5340         * url.c (append_uri_pathel): New argument ESCAPED_P that says
5341         whether [B, E) is to be treated as URL-escaped or not.  If
5342         ESCAPED_P is false, don't unescape the region.
5343         (url_file_name): u->file is not URL-escaped.
5344
5345 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
5346
5347         * retr.c (retrieve_from_file): Use retrieve_tree for
5348         page-requisites.
5349
5350         * main.c (main): Don't define opt.recursive when -p is used.
5351         Instead, make sure that recursion is used for HTTP in that case.
5352
5353 2003-10-29  Hrvoje Niksic  <hniksic@xemacs.org>
5354
5355         * host.h: Defined accessors for elements of ip_address.  Updated
5356         all callers.
5357         (address_list_match_all): Use memcmp in the non-IPv6 case.
5358
5359         * wget.h (CONNECT_ERROR): Don't retry connecting if connect()
5360         returned EAFNOSUPPORT.
5361
5362 2003-10-27  Mauro Tortonesi <mauro@deepspace6.net>
5363
5364         * connect.h: changed bindport prototype and added the related
5365         BIND_ON_IPV4_ONLY and BIND_ON_IPV6_ONLY flags.
5366
5367         * connect.c: changed bindport and resolve_bind_address to allow
5368         protocol-version specific DNS resolution. modified conaddr,
5369         acceptport and connect_to_one to make use of struct
5370         sockaddr_storage and of the new ip_address structure.
5371
5372         * ftp-basic.c: added LPRT/LPSV (RFC1639) support, refactored
5373         PORT/PASV (RFC959) and EPRT/EPSV (RFC2428) support code.
5374
5375         * ftp.c: added the ftp_do_port and ftp_do_pasv functions to
5376         handle FTP over IPv6.
5377
5378         * ftp.h: changed prototype of ftp_epsv and added prototypes for
5379         ftp_lpsv, ftp_lprt and ftp_eprt.
5380
5381         * host.c: renamed the
5382         wget_sockaddr_set_address and wget_sockaddr_get_addr, and
5383         wget_sockaddr_{s,g}et_port couples to sockaddr_{s,g}et_address and
5384         sockaddr_{g,s}et_port respectively.  changed
5385         address_list_match_all, address_list_from_addrinfo sockaddr_len,
5386         pretty_print_address, lookup_host, sockaddr_{s,g}et_address and
5387         sockaddr_{g,s}et_port to make use of struct sockaddr_storage and
5388         of the new ip_address structure.  removed map_ipv4_to_ip and
5389         map_ip_to_ipv4.
5390
5391         * host.h: redefined structure ip_address and removed structure
5392         wget_sockaddr.
5393
5394 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
5395
5396         * sysdep.h: Include inttypes.h where available.
5397
5398         * host.c: Switch from u_int32_t to uint32_t.
5399
5400 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
5401
5402         * netrc.c (parse_netrc): Reset the QUOTE flag after the closing
5403         quote.
5404
5405 2003-10-25  Hrvoje Niksic  <hniksic@xemacs.org>
5406
5407         * url.c (is_valid_ipv6_address): Reformat to GNU coding style.
5408         Use enums for NS_IN* constants.  Use ISXDIGIT.
5409
5410         * convert.c (construct_relative): Document better how the function
5411         works.
5412
5413 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
5414
5415         * config.h.in: Deploy preprocessor magic to avoid Ultrix's
5416         <netdb.h> include <bitypes.h> which defines its own u_int32_t.
5417         Reported by Bernhard Simon.
5418
5419 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
5420
5421         * version.c: Bump version.
5422
5423 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
5424
5425         * url.c: Ditto.
5426
5427         * html-parse.c (advance_declaration): Don't use trailing comma in
5428         enum because older compilers don't support it.
5429
5430         * utils.c: Don't redefine HAVE_SIGSETJMP.
5431
5432 2003-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
5433
5434         * convert.c (construct_relative): Don't handle absolute files
5435         specially -- for example, -P/tmp/foo shouldn't imply that
5436         converted files must refer to "/tmp/foo/..."!
5437
5438 2003-10-15  Hrvoje Niksic  <hniksic@xemacs.org>
5439
5440         * http.c: Consider status 307 a valid redirect.
5441
5442 2003-10-15  Philip Stadermann  <philip.stadermann@credativ.de>
5443
5444         * ftp.c (ftp_retrieve_glob): Correctly loop through the list whose
5445         elements might have been deleted.
5446
5447 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
5448
5449         * html-url.c (tag_handle_meta): Set the Refresh link to expect
5450         HTML.
5451         (append_one_url): Renamed to append_url.
5452
5453 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
5454
5455         * sysdep.h: Only define u_int32_t.
5456
5457 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
5458
5459         * utils.c (large_int_to_string): Use snprintf() to print the
5460         number.  This will work even on systems where libc doesn't
5461         understand %lld, but the compiler does, because it will use our
5462         snprintf replacement.
5463
5464         * init.c (parse_bytes_helper): New function.
5465         (cmd_bytes): Use it to parse bytes, but cast the result to long.
5466         (cmd_bytes_large): Ditto, but store the result to LARGE_INT.  Used
5467         for --quota so that --quota=10G works even on machines without
5468         long long.
5469
5470         * options.h (struct options): Declare quota as LARGE_INT.
5471
5472         * retr.c (downloaded_exceeds_quota): Removed.
5473         (downloaded_increase): Ditto.
5474         (total_downloaded_bytes): New variable, replaces opt.downloaded,
5475         which was the wrong place for it anyway.  Updated callers of
5476         downloaded_exceeds_quota and downloaded_increase to check this
5477         variable directly.
5478
5479         * sysdep.h: Get rid of VERY_LONG_TYPE.  Use LARGE_INT for the same
5480         purpose, defined as `long', `long long' or `double', depending on
5481         size of long and whether long long is available.
5482
5483 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
5484
5485         * sysdep.h: Also check size of short for int32_t.
5486
5487 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
5488
5489         * host.c (lookup_host): Use u_int32_t to store the result of
5490         inet_addr().  That removes the need for offset fiddling, caring
5491         about endian-ness, etc.
5492
5493         * sysdep.h: Define int32_t and u_int32_t if not available.
5494
5495 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
5496
5497         * ftp-basic.c (ftp_epsv): Use socklen_t * as the third argument to
5498         getpeername.
5499
5500         * config.h.in: Define socklen_t stub.
5501
5502         * host.c (sockaddr_len): Return socklen_t.
5503
5504         * connect.c (conaddr): Use socklen_t as the third argument to
5505         accept, getsockname, and connect.
5506
5507 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
5508
5509         * recur.c (retrieve_tree): Don't descend into documents that are
5510         not expected to contain HTML, regardless of their content-type.
5511
5512         * html-url.c (tag_url_attributes): Record which attributes are
5513         supposed to yield HTML links that can be followed.
5514         (tag_find_urls): Propagate that information to the caller through
5515         struct urlpos.
5516
5517 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
5518
5519         * hash.c (find_mapping): Return the next available mapping when
5520         the key is not found, not NULL.
5521         (hash_table_put): Use find_mapping to find the storage for the new
5522         data.
5523         (hash_table_put): Grow the table before exceeding maximum
5524         fullness, not afterwards.
5525
5526 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
5527
5528         * hash.c (hash_table_new): Slightly change the meaning of the
5529         first parameter.  Instead of being the minimum initial size, it is
5530         now the minimum number of items that the hash table can take
5531         without needing to resize.
5532
5533 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
5534
5535         * html-url.c (init_interesting): Initialize interesting_tags and
5536         interesting_attributes as hash tables.  This simplifies the code
5537         immensely because hash tables handle allocation and remove
5538         duplicates automatically.
5539         (find_tag): Removed.
5540         (collect_tags_mapper): Instead of calling find_tag, simply get the
5541         entry from interesting_tags hash table, which is both simpler and
5542         faster.
5543
5544 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
5545
5546         * hash.c (hash_table_get): Declare hash-table argument as const.
5547         (find_mapping): Ditto.
5548         (hash_table_get_pair): Ditto.
5549         (hash_table_contains): Ditto.
5550         (hash_table_count): Ditto.
5551
5552 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
5553
5554         * html-url.c (get_urls_html): Parse the appropriate flags to
5555         html-parse.c.
5556
5557         * html-parse.c (map_html_tags): Accept FLAGS from the caller
5558         instead of examining OPT.
5559
5560 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
5561
5562         * html-url.c (find_tag): Switch to binary search.
5563
5564 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
5565
5566         * main.c (print_help): Fix typo; stured -> stored.
5567
5568 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
5569
5570         * getopt.c: Add definitions of getopt_long and getopt_long_only.
5571
5572 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
5573
5574         * config.h.in: Renamed DEBUG to ENABLE_DEBUG.  ENABLE_DEBUG is, I
5575         think, a better name, because it implies that debugging output is
5576         merely possible, not "on by default", as might be construed from
5577         just DEBUG.
5578
5579 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
5580
5581         * ftp.c (has_insecure_name_p): Define it here.
5582
5583         * utils.c (has_wildcards_p): Define it here.
5584
5585         * sysdep.h: Declare fnmatch-related macros here, if not using
5586         system fnmatch().  Update .c files to not declare fnmatch.h
5587         directly.
5588
5589         * cmpt.c (fnmatch): Moved here.  Use it only under non-GNU libc.
5590
5591 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
5592
5593         * getopt.c: Newer version, imported from Free libit.
5594
5595 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
5596
5597         * cookies.c (struct cookie): Remove unused backpointer to cookie
5598         jar.
5599
5600 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
5601
5602         * cmpt.c (memmove): Comment out, since it's no longer used.
5603
5604         * cookies.c (cookie_jar_generate_cookie_header): Allocate room for
5605         chains in one pass.
5606         (find_chains_of_host): Assume that the caller has allocated DEST
5607         to be sufficiently large to take all the data.
5608         (eliminate_dups): Run through the array and eliminate dups on the
5609         fly instead of using memmove.
5610         (cookie_jar_process_set_cookie): Free cookie->domain before
5611         re-setting it.
5612
5613 2003-10-05  Gisle Vanem  <giva@bgnett.no>
5614
5615         * mswindows.c (set_sleep_mode): Fix type of
5616         _SetThreadExecutionState.
5617
5618 2003-10-05  Hrvoje Niksic  <hniksic@xemacs.org>
5619
5620         * utils.c (file_size): Return -1 if fopen() returns NULL.  Prior
5621         to this patch, wget --post-file=nosuchfile dumped core.
5622
5623 2003-10-04  Gisle Vanem  <giva@bgnett.no>
5624
5625         * mswindows.c (run_with_timeout): Use WaitForSingleObject to wait
5626         for thread termination.
5627
5628 2003-10-04  Hrvoje Niksic  <hniksic@xemacs.org>
5629
5630         * log.c: Use `...' in function definitions; ansi2knr will convert
5631         them to va_dcl.  This allowed removal of the ugly VA_START_1 and
5632         VA_START_2 macros.
5633
5634 2003-10-03  Gisle Vanem  <giva@bgnett.no>
5635
5636         * connect.c: And don't include them here.
5637
5638         * mswindows.h: Include winsock headers here.
5639
5640 2003-10-03  Hrvoje Niksic  <hniksic@xemacs.org>
5641
5642         * html-parse.c (convert_and_copy): Move variable declarations
5643         before statements.
5644
5645 2003-10-02  Gisle Vanem  <giva@bgnett.no>
5646
5647         * mswindows.c (run_with_timeout): For Windows: Run the 'fun' in a
5648         thread via a helper function. Continually query the thread's
5649         exit-code until finished or timed out.
5650
5651 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
5652
5653         * wget.h (XMALLOC_ARRAY): Removed.
5654         (ALLOCA_ARRAY): Ditto.
5655
5656         * html-parse.c: Renamed alloca_p to resized.
5657         (GROW_ARRAY): Renamed DO_REALLOC_FROM_ALLOCA to GROW_ARRAY and
5658         returned it to html-parse.c, since nothing else was using it.
5659
5660 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
5661
5662         * retr.c (retrieve_url): Initialize DUMMY storage for DT.  Caught
5663         by valgrind.
5664
5665 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
5666
5667         * html-parse.c (convert_and_copy): Handle numeric entities in
5668         hexadecimal, &#xHH.
5669         (convert_and_copy): Copy the contents directly to the pool without
5670         a stack-allocated intermediary.
5671
5672 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
5673
5674         * utils.c (alarm_set): New function; use either setitimer or alarm
5675         to set up the alarm.
5676         (alarm_cancel): New function; cancel the alarm set up by
5677         alarm_set.
5678         (run_with_timeout): Use them.
5679
5680 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
5681
5682         * url.c (url_parse): Don't leak memory when a reencoded URL turns
5683         out to be invalid.
5684
5685         * url.c (parse_errors): Mark error messages for translation.
5686         (url_error): Translate error messages returned to the caller.
5687
5688 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
5689
5690         * ftp.c (ftp_loop_internal): Initialize TMRATE to NULL to shut up
5691         the compiler.
5692
5693 2003-09-26  Gisle Vanem  <giva@bgnett.no>
5694
5695         * src/mswindows.c: Added ws_percenttitle() showing progress in the
5696         window titlebar. Called from retr.c. Secured ws_mypath().
5697
5698         * windows/config.h.ms: alloca() prototype not needed.  Removed
5699         "#undef ENABLE_NLS"; should be in Makefile IMHO. Moved
5700         WGET_USE_STDARG from mswindows.h to config.ms.h because of #ifdef
5701         in log.c. (MSVC's vararg.h and stdarg.h are incompatible).
5702
5703 2003-09-29  Aaron Hawley <Aaron.Hawley@uvm.edu>
5704
5705         * ftp.c (getftp): --spider option should now work with FTP
5706         downloads.
5707         (ftp_loop_internal): quiet reports and calculations of downloads
5708         when --spider option set, nor try deleting when --delete-after
5709         also set.
5710         (ftp_loop): --spider will skip HTML-ification of .listing file.
5711
5712 2003-09-26  Gisle Vanem  <giva@bgnett.no>
5713
5714         * mswindows.c (read_registry): Removed.
5715         (set_sleep_mode): New function.
5716         (windows_main_junk): Call it.
5717
5718 2003-09-26  Gisle Vanem  <giva@bgnett.no>
5719
5720         * mswindows.c (read_registry): Fix invocation of registry
5721         functions.
5722
5723         * mswindows.c (read_registry): Condition definitions of sleep and
5724         usleep with not HAVE_SLEEP and HAVE_USLEEP respectively.  Define
5725         HAVE_SLEEP and HAVE_USLEEP under __DMC__.
5726
5727 2003-09-24  Hrvoje Niksic  <hniksic@xemacs.org>
5728
5729         * url.c (url_escape_1): Revert unintentional change to lowercase
5730         xdigit escapes.
5731         (url_escape_dir): Document that this function depends on the
5732         output of url_escape_1.
5733
5734 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
5735
5736         * progress.c (create_image): Print the current ETA if we're done
5737         with the download.
5738         (create_image): Change '-' display char to '+' in the progress bar.
5739
5740         * Makefile.in (clean): Remove .libs.
5741
5742 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
5743
5744         * cookies.c (struct cookie): New flag domain_exact.
5745         (update_cookie_field): Skip leading dot in domain.
5746         (find_matching_chains): Match numeric addresses exactly; don't
5747         needlessly copy HOST to the stack.
5748         (matching_cookie): Added argument HOST.  If cookie->domain_exact
5749         is set, check that HOST is equal to cookie->domain.
5750         (cookie_jar_load): Only use TAB as delimiter.  Document the
5751         meaning of DOMAIN-FLAG.  Skip leading dot in domain.
5752         (cookie_jar_load): Don't ignore DOMAIN-FLAG -- instead, set
5753         domain_exact to true if DOMAIN-FLAG is false.
5754         (save_cookies_mapper): If domain_exact is false, prepend the
5755         domain with dot, like Mozilla does.
5756
5757 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
5758
5759         * progress.c (create_image): Print the initial part of the
5760         download with '-' characters, analogous to how dot progress prints
5761         the initial part with ','.
5762
5763         * hash.c (ptrhash): New function.
5764         (ptrcmp): Ditto.
5765         (hash_table_new): Default to identity hash table.
5766
5767 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
5768
5769         * safe-ctype.h (_sch_test): The cast of BIT to unsigned char was
5770         broken -- _sch_istable bitmasks are 16-bit, not 8-bit!  Cast BIT
5771         to unsigned short instead.
5772
5773 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
5774
5775         * url.c (path_simplify): Instead of calls to memmove, handle "./"
5776         and "../" by advancing pointers.
5777
5778 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
5779
5780         * retr.c (getproxy): Moved from url.c.
5781
5782         * convert.c: Split off link conversion from url.c into separate
5783         file.  Also included the book-keeping stuff from recur.c.
5784
5785 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
5786
5787         * init.c: Improved documentation of functions.
5788         (cmd_boolean): Attempt to make code that tries to avoid calling
5789         strcmp for "speed" a bit more readable.
5790
5791         * init.c (simple_atof): Report error on encountering non-digit,
5792         non-"." character.
5793         (simple_atoi): Replacement for myatoi(), calling interface
5794         compatible with simple_atof.  Updated myatoi's callers.
5795
5796 2003-09-21  Bertrand Demiddelaer  <bert@b3rt.org>
5797
5798         * url.c (path_simplify): Would read two bytes past the end of the
5799         string in the "./" case.
5800
5801 2003-09-21  Matthew J. Mellon  <mellon@tymenet.com>
5802
5803         * http.c (gethttp): Recognize content-type "application/xhtml+xml"
5804         as what Wget considers "text/html".
5805
5806 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
5807
5808         * connect.c (connect_with_timeout): Made timeout type double.
5809
5810         * options.h (struct options): New members read_timeout,
5811         dns_timeout, and connect_timeout.
5812         Use them.
5813
5814 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
5815
5816         * init.c (simple_atof): New function.
5817         (cmd_time): Use it.
5818         (cmd_bytes): Accept things like "1.5k" and such.  Use simple_atof
5819         to parse decimals.
5820
5821         * retr.c (limit_bandwidth): Adjust each sleep by the error of the
5822         previous one.
5823
5824 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
5825
5826         * main.c (main): Use setoptval() for setting the options.  Use
5827         run_command for `-e'.
5828
5829         * init.c (parse_line): Rewritten to return COMIND right away.
5830         Changed linkage to static.
5831         (run_wgetrc): Use the available comind when calling setval, so it
5832         doesn't have to be computed twice.
5833         (setval_internal): New function, runs the command's action without
5834         any error checking.
5835         (setoptval): New function, does what setval used to do, but exits
5836         in case of error.
5837         (run_command): New function.
5838
5839 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
5840
5841         * connect.c (select_fd): Change MAXTIME's type to double.  Handle
5842         its decimal part.
5843
5844         * retr.c (sleep_between_retrievals): In the random-wait case, use
5845         random_float() to wait between 0 and 2*opt.wait seconds.
5846
5847         * utils.c (run_with_timeout): Accept `double' timeouts.  Correctly
5848         handle timeout values in (0, 1) range.
5849         (random_float): New function.
5850
5851         * options.h (struct options): Change the types of wait, waitretry,
5852         and timeout to double.
5853
5854         * init.c (cmd_time): Accept floating point time.
5855
5856 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
5857
5858         * retr.c (get_contents): Cosmetic fixes.
5859
5860 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
5861
5862         * url.c (uri_merge): Get rid of uri_merge_1.
5863         (uri_merge): Merge "foo//", "bar" as "foo//bar", not "foo///bar",
5864         i.e. don't add an extra slash merely because BASE ends with two
5865         slashes.
5866         (parse_credentials): Renamed from parse_uname.  Rewrittern in
5867         standard [beg, end) calling style.
5868         (url_skip_credentials): Renamed from url_skip_uname.  Made static.
5869         (url_skip_credentials): Include # and ; as terminators.  Old code
5870         would mistakenly consider "http://foo.com#hniksic@iskon.hr" to
5871         contain a username.
5872         (url_skip_scheme): Removed because it was unused.
5873         (url_has_scheme): Require "scheme" to be at least one char long.
5874
5875 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
5876
5877         * url.c (url_file_name): Expect NULL dir_prefix.
5878
5879         * init.c (cmd_file): Use a macro to prevent multiple #ifdef
5880         WINDOWS.
5881         (defaults): Set dir_prefix to NULL by default.
5882
5883 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
5884
5885         * safe-ctype.h (_sch_test): Cast BIT to unsigned char, like latest
5886         gcc does.
5887
5888 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
5889
5890         * wget.h (BOUNDED_TO_ALLOCA): Evaluate PLACE only once.
5891         (ARRAY_SIZE): Renamed to countof.  All callers updated.
5892
5893 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
5894
5895         * main.c (main): New option --strict-comments.
5896
5897         * html-parse.c (find_comment_end): New function: simple BM search
5898         for "-->".
5899         (map_html_tags): Use it if looking at a comment and not in strict
5900         comments mode.
5901
5902 2003-09-17  Aurelien Marchand  <artaxerxes@users.sf.net>
5903
5904         * ftp.h: Added OS400 system in enum
5905         * ftp-basic.c: recognize OS400 systems
5906         * ftp.c: don't prepend the CWD if talking to OS400, since it
5907         breaks the change in library
5908
5909 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
5910
5911         * retr.c (get_contents): Pass the correct argument to ssl_iread.
5912
5913 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
5914
5915         * safe-ctype.h: Don't #define ctype.h macros to errors because
5916         that loses when someone #include's ctype.h after safe-ctype.h.
5917
5918 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
5919
5920         * url.c: Undef U, W, C after use.
5921
5922 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
5923
5924         * init.c (cmd_spec_restrict_file_names): Allow the OS setting to
5925         be augmented by ",nocontrol" which means don't escape the control
5926         characters, but otherwise keep OS settings.
5927
5928         * url.c (file_unsafe_char): Deleted.
5929         (append_uri_pathel): Query filechr_table directly.
5930         (filechr_table): Separated Unix, Windows, and control-unsafe
5931         characters.
5932
5933 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
5934
5935         * url.c (url_escape_1): New function.
5936         (url_escape): Use it.
5937         (sync_path): Handle pathological cases where u->file and u->dir
5938         contain really strange characters.
5939         (ENCODE): Deleted.
5940         (REENCODE): Deleted.
5941
5942 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
5943
5944         * url.c (url_file_name): Don't reallocate FNAME if the file
5945         doesn't exist, as is usually the case.
5946
5947         * utils.c (unique_name): New flag allow_passthrough.
5948
5949 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
5950
5951         * utils.c (wtimer_sys_diff): Convert the time difference to signed
5952         __int64, then to double.  This works around MS VC++ 6 which can't
5953         convert unsigned __int64 to double directly.
5954
5955 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
5956
5957         * Makefile.in (clean): Also remove the core.<number> files
5958         produced by recent Linux systems.
5959
5960 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
5961
5962         * http.c (post_file): Don't pad the file if it's not large
5963         enough.  Bail out instead.
5964
5965 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
5966
5967         * retr.c (get_contents): Reduce the buffer size to the amount of
5968         data that may pass through for one second.  This prevents long
5969         sleeps when limiting bandwidth.
5970
5971         * connect.c (connect_to_one): Reduce the socket's RCVBUF when
5972         bandwidth limitation to small values is requested.
5973
5974 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
5975
5976         * progress.c (update_speed_ring): Moved the speed ring update to a
5977         separate function and documented it better.
5978
5979         * progress.c: Use `double' for most timers to support granularity
5980         smaller than 1ms.
5981
5982 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
5983
5984         * wget.h (XDIGIT_TO_XCHAR): Implement as index into a literal
5985         string.
5986         (XDIGIT_TO_xchar): Ditto.
5987
5988 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
5989
5990         * utils.c: Change the type of timer-related functions from long to
5991         double, for better precision.  On machines supporting gettimeofday
5992         the timers now work with granularity of less than one millisecond.
5993
5994 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
5995
5996         * cookies.c (parse_set_cookies): Fixed the parser to handle more
5997         edge conditions.
5998         (test_cookies): New function, contains a test suite for
5999         parse_set_cookies.
6000
6001 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
6002
6003         * url.c (strpbrk_or_eos): Implement as a macro under Gcc.
6004
6005 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
6006
6007         * cookies.c (parse_set_cookies): Allow trailing space in
6008         set-cookies header.  Also, allow any amount of whitespace, not
6009         only one character.  Allow empty set-cookies header without
6010         spewing an error.
6011
6012 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
6013
6014         * url.c (append_uri_pathel): Use opt.restrict_file_names when
6015         calling file_unsafe_char.
6016
6017         * init.c: New command restrict_file_names.
6018
6019         * main.c (main): New option --restrict-file-names[=windows,unix].
6020
6021         * url.c (url_file_name): Renamed from url_filename.
6022         (url_file_name): Add directory and hostdir prefix here, not in
6023         mkstruct.
6024         (append_dir_structure): New function, does part of the work that
6025         used to be in mkstruct.  Iterates over path elements in u->path,
6026         calling append_uri_pathel on each one to append it to the file
6027         name.
6028         (append_uri_pathel): URL-unescape a path element and reencode it
6029         with a different set of rules, more appropriate for handling of
6030         files.
6031         (file_unsafe_char): New function, uses a lookup table to decide
6032         whether a character should be escaped for use in file name.
6033         (append_string): New utility function.
6034         (append_char): Ditto.
6035         (file_unsafe_char): New argument restrict_for_windows, decide
6036         whether Windows file names should be escaped in run-time.
6037
6038         * connect.c: Include <stdlib.h> to get prototype for abort().
6039
6040 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
6041
6042         * utils.c (wtimer_sys_set): Extracted the code that sets the
6043         current time here.
6044         (wtimer_reset): Call it.
6045         (wtimer_sys_diff): Extracted the code that calculates the
6046         difference between two system times here.
6047         (wtimer_elapsed): Call it.
6048         (wtimer_elapsed): Don't return a value smaller than the previous
6049         one, which could previously happen when system time is set back.
6050         Instead, reset start time to current time and note the elapsed
6051         offset for future calculations.  The returned times are now
6052         guaranteed to be monotonically nondecreasing.
6053
6054 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
6055
6056         * host.c (lookup_host): Print the result of the DNS lookup.
6057
6058 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
6059
6060         * init.c (cmd_boolean): Accept yes/no along with on/off.
6061         (cmd_lockable_boolean): Ditto.
6062
6063 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
6064
6065         * init.c: New command dns_cache.
6066
6067         * main.c (main): New option --dns-cache[=off].
6068
6069 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
6070
6071         * config.h.in: Initialize HAVE_GETADDRINFO and ENABLE_IPV6.
6072
6073         * all: Use #ifdef ENABLE_IPV6 instead of the older INET6.  Use
6074         HAVE_GETADDRINFO for getaddrinfo-related stuff.
6075
6076 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
6077
6078         * url.c (url_parse): Return an error if the URL contains a [...]
6079         IPv6 numeric address and we don't support IPv6.
6080
6081 2003-09-05  Hrvoje Niksic  <hniksic@xemacs.org>
6082
6083         * url.c (is_valid_ipv6_address): Modified to not require
6084         zero-terminated strings.
6085         (is_valid_ipv4_address): Ditto.
6086
6087 2003-09-05  Mauro Tortonesi <mauro@deepspace6.net>
6088
6089         src/url.c: added RFC 2732 compliance for URL parsing. The
6090         functions is_*_address valid are a modified version of
6091         glibc 2.3.2 inet_pton's code.
6092
6093 2003-09-03  Ahmon Dancy  <dancy@dancysoft.com>
6094
6095         * main.c init.c options.h: Added --retry-connrefused option so
6096         that Connection Refused failures are treated as non-fatal (when
6097         trying to retrieve from busy servers).
6098
6099         * wget.h: New CONNECT_ERROR macro for encapsulating this
6100         modification.
6101
6102         * ftp.c http.c : Use CONNECT_ERROR macro in places where
6103         ECONNREFUSED was checked.
6104
6105 2003-01-11  Ian Abbott  <abbotti@mev.co.uk>
6106
6107         * ftp.c (ftp_retrieve_glob): Reject insecure filenames as determined
6108         by calling new function has_insecure_name_p.  This is based on a
6109         patch by Red Hat.
6110
6111         * fnmatch.c (has_insecure_name_p): New function: returns non-zero
6112         if filename starts with `/' or contains `../' and is therefore
6113         considered insecure.
6114
6115         * fnmatch.h: Declare has_insecure_name_p().
6116
6117 2002-08-03  Hrvoje Niksic  <hniksic@xemacs.org>
6118
6119         * init.c (cmd_file): Allocate RESULT correctly.
6120
6121 2002-07-24  Hrvoje Niksic  <hniksic@xemacs.org>
6122
6123         * recur.c (retrieve_tree): Check whether downloaded_html_set is
6124         non-NULL before using it.
6125
6126 2002-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
6127
6128         * html-parse.c (NAME_CHAR_P): Allow almost any character here.
6129
6130 2002-05-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6131
6132         * progress.c (bar_set_params): Fall back to dot progress if the
6133         terminal type is "emacs".
6134
6135 2002-05-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6136
6137         * log.c: Don't #undef WGET_USE_STDARG.
6138
6139 2002-05-16  Hrvoje Niksic  <hniksic@arsdigita.com>
6140
6141         * hash.c (prime_size): Store the offset of the prime number in the
6142         prime table.  When searching, start with the given offset.
6143         (hash_table_new): Pass the pointer to ht->prime_offset to
6144         prime_size.
6145         (grow_hash_table): Ditto.
6146         (prime_size): Make 13 the first prime to make empty hash tables
6147         slightly smaller.
6148
6149 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
6150
6151         * recur.c (download_child_p): Minor optimization to avoid an
6152         unnecessary additional call to schemes_are_similar_p function.
6153
6154 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
6155
6156         * url.c (schemes_are_similar_p): New function to test enumerated
6157         scheme codes for similarity.
6158
6159         * url.h: Declare it.
6160
6161         * recur.c (download_child_p): Use it to compare schemes.  This
6162         also fixes a bug that allows hosts to be spanned (without the
6163         -H option) when the parent scheme is https and the child's is
6164         http or vice versa.
6165
6166 2002-05-14  Bill Richardson  <bill@riverstonenet.com>
6167
6168         * ftp.c (getftp): Don't ftruncate stdout.
6169
6170         * http.c (gethttp): Don't ftruncate stdout.
6171
6172 2002-05-09  Ian Abbott  <abbotti@mev.co.uk>
6173
6174         * cmpt.c (strptime_internal): Synched with glibc-2.1.3.
6175         (get_number): Ditto.
6176         (get_alt_number): Ditto.
6177         (__isleap): New function-like macro used by strptime.
6178         (day_of_the_week): New function used by strptime.
6179         (day_of_the_year): Ditto.
6180         (__mon_yday): Now shared by mktime and strptime implementations.
6181
6182 2002-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6183
6184         * cookies.c (check_domain_match): Use match_tail in case
6185         insensitive mode.
6186
6187         * utils.c (match_tail): Allow the caller to specify case
6188         insensitive mode.
6189
6190         * cookies.c (store_cookie): When expiry_time is 0, print it as
6191         undefined, not indefinite.
6192
6193 2002-05-07  Ian Abbott  <abbotti@mev.co.uk>
6194
6195         * cookies.c (cookie_jar_process_set_cookie): Do not store
6196         discarded cookie.
6197
6198 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
6199
6200         * cookies.c (check_domain_match): Allow cookies to be set for
6201         subdomains of unknown top-level domains under some circumstances.
6202
6203 2002-04-21  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
6204
6205         * gen_ssl.c:
6206         - allow checking of server cert
6207         - allow defining client cert type
6208         - allow limit of ssl protocol
6209         - check more return values
6210         - added debug message on break
6211
6212 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
6213
6214         * recur.c (download_child_p): Revert order of items in check
6215         number 6 for clarity.
6216
6217 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6218
6219         * init.c: Ditto.
6220
6221         * main.c: Ditto.
6222
6223         * http.c: Use the new interface.
6224
6225         * cookies.c: Provide an OO-style "cookie jar" interface to enable
6226         separate cookie jars.
6227
6228         * http.c (http_atotm): Declare argument as const.
6229
6230 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6231
6232         * cookies.c (cookie_new): Default to PORT_ANY.
6233         (find_cookie_chain_exact): Only search by DOMAIN.
6234         (find_matching_cookie): Also check that PORT matches.
6235         (store_cookie): Only match the domain.
6236         (set_cookie_header_cb): When a cookie "fakes" a domain, assume it
6237         is valid for that host rather than discarding it completely.
6238         (find_matching_chains): Don't search by PORT.
6239         (matching_cookie): Also match PORT.
6240         (load_cookies): Set the port if specified, otherwise leave it as
6241         ANY.
6242         (save_cookies_mapper): Save the port if specified, otherwise leave
6243         it empty.
6244
6245 2002-04-19  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
6246
6247         * init.c: The option `egdfile' was not in sort order.
6248
6249 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
6250
6251         * ftp.c (getftp): Treat directories that begin with <letter>: as
6252         absolute.
6253         (getftp): Strip trailing slashes from con->id before merging it
6254         with TARGET.
6255
6256 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
6257
6258         * http.c (gethttp): If Content-Type is not given, assume
6259         text/html.
6260
6261 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
6262
6263         * recur.c (download_child_p): Don't ignore rejection of HTML
6264         documents that are themselves leaves of recursion.
6265
6266 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
6267
6268         Makefile.in: Updated several dependencies for object files to take
6269         account of nested include files.
6270
6271 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
6272
6273         Makefile.in: The target `connect$o' (connect.o) now depends on
6274         `utils.h'
6275
6276 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
6277
6278         * host.c (SET_H_ERRNO): New function-like macro to set `h_errno'.
6279         (gethostbyname_with_timeout): Use it.
6280
6281         * utils.c: Don't define `SETJMP()', `run_with_timeout_env' or
6282         `abort_run_with_timeout()' when `USE_SIGNAL_TIMEOUT' is undefined.
6283
6284 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
6285
6286         * host.c (getaddrinfo_with_timeout): New function.
6287         (gethostbyname_with_timeout): Ditto.
6288         (lookup_host): Use them.
6289
6290 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6291
6292         * utils.c (number_to_string): Handle the case when n < -INT_MAX.
6293
6294 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6295
6296         * init.c (comind): Use a marginally faster implementation of
6297         binary search.  To quote Martin Buchholz, "a nanosecond saved is a
6298         nanosecond earned."
6299
6300 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6301
6302         * main.c (print_help): Document `--post-data' and `--post-file'.
6303
6304 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6305
6306         * http.c (gethttp): Ditto.
6307
6308         * retr.c (retrieve_url): Initialize variables to appease the
6309         compiler.
6310
6311         * gen_sslfunc.c (ssl_iread): Don't handle EINTR when calling
6312         select_fd.
6313         (ssl_iwrite): Ditto.
6314
6315         * connect.c (select_fd): Rewrite to handle EINTR.  Set errno to
6316         ETIMEDOUT in case of timeout.
6317         (iread): No need to handle EINTR when calling select_fd.
6318         (iwrite): Ditto.
6319
6320 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6321
6322         * retr.c (retrieve_url): Make sure that POST is not honored for
6323         redirections.
6324
6325         * http.c (gethttp): Send the POST data when requested.
6326         (post_file): New function.
6327         (gethttp): Use it.
6328
6329         * main.c (main): Ditto.
6330
6331         * init.c: Add new options.
6332
6333         * options.h (struct options): New options post_data and
6334         post_file_name.
6335
6336 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6337
6338         * connect.c (connect_with_timeout): Firing SIGALRM can result in
6339         connect() exiting with EINTR.  Treat EINTR the same as ETIMEDOUT.
6340
6341 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6342
6343         * connect.c (connect_with_timeout): Use it.
6344
6345         * utils.c (run_with_timeout): New function.
6346
6347 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6348
6349         * url.c (getproxy): Accept a struct url argument.  This obviates
6350         the need for USE_PROXY_P.
6351
6352         * retr.c (retrieve_url): Allow proxy to be a non-FTP URL.
6353
6354         * ftp.c (getftp): Recognize FWTK-style proxy.
6355
6356 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6357
6358         * config.h.in: Only define _VA_LIST when compiled with gcc.
6359
6360 2002-04012  Ian Abbott  <abbotti@mev.co.uk>
6361
6362         * http.c (http_loop): Compensate for MS Windows two-second
6363         granularity of file modification time when comparing timestamps.
6364
6365         * ftp.c (ftp_retrieve_list): Ditto.
6366
6367 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
6368
6369         * utils.c (has_html_suffix_p): New function to test filename for
6370         common html extensions.
6371
6372         * utils.h: Declare it.
6373
6374         * http.c (http_loop): Use it instead of previous test.
6375
6376         * retr.c (retrieve_url): Ditto.
6377
6378         * recur.c (download_child_p): Ditto.
6379
6380 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6381
6382         * config.h.in: Define _VA_LIST on Solaris to prevent stdio.h from
6383         declaring va_list.
6384         From Kevin Rodgers <kevinr@ihs.com>.
6385
6386 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
6387
6388         * Makefile.in: Specify libtool mode explicitly when linking.
6389
6390 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6391
6392         * connect.c (connect_with_timeout): New function.
6393         (connect_to_one): Use it.
6394
6395         * config.h.in: Add stubs for HAVE_SIGSETJMP, HAVE_SIGBLOCK, and
6396         HAVE_SETJMP_H.
6397
6398 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6399
6400         * log.c: Set WGET_USE_STDARG if __STDC__ is defined and stdarg.h
6401         is present.
6402
6403 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6404
6405         * progress.c (bar_create): If INITIAL is larger than TOTAL, fix
6406         TOTAL.
6407         (bar_finish): Likewise.
6408
6409 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6410
6411         * html-url.c (tag_handle_form): New function.  Pick up form
6412         actions and mark them for conversion only.
6413
6414 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6415
6416         * progress.c (struct progress_implementation): Use PARAMS when
6417         declaring the parameters of *create, *update, *finish, and
6418         *set_params.
6419
6420         * netrc.c: Ditto.
6421
6422         * http.c: Reformat some function definitions so that ansi2knr can
6423         read them.
6424
6425         * hash.c (struct hash_table): Use the PARAMS macro around
6426         parameters in the declaration of hash_function and test_function.
6427         (prime_size): Spell 2580823717UL and 3355070839UL as (unsigned
6428         long)0x99d43ea5 and (unsigned long)0xc7fa5177 respectively, so
6429         that pre-ANSI compilers can read them.
6430         (find_mapping): Use PARAMS when declaring EQUALS.
6431         (hash_table_put): Ditto.
6432
6433         * ftp.h: Wrap the parameters of ftp_index declaration in PARAMS.
6434
6435         * cookies.c (cookie_new): Use (unsigned long)0 instead of 0UL,
6436         which was unsupported by pre-ANSI compilers.
6437
6438         From Nelson H. F. Beebe <beebe@math.utah.edu>, for the most part.
6439
6440 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6441
6442         * url.c (url_filename): Use compose_file_name regardless of
6443         whether opt.dirstruct is set.
6444         (mkstruct): Don't handle the query and the reencoding of DIR; that
6445         is done in compose_file_name.
6446
6447 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6448
6449         * wget.h: Ditto for extern char *exec_name.
6450
6451         * options.h: Don't guard against OPTIONS_DEFINED_HERE -- it is
6452         perfectly legal to follow an `extern' with a non-`extern' ones,
6453         provided the types match.
6454
6455         * main.c: Don't define OPTIONS_DEFINED_HERE.
6456
6457 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6458
6459         * progress.c (create_image): Revert to calculating ETA based on
6460         average download speed.
6461         (create_image): Don't print ETA until the download has been active
6462         for at least 3 seconds.
6463         (create_image): When ETA is not available, don't print anything.
6464         The previous version would print --:--.
6465
6466 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6467
6468         * progress.c (bar_update): Keep updating a subinterval until it
6469         reaches or exceeds a watermark.  That way the measurement will be
6470         guaranteed to span a configurable minimum of time.  The current
6471         default is 3s in 30 100ms intervals.
6472
6473 2002-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6474
6475         * progress.c (bar_update): Maintain an array of the time it took
6476         to perform previous 30 network reads.
6477         (create_image): Calculate the download speed and ETA based on the
6478         last 30 reads, not the entire download.
6479         (create_image): Make sure that the ETA is not changed more than
6480         once per second.
6481
6482 2002-04-09  Ian Abbott  <abbotti@mev.co.uk>
6483
6484         * mswindows.c (borland_utime): New function conditionally defined
6485         when `HACK_BCC_UTIME_BUG' is defined.  A reimplementation of
6486         `utime()' as Borland's `utime()' function is broken on Windows 9x
6487         systems.  (Original patch by Chin-yuan Kuo <sr1111111@yahoo.com.tw>.)
6488
6489 2002-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6490
6491         * ftp.c (ftp_loop): Propagate the result of ftp_retrieve_glob.
6492
6493 2002-03-26  Ian Abbott  <abbotti@mev.co.uk>
6494
6495         * Makefile.in: Updated several dependencies for object files.
6496
6497 2002-03-20  Ian Abbott  <abbotti@mev.co.uk>
6498
6499         * mswindows.c: Include "utils.h".
6500
6501 2002-03-18  Ian Abbott  <abbotti@mev.co.uk>
6502
6503         * host.h: Don't include netdb.h on windows.
6504
6505 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6506
6507         * recur.c (retrieve_tree): Handle the case when start_url doesn't
6508         parse.
6509
6510 2002-02-19  Andreas Damm  <andreas-sourceforge@radab.org>
6511
6512         * wget.h (DO_REALLOC_FROM_ALLOCA): Multiply with sizeof(type) when
6513         calling xmalloc and memcpy.
6514
6515 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6516
6517         * host.h: Include Unix-specific includes #ifndef WINDOWS.
6518         Patch originally provided by Christian Lackas.
6519
6520 2002-02-11  Christian Lackas  <delta@lackas.net>
6521
6522         * recur.c: recurive downloading for https fixed.
6523
6524 2002-02-19  Alan Eldridge  <alane@geeksrus.net>
6525
6526         * host.h: Also include <netinet/in.h> and <sys/socket.h>.
6527
6528         * ftp-basic.c: Also include <netinet/in.h>.
6529
6530 2002-02-05  Ian Abbott  <abbotti@mev.co.uk>
6531
6532         * http.c (gethttp): when -c used, mark already fully retrieved
6533         file as successfully retrieved.
6534
6535 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6536
6537         * url.c (url_parse): Don't treat '?' as query string separator
6538         when parsing FTP URLs.
6539
6540 2002-02-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6541
6542         * html-url.c (tag_handle_meta): Don't crash on <meta
6543         http-equiv=refresh> where content is missing.
6544
6545 2002-01-31  Herold Heiko  <Heiko.Herold@previnet.it>
6546
6547         * ftp-basic.c, host.c: don't include sys/socket.h, arpa/inet.h,
6548         netdb.h on windows.
6549
6550 2002-01-30  Hrvoje Niksic  <hniksic@arsdigita.com>
6551
6552         * retr.c (retrieve_url): Remove redirection cycle detection.  This
6553         is because some sites legitimately redirect the user back to the
6554         same location, e.g. after an authorization check performed by
6555         another page.  MAX_REDIRECTIONS is still used to prevent infinite
6556         redirection loops.
6557
6558 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6559
6560         * http.c (gethttp): Wrap host name in square brackets if it
6561         contains a colon.
6562
6563 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6564
6565         * url.c (url_parse): Allow all hex digits, not only decimal ones,
6566         to form an IP address.
6567
6568 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
6569
6570         * url.c (urlchr_table): Make square braces reserved, so we can
6571         parse http://[::1]/.
6572         (url_parse): Handle host in braces.
6573         (url_string): If url->host contains colons, wrap it in braces.
6574
6575 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6576
6577         * connect.c (resolve_bind_address): New function.
6578         (connect_to_one): Use it.
6579         (bindport): Ditto.
6580
6581         * init.c: Don't resolve bind-address here.
6582
6583         * host.c (wget_sockaddr_set_address): Would bug out with ADDR == NULL.
6584
6585 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6586
6587         * host.c (lookup_host): Use sizeof(ip4_address) to calculate the
6588         offset.
6589         (address_list_new): Use map_ipv4_to_ip.
6590         (wget_sockaddr_set_address): Convert ADDR to IPv4 before using it
6591         in IPv4 context.
6592
6593 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6594
6595         * source: Integrated IPv6 support.
6596         Written by Thomas Lussnig <thomas.lussnig@bewegungsmelder.de>.
6597
6598 2002-01-15  Ian Abbott  <abbotti@mev.co.uk>
6599
6600         * init.c (cmd_file): Change `\' to `/' for Windows (yes, really!)
6601         (cmd_directory): New function. Like cmd_file(), but strips
6602         trailing directory separators.
6603         (commands): Change action for "dirprefix" from `cmd_file' to
6604         `cmd_directory'.
6605
6606         * utils.c (make_directory): Allow intermediate `mkdir' calls to
6607         fail, as not all path components that do not exist should be
6608         directory components, especially under Windows.
6609
6610 2002-01-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6611
6612         * netrc.c (parse_netrc): Skip leading whitespace before testing
6613         whether the line is empty.  Empty lines still contain the line
6614         terminator.
6615
6616 2002-01-15  Hrvoje Niksic  <hniksic@arsdigita.com>
6617
6618         * gen_sslfunc.c (ssl_iread): Call select on the file descriptor
6619         only if no data is pending in SSL buffers.
6620         From tony@bluetail.com.
6621
6622 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6623
6624         * headers.c (header_get): Strip trailing whitespace from the
6625         header.
6626
6627 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6628
6629         * url.c (parse_uname): URL-decode *USER and *PASSWD.
6630
6631 2002-01-07  Ian Abbott <abbotti@mev.co.uk>
6632
6633         * url.c (uri_merge_1): Deal with "net path" relative URL (one that
6634         starts with "//").
6635
6636 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6637
6638         * http.c (gethttp): Invalidate SOCK if get_contents encountered an
6639         error.
6640
6641 2001-12-24  Hrvoje Niksic  <hniksic@arsdigita.com>
6642
6643         * version.c: Wget 1.8.1 is released.
6644
6645 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6646
6647         * version.c: Wget 1.8.1-pre3 is released.
6648
6649 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6650
6651         * recur.c (retrieve_tree): Enqueue the canonical representation of
6652         start_url, so that the test against dl_url_file_map works.
6653
6654 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6655
6656         * log.c (logputs): Check for requested verbosity before printing
6657         anything.
6658
6659 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6660
6661         * html-url.c (tag_handle_link): Treat the "shortcut icon" link as
6662         inline.
6663
6664 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6665
6666         * recur.c (retrieve_tree): Make a copy of file obtained from
6667         dl_url_file_map because the code calls xfree(file) later.
6668
6669 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6670
6671         * recur.c (register_html): Maintain a hash table of HTML files
6672         along with the list.  Disallow duplicates.
6673         (retrieve_tree): Use downloaded_html_set to check whether the file
6674         found in dl_url_file_map is an HTML file, and descend into it if
6675         so.
6676         (convert_all_links): Don't guard against duplicates in
6677         downloaded_html_list, since they are no longer possible.
6678
6679 2001-12-18  Ian Abbott  <abbotti@mev.co.uk>
6680
6681         * recur.c (retrieve_tree): Pass on referring URL when retrieving
6682         recursed URL.
6683
6684 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6685
6686         * version.c: Wget 1.8.1-pre2 is released.
6687
6688 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6689
6690         * retr.c (sleep_between_retrievals): Simplify indentation.
6691
6692 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6693
6694         * gen_sslfunc.c (ssl_init_prng): Use random_number to get a byte
6695         of "randomness" at a time.
6696         (ssl_init_prng): Don't seed the PRNG; random_number will do that.
6697
6698         * retr.c (sleep_between_retrievals): Use it.  Make sure that the
6699         random amount averages in opt.wait.
6700         (sleep_between_retrievals): Don't seed the PRNG; random_number
6701         will do that.
6702
6703         * utils.c (random_number): New function.
6704
6705 2001-12-14  Hrvoje Niksic  <hniksic@arsdigita.com>
6706
6707         * url.c (path_simplify): Move here from utils.c, and make static.
6708
6709 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6710
6711         * init.c (wgetrc_file_name): Print correct message when loading
6712         getenv("WGETRC") fails.
6713
6714 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6715
6716         * recur.c (register_download): Don't abort when one URL references
6717         two different files.
6718
6719 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6720
6721         * http.c (gethttp): Check for conn->scheme, not u->scheme, before
6722         calling ssl_iwrite.
6723
6724 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6725
6726         * version.c: Wget 1.8.1-pre1 is released.
6727
6728 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6729
6730         * res.c (matches): Fix broken URL in the docstring.
6731
6732 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6733
6734         * html-url.c (tag_url_attributes): Mark <embed href=...> as
6735         external.
6736
6737 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6738
6739         * url.c (get_urls_file): Cosmetic changes.
6740
6741 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6742
6743         * html-url.c (append_one_url): Resurrect warning when unable to
6744         resolve a relative link.
6745
6746 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6747
6748         * html-url.c (collect_tags_mapper): Break into several functions.
6749         (tag_url_attributes): Collect <embed href=...>.
6750
6751 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6752
6753         * host.c: New type ipv4_address.  Use it consistently instead of
6754         `unsigned char[4]' and `unsigned char *'.
6755         (pretty_print_address): Accept a `const void *', to require even
6756         less casting.
6757
6758 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6759
6760         * ftp-ls.c (ftp_parse_vms_ls): Fix obvious memory leaks.
6761
6762 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6763
6764         * main.c (main): Initialize progress after fork_to_background, so
6765         that it knows when to use dots.
6766
6767         * mswindows.c (ws_hangup): Call log_request_redirect_output.
6768
6769         * utils.c (fork_to_background): Print the PID of the child
6770         process.
6771
6772         * log.c (log_request_redirect_output): Set a flag that output
6773         redirection has been requested.  Doing anything else in a signal
6774         handler is unsafe.
6775         (check_redirect_output): New function: check whether redirection
6776         has been requested and, if so, call redirect_output().
6777         (logputs): Call check_redirect_output.
6778         (logprintf): Ditto.
6779         (debug_logprintf): Ditto.
6780         (redirect_output): Print clearer messages.
6781
6782         * main.c (redirect_output_signal): Don't call
6783         redirect_output_signal directly.  Instead, call
6784         log_request_redirect_output.
6785
6786         * utils.c (memfatal): Ditto.
6787
6788         * progress.c (display_image): Use it.
6789
6790         * log.c (log_set_save_context): New function: allow the caller to
6791         turn off saving log context lines.
6792
6793 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6794
6795         * host.c (address_list_set_faulty): Uncomment a sanity check.
6796
6797 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6798
6799         * utils.c (long_to_string): Return a pointer after where the
6800         number ends.
6801         (long_to_string): Rename to number_to_string.
6802
6803 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6804
6805         * utils.c (path_simplify): Correctly handle the unlikely case that
6806         b starts out as path + 1.
6807
6808 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6809
6810         * utils.c (path_simplify): Rewrite, with better comments, and
6811         without the use of strcpy to move overlapping blocks.
6812
6813 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6814
6815         * init.c (cmd_spec_progress): Resurrect.  Check whether VAL is a
6816         valid progress type before setting it.
6817
6818 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6819
6820         * main.c (main): Remove stray debugging message.
6821
6822 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6823
6824         * progress.c (create_image): Fix ETA padding when hours are prined.
6825
6826 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6827
6828         * version.c: Wget 1.8 is released.
6829
6830 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
6831
6832         * url.c (reencode_string): Declare static.
6833
6834         * res.c (registered_specs): Declare static.
6835
6836         * progress.c (current_impl_locked): Declare static.
6837
6838         * log.c (flush_log_p): Declare static.
6839         (needs_flushing): Ditto.
6840
6841         * http.c (digest_authentication_encode): Declare static.
6842
6843         * html-url.c (init_interesting): Declare static.
6844
6845         * host.c (host_name_addresses_map): Declare static.
6846
6847         * cookies.c (find_matching_chains): Declare static.
6848
6849         * ftp-ls.c (ftp_parse_vms_ls): Warn about the memory leak
6850         indicated by lint.
6851
6852         * utils.c (path_simplify): Remove unused variable STUB_CHAR.
6853
6854         * host.c (address_list_set_faulty): Document that INDEX is
6855         currently unused.
6856
6857         * url.c (rewrite_shorthand_url): Remove unused variable PATH.
6858
6859 2001-12-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6860
6861         * version.c: Wget 1.8-pre2 is released.
6862
6863 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6864
6865         * progress.c (progress_handle_sigwinch): Set up the signal again.
6866
6867         * utils.c: Include <sys/termios.h>, where Solaris defines
6868         TIOCGWINSZ.
6869
6870         * progress.c (bar_create): Don't use the last column on the screen.
6871         (create_image): Pad ETA to constant size.  Pad SIZE to nine digits
6872         only until it exceeded them.
6873
6874 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6875
6876         * version.c: Wget 1.8-pre1 is released.
6877
6878 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6879
6880         * progress.c (progress_create): Make sure that, when the output is
6881         redirected, the progress implementation gets changed to the
6882         fallback one.
6883         (bar_set_params): Set current_impl_locked to 1 when "force" is
6884         specified.
6885         (progress_create): Don't change the progress implementation if
6886         current_impl_locked is non-zero.
6887
6888         * main.c (redirect_output_signal): Call
6889         progress_schedule_redirect.
6890
6891         * progress.c (progress_schedule_redirect): New function.
6892
6893 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6894
6895         * log.c (logvprintf): Restructure to allow being called multiple
6896         times.
6897         (logprintf): Call logvprintf in a loop.
6898         (debug_logprintf): Ditto.
6899
6900 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6901
6902         * gen_sslfunc.c (ssl_init_prng): Allow the user to disable EGD by
6903         setting egd_file it to empty string.
6904
6905         * main.c (main): Change the option name from --sslegdsock to
6906         --egd-file.
6907
6908 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6909
6910         * gen_sslfunc.c (ssl_init_prng): Make the printed message
6911         translatable.
6912
6913 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6914
6915         * url.c (scheme_disable): New function.
6916
6917         * main.c (main): Call ssl_init_prng from here rather than from
6918         init_ssl, so that it has a chance to disable support for https
6919         before a URL has been resolved.
6920
6921         * gen_sslfunc.c (ssl_init_prng): Seed with rand() if all else
6922         failed.
6923         (ssl_init_prng): Disable support for https if seeding the PRNG
6924         fails.
6925
6926 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6927
6928         * utils.c (read_whole_line): Handle lines beginning with \0.
6929
6930 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
6931
6932         * recur.c (convert_all_links): Guard against duplicates in
6933         downloaded_html_files.
6934         (register_download): Don't invalidate similar-looking URLs.
6935         (match_except_index): New function.
6936
6937 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
6938
6939         * utils.c (path_simplify): Document with test cases.
6940
6941 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
6942
6943         * gen_sslfunc.c: Ditto.
6944
6945         * rbuf.c: Include <string.h>.
6946
6947 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
6948
6949         * recur.c (retrieve_tree): Check whether the URL was already
6950         downloaded before downloading it again.
6951         (descend_child_p): Renamed to download_child_p.
6952         (register_download): When one URL is downloaded to a file already
6953         "owned" by another URL, delete all references that map any URL to
6954         that file.
6955         (register_delete_file): New function.
6956         (retrieve_tree): Use it after deleting a file.
6957
6958         * url.c (url_parse): Re-canonicalize the URL also if the path is
6959         empty, so that e.g. "http://www.server.com" ->
6960         "http://www.server.com/".
6961         (lowercase_str): Use ISUPPER instead of !ISLOWER.
6962
6963         * retr.c (retrieve_url): Use the canonical URL form when calling
6964         register_download().
6965
6966 2001-12-04  Ian Abbott <abbotti@mev.co.uk>
6967
6968         * snprintf.c (dopr): Use `unsigned int' as the second argument to
6969         va_arg when casting to `unsigned short' is intended.
6970
6971 2001-12-04  Herold Heiko  <Heiko.Herold@previnet.it>
6972
6973         * gen_sslfunc.c: on windows provide ssl crypto random
6974           initialization through RAND_screen(); could possibly
6975           be not enough for strong ssl communication (see the
6976           relevant manual page from the openssl package).
6977
6978 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
6979
6980         * url.c (local_quote_string): Reenable quoting of question marks,
6981         but only when `--html-extension' is used.
6982
6983 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
6984
6985         * version.c: Wget 1.8-beta3 is released.
6986
6987 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
6988
6989         * snprintf.c (dopr): Cast the result of va_arg to short int and
6990         short unsigned int where these types are expected to be used.
6991
6992 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
6993
6994         * snprintf.c (dopr): Replace `short int' and `unsigned short int'
6995         with `int' when using it as the second argument to `va_arg'.
6996
6997 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
6998
6999         * host.c (address_list_new_one): New function.
7000         (lookup_host): Use it.
7001
7002 2001-12-03  Andre Majorel  <amajorel@teaser.fr>
7003
7004         * host.c (lookup_host): Don't initialize TMPSTORE directly because
7005         it's not legal C.
7006
7007 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
7008
7009         * ftp-basic.c (ftp_port): Don't return HOSTERR if we fail getting
7010         the socket data.
7011
7012         * ftp.c: Ditto.
7013
7014         * http.c: No need to declare h_errno.
7015
7016         * host.c: Declare h_errno.
7017
7018 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
7019
7020         * utils.c (file_merge): If BASE doesn't contain a slash, just
7021         return a copy of FILE.
7022
7023 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
7024
7025         * version.c: Wget 1.8-beta2 is released.
7026
7027 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7028
7029         * ftp.c (getftp): When PWD fails, assume "/".
7030
7031         * ftp-basic.c (ftp_syst): Fix indentation.
7032
7033 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7034
7035         * url.c (get_urls_file): If opt.base_href is specified, merge each
7036         URL with the base.
7037
7038 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7039
7040         * main.c (print_help): Don't document the removed `-nh'.
7041
7042 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7043
7044         * url.c (url_full_path): Document better.
7045
7046         * http.c (gethttp): Use the full path when creating digest
7047         authorization.
7048
7049 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7050
7051         * cookies.c (path_matches): Return 0 if PREFIX doesn't begin with
7052         '/'.
7053
7054 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7055
7056         * cookies.c (path_matches): FULL_PATH doesn't begin with '/', but
7057         PREFIX does.
7058
7059 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7060
7061         * cookies.c (check_domain_match): Reimplement to match Netscape's
7062         "preliminary specification" for cookies.
7063
7064 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7065
7066         * url.c (replace_attr_refresh_hack): New function.
7067         (convert_links): Call replace_attr_refresh_hack for Refresh
7068         links.  It will add the "TMOUT; URL=" junk before the link.
7069
7070         * html-url.c (collect_tags_mapper): Set ID to the ID of the
7071         "content" attribute, not "http-equiv".
7072         (collect_tags_mapper): Don't use OFFSET to hack the raw_* values;
7073         instead, store the information that this entry belongs to a
7074         "refresh" link.
7075
7076 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7077
7078         * version.c: Wget 1.8-beta1 is released.
7079
7080 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7081
7082         * recur.c (retrieve_tree): Allow -p retrievals to exceed maximum
7083         depth by more than one.
7084
7085 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
7086
7087         * retr.c (retrieve_url): Don't allow more than 20 redirections.
7088
7089 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
7090
7091         * recur.c (retrieve_tree): Skip the non-inline entries when
7092         enqueuing the children of a leaf HTML node in -p mode.
7093         (descend_url_p): Ignore opt.no_parent when in -p mode and UPOS is
7094         "inline".
7095
7096         * html-url.c (get_urls_html): Don't accept dash_p_leaf_HTML.
7097         (collect_tags_mapper): When an entry is "inline", mark it as such.
7098
7099         * recur.c (descend_url_p): Fix test when checking for
7100         acceptance/rejection rules.
7101
7102 2001-10-31 Daniel BODEA <dali@dali-designs.com>
7103
7104         * netrc.c (search_netrc): When slack_default is 0, still look for
7105         an account with matching password, just not the "default account".
7106         HTTP Authorization using .netrc should now work as expected.
7107
7108 2001-11-30  T. Bharath  <TBharath@responsenetworks.com>
7109
7110         * http.c (persistent_available_p): Call SHUTDOWN_SSL if
7111         test_socket_open fails.
7112
7113 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
7114
7115         * progress.c (display_image): Just print one CR to reset the
7116         cursor position.
7117
7118 2001-11-30  Christian Fraenkel  <c.fraenkel@gmx.net>
7119
7120         * init.c: New command `ssl_egd_sock'.
7121
7122         * main.c (main): New option `--sslegdsock'.
7123
7124         * gen_sslfunc.c (ssl_init_prng): Seed the RNG using EGD.
7125
7126 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7127
7128         * cmpt.c (memmove): Include a simple memmove implementation.
7129
7130 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7131
7132         * headers: Guard against header files being included twice.
7133
7134 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7135
7136         * gen-md5.c: Use unsigned char * as the buffer argument to
7137         gen_md5_update.
7138
7139 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7140
7141         * connect.h: Declare select_fd.
7142
7143 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7144
7145         * recur.c (descend_url_p): When resolving no_parent, compare with
7146         start_url, not parent url.  Otherwise link from /a/b/ to /a/c/
7147         wouldn't be followed, although the download started from /a/.
7148
7149 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
7150
7151         * config.h.ms, mswindows.h: defined HAVE_ISATTY, use _isatty for
7152         MS VC; somebody with Borland compiler please check and provide
7153         patch if possible;
7154
7155         * cmpt.c: provided a usleep emulation.
7156
7157 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7158
7159         * host.c (address_list_new): Initialize al->faulty.
7160
7161 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7162
7163         * http.c (http_process_range): Accept the broken output of
7164         "JavaWebServer/1.1.1".
7165
7166 2001-11-28  Hrvoje Niksic  <hniksic@arsdigita.com>
7167
7168         * progress.c (dot_set_params): If PARAMS is unspecified, use
7169         dot_style, if available.
7170
7171         * init.c: Ditto.
7172
7173         * main.c (main): Resurect --dot-style.
7174
7175         * progress.c (dot_finish): Print the quantity if we're left at the
7176         beginning of a row.
7177
7178 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7179
7180         * cmpt.c (random): Removed.
7181
7182         * retr.c (sleep_between_retrievals): Use the more portable rand()
7183         instead of random().
7184
7185 2001-11-27  Ian Abbott <abbotti@mev.co.uk>
7186
7187         * retr.c (retrieve_from_file): Initialize `new_file' to NULL to
7188         prevent seg fault.
7189
7190 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7191
7192         * connect.c (connect_to_many): Use address_list_set_faulty to
7193         prevent the faulty address from being reused.
7194
7195         * host.c (address_list_set_faulty): New function.
7196         (address_list_get_bounds): New function, instead of
7197         address_list_count.
7198
7199 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7200
7201         * url.c (convert_links): Don't translate %d-%d.
7202
7203         * main.c (print_help): Remove stray HAVE_RANDOM code.
7204
7205 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7206
7207         * ftp.c (getftp): Improve output after sending PASV.  Don't
7208         attempt to "look up" the IP address we already know; call
7209         connect_to_one directly.
7210
7211 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7212
7213         * progress.c: Change the default progress implementation to "bar".
7214
7215 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7216
7217         * progress.c (bar_create): Print two newlines.
7218
7219 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7220
7221         * cmpt.c (random): New function, a simple-minded replacement for
7222         random() on systems that don't have it.
7223
7224 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7225
7226         * config.h.in: Put a HAVE_USLEEP stub.
7227
7228         * cmpt.c (usleep): Replacement implementation of usleep using
7229         select.
7230
7231         * init.c: New option init_rate.
7232
7233         * main.c (main): New option --limit-rate.
7234
7235         * retr.c (limit_bandwidth): New function.
7236         (get_contents): Call it to limit the bandwidth used when
7237         downloading.
7238
7239         * progress.c (dot_update): Would print the wrong download speed on
7240         rows other than the first one when the download was continued.
7241         (dot_finish): Ditto.
7242
7243 2001-11-26  Ian Abbott <abbotti@mev.co.uk>
7244
7245         * http.c (gethttp): fix undeclared variable 'err' when compiled
7246         with HAVE_SSL.
7247
7248 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7249
7250         * progress.c: Don't allocate new timers; use the timing data
7251         propagated from the caller.
7252
7253         * retr.c (get_contents): Allocate and use a timer.
7254
7255 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7256
7257         * http.c (last_host_ip): Made into an address_list.
7258         (invalidate_persistent): Release pc_last_host_ip.
7259         (register_persistent): Use lookup_host.
7260         (persistent_available_p): Check for equality of hosts using
7261         address_list_match_all.  Call address_list_release.
7262         (http_cleanup): New function.
7263
7264         * ftp.c (getftp): Use lookup_host and connect_to_many.
7265
7266         * http.c (gethttp): Use lookup_host and connect_to_many.
7267
7268         * connect.c (make_connection): Removed.
7269         (connect_to_one): New function.
7270         (connect_to_many): Ditto.
7271         (set_connection_host_name): Ditto.
7272
7273         * host.c (lookup_host): New function; new return type.
7274         (address_list_new): New function.
7275         (address_list_count): Ditto.
7276         (address_list_copy_one): Ditto.
7277         (address_list_delete): Ditto.
7278         (address_list_release): Ditto.
7279         (pretty_print_address): Ditto.
7280
7281 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7282
7283         * recur.c (retrieve_tree): In case of followed redirection,
7284         blacklist the pre-redirection URL.
7285
7286 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7287
7288         * recur.c (descend_redirect_p): New function.
7289         (retrieve_tree): Make sure redirections are not blindly followed.
7290
7291 2001-11-04  Alan Eldridge  <alane@geeksrus.net>
7292
7293         * config.h.in: added HAVE_RANDOM.
7294
7295         * options.h: added random_wait to struct options.
7296
7297         * main.c (print_help [HAVE_RANDOM], main): added arg parsing, help
7298         for --random-wait.
7299
7300         * retr.c (sleep_between_retrievals) [HAVE_RANDOM]: added
7301         implementation of random wait times.
7302
7303         * init.c (commands): added "randomwait" keyword.
7304
7305 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7306
7307         * recur.c (descend_url_p): Be more conservative with blacklisting
7308         URLs.
7309         (convert_all_links): Print how many files have been converted, and
7310         how long it took.
7311
7312         * progress.c (create_image): Place the number of downloaded bytes
7313         right after the progress bar.
7314
7315         * utils.c (suffix): Return a pointer into the string.
7316
7317 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7318
7319         * url.c (convert_links): Handle CO_NULLIFY_BASE.
7320
7321         * recur.c (retrieve_tree): Ignore download-ignorable children.
7322         (convert_all_links): Specify CO_NULLIFY_BASE when link_base_p.
7323
7324         * html-url.c (handle_link): Return the newly created urlpos.
7325         (collect_tags_mapper): When dealing with BASE, store the base
7326         reference and mark it as download-ignorable.
7327
7328 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7329
7330         * url.c (convert_links): Attempt to quote '?' as "%3F" when
7331         linking to local files.  Given up on the attempt, as it breaks
7332         local browsing.
7333
7334 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7335
7336         * main.c (private_initialize): Removed.
7337         (main): Don't call private_initialize.
7338
7339         * http.c: Call lookup_host.
7340
7341         * host.c (host_init): Removed.
7342         (add_host_to_cache): Initialize host_name_address_map here, on
7343         demand.
7344         (ngethostbyname): Commented out.
7345
7346         * connect.c (make_connection): Remove dead code; use lookup_host.
7347
7348         * host.c (store_hostaddress): Renamed to lookup_host and reversed
7349         the args.
7350         Removed host_address_name_map and host_slave_master_map.
7351
7352 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7353
7354         * progress.c (dot_create): Align the "[ skipping ... ]" string
7355         with the dots.
7356
7357         * retr.c (rate): Split into two functions: calc_rate and
7358         retr_rate.
7359
7360         * progress.c (create_image): Draw a dummy progress bar even when
7361         total size is unknown.
7362         (display_image): Place the text cursor at the end of the "image".
7363
7364 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7365
7366         * url.c (reencode_string): Use unsigned char, not char --
7367         otherwise the hex digits come out wrong for 8-bit chars such as
7368         nbsp.
7369         (lowercase_str): New function.
7370         (url_parse): Canonicalize u->url if needed.
7371         (get_urls_file): Parse each URL, and return only the valid ones.
7372         (free_urlpos): Call url_free.
7373         (mkstruct): Add :port if the port is non-standard.
7374         (mkstruct): Append the query string to the file name, if any.
7375         (urlpath_length): Use strpbrk_or_eos.
7376         (uri_merge_1): Handle the cases where LINK is an empty string,
7377         where LINK consists only of query, and where LINK consists only of
7378         fragment.
7379         (convert_links): Count and report both kinds of conversion.
7380         (downloaded_file): Use a hash table, not a list.
7381         (downloaded_files_free): Free the hash table.
7382
7383         * retr.c (retrieve_from_file): Ditto.
7384
7385         * main.c (main): Call either retrieve_url or retrieve_tree
7386         for each URL, not both.
7387
7388         * retr.c (register_all_redirections): New function.
7389         (register_redirections_mapper): Ditto.
7390         (retrieve_url): Register the redirections.
7391         (retrieve_url): Make the string "Error parsing proxy ..."
7392         translatable.
7393
7394         * res.c (add_path): Strip leading slash from robots.txt paths so
7395         that the path representations are "compatible".
7396         (free_specs): Free each individual path, too.
7397         (res_cleanup): New function.
7398         (cleanup_hash_table_mapper): Ditto.
7399
7400         * recur.c (url_queue_new): New function.
7401         (url_queue_delete): Ditto.
7402         (url_enqueue): Ditto.
7403         (url_dequeue): Ditto.
7404         (retrieve_tree): New function, replacement for recursive_retrieve.
7405         (descend_url_p): New function.
7406         (register_redirection): New function.
7407
7408         * progress.c (create_image): Cosmetic changes.
7409
7410         * init.c (cleanup): Do all those complex cleanups only if
7411         DEBUG_MALLOC is defined.
7412
7413         * main.c: Removed --simple-check and the corresponding
7414         simple_host_check in init.c.
7415
7416         * html-url.c (handle_link): Parse the URL here, and propagate the
7417         parsed URL to the caller, who would otherwise have to parse it
7418         again.
7419
7420         * host.c (xstrdup_lower): Moved to utils.c.
7421         (realhost): Removed.
7422         (same_host): Ditto.
7423
7424 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7425
7426         * utils.c (path_simplify): Preserver the (non-)existence of
7427         leading slash.  Return non-zero if changes were made.
7428
7429 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7430
7431         * progress.c (bar_update): Don't modify bp->total_length if it is
7432         zero.
7433
7434 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7435
7436         * retr.c (retrieve_url): When the redirection URL doesn't parse,
7437         print the correct error message rather than "UNKNOWN".
7438
7439 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7440
7441         * progress.c (bar_finish): If the timer didn't record any time
7442         since the download beginning, fake 1ms.
7443
7444 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7445
7446         * recur.c (recursive_retrieve): Fix typo.
7447
7448 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
7449
7450         * progress.c (create_image): Don't translate "%ld ".
7451
7452 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
7453
7454         * progress.c (bar_set_params): Allow the user to force the use of
7455         the bar.
7456
7457 2001-11-23  Lemble Gregory  <gregory.lemble@st.com>
7458
7459         * gen_sslfunc.c (ssl_init_prng): New function; seed the SSL RNG.
7460
7461 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
7462
7463         * progress.c: Renamed dp_* functions to dot_* for greater clarity
7464         and consistency with bar_*.
7465         (print_download_speed): Get rid of the unneeded '@' character.
7466         (create_image): Fix download rate geometry.
7467
7468         * progress.c (print_elapsed): Remove spurious space.
7469         (print_elapsed): Renamed to print_download_speed, since that's
7470         what it does.
7471
7472 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
7473
7474         * progress.c (bar_update): If the downloaded amount becomes larger
7475         than the expected amount, adjust the expected amount accordingly.
7476
7477 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
7478
7479         * utils.c (determine_screen_width): New function.
7480
7481         * main.c (main): New option `--progress=TYPE'.
7482         (main): Implement compatibility with the old option `--dot-style'.
7483
7484         * init.c: Removed cmd_spec_dotstyle -- that logic is now in
7485         dp_set_params.
7486         (cmd_spec_progress): New function.
7487
7488         * retr.c (get_contents): Use the progress_* functions instead of
7489         the old show_progress().
7490         (show_progress): Removed.
7491         (rate): Print "xxxx.xx K/s" instead of "KB/s".  Ditto for MB/s,
7492         etc.
7493
7494         * progress.c (set_progress_implementation): New function.
7495         (valid_progress_implementation_p): Ditto.
7496         (progress_create): Ditto.
7497         (progress_update): Ditto.
7498         (progress_finish): Ditto.
7499         (dp_create): Ditto.
7500         (dp_update): Ditto.
7501         (dp_finish): Ditto.
7502         (dp_set_params): Ditto.
7503         (print_elapsed): Ditto.
7504
7505 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
7506
7507         * retr.c (show_progress): Use it.
7508
7509         * log.c (log_set_flush): New function.
7510
7511 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
7512
7513         * utils.c (path_simplify): Don't remove trailing slashes.
7514
7515         * ftp.c (ftp_get_listing): Use it.
7516
7517         * utils.c (file_merge): New function.
7518
7519         * url.c (opt_url): Removed.
7520
7521         * recur.c (recursive_retrieve): Inline "opt_url" logic.
7522
7523         * main.c (main): Use xfree(), not free().
7524
7525         * url.c (rewrite_url_maybe): Renamed to rewrite_shorthand_url.
7526
7527         * ftp.c (ccon): Move `ccon' typedef here, since it's only used
7528         internally.
7529
7530         * config.h.in: Include a stub for HAVE_STRPBRK.
7531
7532         * cmpt.c (strpbrk): Include a replacement for systems without
7533         strpbrk().
7534
7535         * ftp.c: Use url_set_dir and url_set_file when modifying the URL.
7536
7537         * url.c (url_set_dir): New function.
7538         (url_set_file): Ditto.
7539
7540         * ftp-basic.c (ftp_process_type): Process FTP type here; the URL
7541         parser makes the URL "params" available, so we can do that in this
7542         function.
7543
7544         * retr.c: Ditto.
7545
7546         * ftp.c: Ditto; pass the local file information in `ccon'.
7547
7548         * http.c: Get rid of the ugly kludge that had URL being replaced
7549         with the proxy URL when proxy retrieval was requested.  Use a
7550         separate parameter to http_loop and gethttp for the proxy URL.
7551
7552         * http.c: Changed to reflect the fact that local file, proxy, and
7553         referer information are no longer stored in struct url.  The local
7554         file information is passed in `struct hstat' now.
7555
7556         * url.c: Reworked URL parsing to be more regular.  Reencode the
7557         URL using reencode_string.
7558         Removed non-URL-related information from struct url.  This
7559         includes fields `proxy', `local', and `referer'.
7560
7561 2001-11-22  Jochen Hein  <jochen@jochen.org>
7562
7563         * main.c (main): Split the copyright notice for easier
7564         translation.
7565
7566 2001-08-21  Dave Turner <dct25@hermes.cam.ac.uk>
7567
7568         * ftp-basic.c (ftp_size): New function to send non-standard SIZE
7569           command to server to request file size.
7570         * ftp.h (ftp_size): Export it.
7571         * ftp.c (getftp): Use new ftp_size function if restoring
7572           transfer of a file with unknown size.
7573
7574 2001-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7575
7576         * url.c (parseurl): Don't depend on the now-obsolete TYPE.
7577
7578 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7579
7580         * url.c (getproxy): Handle URL shorthands.
7581
7582 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7583
7584         * main.c: Remove --wait / --waitretry backwards compatibility
7585         code.
7586
7587 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7588
7589         * main.c (main): Use it.
7590
7591         * url.c (rewrite_url_maybe): New function.
7592
7593 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7594
7595         * url.c: Clean up handling of URL schemes.
7596
7597 2001-05-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7598
7599         * url.c: Get rid of `protostrings'.
7600         (skip_proto): Don't use protostrings.
7601         (has_proto): Ditto.
7602
7603 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7604
7605         * Makefile.in: Conditionally compile getopt.o.
7606
7607 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7608
7609         * md5.h: Renamed to gnu-md5.h.
7610
7611         * md5.c: Renamed to gnu-md5.c.
7612
7613         * http.c: Ditto.
7614
7615         * ftp-opie.c: Use the new macros.
7616
7617         * sysdep.h: Define md5-related macros.
7618
7619         * config.h.in: Define HAVE_SOLARIS_MD5 or HAVE_BUILTIN_MD5
7620         depending on which md5 implementation is used.
7621
7622 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7623
7624         * res.c (res_register_specs): Initialize OLD and HP_OLD to appease
7625         the compiler.
7626
7627 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7628
7629         * http.c (gethttp): Print the whole response line when printing
7630         headers is requested.
7631
7632 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7633
7634         * res.c: New file.  Implement all RES-related code here.
7635
7636 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7637
7638         * version.c: Wget 1.7.1 is released.
7639
7640 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
7641
7642         * headers.c (header_extract_number): Ignore trailing whitespace.
7643
7644 2001-08-24  Ian Abbott  <abbotti@mev.co.uk>
7645
7646         * html-url.c (collect_tags_mapper): Fix bug converting links
7647         with -k option for tags with multiple link attributes by
7648         handling links in the order they appear.
7649
7650 2001-08-15  Ian Abbott  <abbotti@mev.co.uk>
7651
7652         * ftp.c (ftp_loop_internal): Avoid a potential buffer overflow in
7653           the call to the 'rate' function by moving it past the error
7654           checking for the 'getftp' function return value.
7655
7656 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
7657
7658         * html-parse.c (advance_declaration): Use 0x22 instead of '"' or
7659         '\"'.  Different compilers' assert macros are broken in different
7660         ways.
7661
7662 2001-09-29  Christian Fraenkel  <c.fraenkel@gmx.net>
7663
7664         * http.c (gethttp): print debug output for errors occuring during
7665         the ssl handshake.
7666
7667 2001-11-16  Chris Seawood  <cls@seawood.org>
7668
7669         * init.c: Ditto.
7670
7671         * host.c: Ditto.
7672
7673         * connect.c: Ditto.
7674
7675         * sysdep.h: Support compilation under BEOS.
7676
7677 2001-06-08  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
7678
7679         * url.c (url_equal): Fix a memory leak when parseurl returns an
7680         error on the second URL. Also, since url_equal is not used at the
7681         moment, do not compile it.
7682
7683         * url.h: Ditto for the prototype of url_equal.
7684
7685 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
7686
7687         * html-parse.c (map_html_tags): Support XML-style empty tags.
7688
7689 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7690
7691         * wget.h (DO_REALLOC_FROM_ALLOCA): Check for do_realloc_newsize in
7692         loop condition because we're no longer setting SIZEVAR here.
7693
7694 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7695
7696         * wget.h (DO_REALLOC_FROM_ALLOCA): Set SIZEVAR after the memcpy()
7697         call because it needs the old value.
7698
7699 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7700
7701         * cookies.c (ATTR_NAME_CHAR): Allow almost any character to be in
7702         an attribute name.
7703
7704 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7705
7706         * url.c (url_filename): Make sure that slashes that sneak in to
7707         u->file via query string get protected.
7708         (file_name_protect_query_string): New function.
7709
7710 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7711
7712         * recur.c (recursive_retrieve): Also check undesirable_urls with
7713         canonicalized URL.
7714
7715 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7716
7717         * http.c (gethttp): Search `.netrc' with real host, not the proxy
7718         one.
7719
7720 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7721
7722         * sysdep.h (MAP_FAILED): Provide MAP_FAILED for systems that don't
7723         define it.
7724
7725 2001-06-09  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
7726
7727         * ftp.h: Provide correct prototype for ftp_parse_ls().
7728
7729 2001-06-04  Hrvoje Niksic  <hniksic@arsdigita.com>
7730
7731         * version.c: Wget 1.7 is released.
7732
7733 2001-06-03  Karl Eichwalder  <ke@suse.de>
7734
7735         * ftp-ls.c (ftp_parse_ls): Fix typo.
7736
7737 2001-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7738
7739         * all: Update copyright information.
7740
7741 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7742
7743         * http.c (gethttp): Indicate that the continued download failed
7744         for *this* file.
7745
7746 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7747
7748         * version.c: Wget 1.7-pre1 is released.
7749
7750 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7751
7752         * version.c: Updated version to 1.7-pre1.
7753
7754 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7755
7756         * gen_sslfunc.c: Don't include <sys/time.h> directly.
7757
7758 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7759
7760         * http.c (gethttp): Use real URL data for cookies, not the proxy
7761         stuff.
7762
7763 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7764
7765         * main.c (print_help): Document `--no-http-keep-alive'.
7766
7767         * utils.c (numdigit): Handle negative numbers *correctly*.
7768
7769         * hash.c (make_nocase_string_hash_table): Use term "nocase" rather
7770         than the confusing "unsigned".
7771
7772         * utils.c (string_set_contains): Renamed from string_set_exists.
7773
7774         * hash.c (hash_table_contains): Renamed from hash_table_exists.
7775
7776         * cookies.c: Move case-insensitive hash tables to hash.c.
7777
7778 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7779
7780         * http.c (gethttp): Before concluding that the file is already
7781         fully retrieved, make sure that the file existed and `Range' was
7782         actually requested.
7783
7784 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7785
7786         * cookies.c (eliminate_dups): New function.
7787         (build_cookies_request): Use it.
7788         (build_cookies_request): Set chain_store_size after reallocating
7789         all_chains.
7790         (check_domain_match): Annotated for easier future debugging.
7791         (store_cookie): In the debug message, print whether the cookie is
7792         permanent.
7793
7794 2001-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
7795
7796         * http.c (http_loop): Reset no_truncate before deciding whether to
7797         set it.
7798         (gethttp): Further clarify "-c conflicts with existing file" error
7799         message, based on input from Herold Heiko.
7800
7801 2001-05-07  Hrvoje Niksic  <hniksic@arsdigita.com>
7802
7803         * http.c (http_loop): If restval is set, set no_truncate to 1
7804         unconditionally.
7805
7806 2001-05-02  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
7807
7808         * ftp-ls.c (ftp_parse_winnt_ls): Assure months are being correctly
7809         converted. Pointed out by <Stefan.Weil@de.heidelberg.com>.
7810         (ftp_parse_vms_ls): Ditto.
7811
7812 2001-04-30  Hrvoje Niksic  <hniksic@arsdigita.com>
7813
7814         * init.c (cmd_address): Zero SIN before using it; apparently
7815         needed on *BSD.
7816
7817 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7818
7819         * ftp.c (ftp_loop_internal): Don't set NO_TRUNCATE if the file is
7820         empty.
7821
7822 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
7823
7824         * main.c (main): Make `--cookies' respect its argument.
7825
7826 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
7827
7828         * main.c (main): Removed undocumented option `--email-address'.
7829
7830         * netrc.c: Use the latest read_whole_line.
7831
7832         * init.c (defaults): Set opt.ftp_pass to "-wget@".
7833
7834         * mswindows.c (pwd_cuserid): Ditto.
7835
7836         * utils.c (pwd_cuserid): Removed.
7837
7838         * host.c (ftp_getaddress): Removed.
7839
7840 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
7841
7842         (http_loop): Allocate space for filename_plus_orig_suffix with
7843         alloca; this is more efficient and removes the need to free it
7844         before each and every return.
7845
7846 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
7847
7848         * http.c (gethttp): Return RETRUNNEEDED when the retrieval is
7849         unneeded because the file is already there and fully downloaded,
7850         and -c is specified.
7851         (http_loop): Handle RETRUNNEEDED.
7852
7853         * wget.h (uerr_t): New value RETRUNNEEDED.
7854
7855         * http.c (http_loop): Set no_truncate for files that both exist
7856         and are non-empty.
7857         (gethttp): Consider the download finished when restval >= contlen,
7858         not only when restval==contlen.
7859         (gethttp): Handle redirection before giving up due to -c.
7860         (gethttp): Clarify error message which explains that -c will not
7861         truncate the file.
7862         (gethttp): When returning CONTNOTSUPPORTED, don't forget to free
7863         the stuff that needs freeing and release the socket.
7864
7865 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7866
7867         * main.c (print_help): Wget booleans accept "off", not "no".
7868
7869 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7870
7871         * http.c (http_loop): If allow_cache is zero, always disable
7872         caching, not only when retrieving through proxy.
7873
7874         * init.c: Ditto.
7875
7876         * options.h (struct options): Rename proxy_cache to allow_cache.
7877
7878 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7879
7880         * http.c (mktime_from_utc): Improve documentation.
7881         (http_atotm): Put format strings into a separate array.
7882
7883 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7884
7885         * safe-ctype.h: Instead of throwing #error when isalpha is
7886         defined, redefine it to something that will throw a compile-time
7887         error if actually *used*.  Do the same for the rest of the
7888         standard C macros.
7889
7890 2001-04-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7891
7892         * url.c (getproxy): Ignore empty proxy vars.
7893
7894 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7895
7896         * http.c (http_loop): Would load cookies every time.
7897
7898         * cookies.c (load_cookies): Handle cookies whose values contain
7899         embedded spaces.
7900
7901 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7902
7903         * utils.c: Define each DIGITS_* in one line.
7904
7905 2001-04-25  Roger L. Beeman  <beeman@cisco.com>
7906
7907         * http.c (http_atotm): Initialize t.tm_isdst to 0.
7908         (mktime_from_utc): Prevent mktime() from having discontinuities at
7909         DST transition points.
7910
7911 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7912
7913         * html-url.c (get_urls_html): Fix documentation.
7914
7915 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7916
7917         * url.c (UNSAFE_CHAR): Reimplement using a static table.
7918         (url_init): Removed.
7919         (init_unsafe_char_table): Removed.
7920
7921 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7922
7923         * snprintf.c (dopr): Replace ISDIGIT with '0' <= ch && ch <= '9'.
7924
7925 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
7926
7927         * utils.c: Document timer functions.
7928
7929         * retr.c (rate): Use it.
7930         (rate): Print in GB/s if transfer rate exceeds 1 GB/s.
7931
7932         * utils.c (wtimer_granularity): New function.
7933
7934 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7935
7936         * retr.c (show_progress): Ditto.
7937
7938         * ftp.c (getftp): Ditto.
7939
7940         * http.c (gethttp): Use new timer functions.
7941
7942         * utils.c (wtimer_allocate): New function.
7943         (wtimer_new): Ditto.
7944         (wtimer_delete): Ditto.
7945         (wtimer_reset): Ditto.
7946         (wtimer_elapsed): Ditto.
7947
7948 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7949
7950         * utils.c (long_to_string): New, faster version.  Favors smaller
7951         numbers; much of the calculation is now done at compile-time.
7952
7953 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7954
7955         * utils.c (numdigit): Handle negative numbers.
7956
7957 2001-04-23  Hrvoje Niksic  <hniksic@arsdigita.com>
7958
7959         * retr.c (show_progress): Print the download rate even when the
7960         percentages are not available.
7961
7962 2001-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
7963
7964         * ftp.c (getftp): Adjust expected_bytes if the length is
7965         authoritative.
7966
7967 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7968
7969         * url.c: Don't declare `construct'.
7970
7971         * hash.c (grow_hash_table): Speed up rehashing; inline storing of
7972         mappings to new locations.
7973         (hash_table_new): Make resize_threshold a field in the hash table,
7974         so we don't have to recalculate it in each hash_table_put.
7975         (grow_hash_table): Update resize_threshold.
7976         (MAX): Remove unused macro.
7977         (prime_size): Made static.
7978
7979 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7980
7981         * retr.c (retrieve_url): Call uri_merge, not url_concat.
7982
7983         * html-url.c (collect_tags_mapper): Call uri_merge, not
7984         url_concat.
7985
7986         * url.c (mkstruct): Use encode_string instead of xstrdup followed
7987         by URL_CLEANSE.
7988         (path_simplify_with_kludge): Deleted.
7989         (contains_unsafe): Deleted.
7990         (construct): Renamed to uri_merge_1.
7991         (url_concat): Renamed to uri_merge.
7992
7993 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7994
7995         * url.c (str_url): Use encode_string instead of the unnecessary
7996         CLEANDUP.
7997         (encode_string_maybe): New function, returns input string if no
7998         encoding is needed.
7999         (encode_string): Call encode_string_maybe to do the dirty work,
8000         xstrdup if no work needed.
8001
8002 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
8003
8004         * wget.h (XDIGIT_TO_xchar): Define here.
8005
8006         * url.c (decode_string): Use new name.
8007         (encode_string): Ditto.
8008
8009         * http.c (XDIGIT_TO_xchar): Rename HEXD2asc to XDIGIT_TO_xchar.
8010         (dump_hash): Use new name.
8011
8012         * wget.h: Rename ASC2HEXD and HEXD2ASC to XCHAR_TO_XDIGIT and
8013         XDIGIT_TO_XCHAR respectively.
8014
8015 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
8016
8017         * init.c: Include cookies.h.
8018
8019         * cookies.h: Declare cookies_cleanup.
8020
8021         * cookies.c (check_domain_match): Remove unused variable.
8022         (save_cookies): Remove extraneous argument from debug statement.
8023
8024         * host.c (same_host): Don't call skip_url.
8025
8026         * url.c (skip_url): Removed.  Removed its calls from various
8027         functions in url.c.
8028
8029 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
8030
8031         * cookies.c (unsigned_string_hash): Use the new code in
8032         string_hash as reference.
8033
8034         * hash.c (hash_table_map): Allow deletion and change of the
8035         element processed by MAPFUN.
8036         (string_hash): Use the function from glib.
8037
8038 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8039
8040         * config.h.in: Include #undef stub.
8041
8042         * hash.c (hash_table_remove): Rewrite to actually clear deleted
8043         entries instead of just marking them as deleted.
8044
8045 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8046
8047         * hash.h: Declare hash_table_get_pair and hash_table_count.
8048
8049 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8050
8051         * cookies.c: Declare http_atotm.
8052
8053 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8054
8055         * ftp-ls.c (ftp_parse_unix_ls): Use octal constants for
8056         permissions.  A compiler that doesn't accept octal constants is
8057         seriously broken and shouldn't be used -- octal constants were
8058         present in K&R C!
8059
8060 2001-01-20  Karl Eichwalder  <ke@suse.de>
8061
8062         * Makefile.in: Provide and use DESTDIR according to the Coding
8063         Standards.
8064
8065 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8066
8067         * ftp-ls.c (ftp_parse_vms_ls): Make seconds optional in time
8068         specification.
8069
8070 2001-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
8071
8072         * url.c (parseurl): Don't strip trailing slash when u->dir is "/"
8073         because that strips the *leading* slash, thus forcing relative
8074         FTP retrieval.
8075
8076 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8077
8078         * ftp.c (getftp): Convert initial FTP directory from VMS to UNIX
8079         notation for VMS servers.
8080         (ftp_retrieve_dirs): Do not prepend '/' to f->name when
8081         odir is an empty string.
8082
8083 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8084
8085         * ftp-ls.c (ftp_parse_winnt_ls): Made the fix for AM/PM more
8086         effective. Suggested by Edward J. Sabol.
8087
8088 2001-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
8089
8090         * cookies.c (build_cookies_request): Use and sort cookies from all
8091         matching domains.
8092         (build_cookies_request): Check for duplicates before generating
8093         the `Cookies' header.
8094
8095         * main.c (main): Don't load cookies here.
8096         (main): Make loadcookies and savecookies call the correct command.
8097
8098         * http.c (http_loop): Load cookies on-demand.
8099
8100 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
8101
8102         * http.c (gethttp): Fix indentation of SSL ifdef.
8103
8104 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
8105
8106         * ftp.c (ftp_retrieve_dirs): Don't forcibly prepend "/" to u->dir;
8107         that hack is no longer necessary.
8108         (getftp): Prepend initial directory to *non*-absolute u->dir's.
8109
8110 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
8111
8112         * init.c (cmd_file): New function.
8113         (enable_tilde_expansion): New variable.
8114         (run_wgetrc): Use it.
8115         (cmd_file): Use it.
8116
8117 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
8118
8119         * init.c: Include cookie-related options.
8120
8121         * main.c (main): Include cookie-specific options.
8122         (main): Load cookies before download is finished.
8123         (main): Save cookies when done.
8124
8125         * http.c (gethttp): Process the `Set-Cookie' header.
8126         (gethttp): Include cookies in the response.
8127
8128         * cookies.c: New file.
8129
8130 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
8131
8132         * utils.c (datetime_str): New function.
8133
8134 2001-04-08  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8135
8136         * ftp-ls.c (ftp_parse_winnt_ls): The AM/PM change did assume
8137         12:01PM == 00:01, which was obviously wrong. Taken care of this
8138         anomaly.
8139
8140         * ChangeLog: Removed an excess conflict marker. Reformatted the
8141         entry by Philipp Thomas from 2001-03-09.
8142
8143         * ftp-ls.c (ftp_parse_winnt_ls): Ensure that adjusted PM hours lay
8144         between 0 and 23. Elminate unused variable `sec'.
8145
8146 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
8147
8148         * hash.c (hash_table_count): New function.
8149
8150 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8151
8152         * utils.c (read_file): Cast MAP_FAILED to char *.  Enforced by
8153         Digital Unix cc.
8154
8155 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8156
8157         * config.h.in: Oops, do the namespace tweaks only on systems we
8158         know about.
8159
8160 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8161
8162         * hash.c: Include <string.h>.
8163
8164 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8165
8166         * config.h.in: Define "compilation environment" options that work
8167         under Linux and Solaris.  To be reviewed on other OS'es.
8168
8169 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8170
8171         * http.c (gethttp): Prepend literal newline with `\n\'.
8172
8173 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8174
8175         * sysdep.h: Don't define VERY_LONG_FORMAT.
8176
8177         * utils.c (very_long_to_string): New function.
8178         (legible_very_long): Use it; don't use VERY_LONG_FORMAT.
8179
8180 2001-04-04  Christian Fraenkel  <christian.fraenkel@gmx.net>
8181
8182         * url.c (parse_uname): Would run past the end of the string if the
8183         username was present, but the URL did not contain a slash, e.g.
8184         http://foo:bar@myhost.
8185
8186 2001-04-03  KOJIMA Hajime  <kjm@rins.ryukoku.ac.jp>
8187
8188         * http.c (http_atotm): Use %A instead of %a to match full
8189         weekday.  (On most systems there is no difference.)
8190
8191 2001-04-03  Paul Bludov  <paul@ozero.net>
8192
8193         * mswindows.c (sleep): Use SleepEx() instead of Sleep().
8194         (ws_changetitle): Use alloca() instead of malloc() to avoid memory
8195         leak.
8196         (ws_mypath): Use GetModuleFileName instead of argv[0].
8197         (ws_startup): Use data.wVersion for comparison.
8198
8199 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
8200
8201         * http.c (http_loop): Ditto.
8202
8203         * ftp.c (ftp_loop_internal): Made the check whether to continue
8204         retrieval `-O'-friendly.
8205
8206 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
8207
8208         * netrc.c (parse_netrc): Don't trim the line endings explicitly;
8209         they will be handled as whitespace.
8210         (parse_netrc): Correctly handle lines that end with whitespace.
8211
8212 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
8213
8214         * retr.c (retrieve_url): New variable global_download_count used
8215         to identify first retrieval.
8216
8217         * ftp.c (getftp): Ditto.
8218
8219         * http.c (gethttp): Rewind opt.dfp only on first retrieval.
8220
8221 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
8222
8223         * init.c (cmd_address): Heap-allocate the address that gets stored
8224         to CLOSURE.  Old code would simply assign an address on the stack.
8225
8226 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
8227
8228         * ftp.c (ftp_get_listing): Propagate error status.
8229         (ftp_retrieve_glob): Use it.
8230         (ftp_loop): Ditto.
8231
8232 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
8233
8234         * main.c (main): Add -C to the string that is the third arg to
8235         getopt_long().
8236
8237 2001-04-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8238
8239         * ftp.c (getftp): Don't start the download from scratch if `-c'
8240         was specified, but the file is already fully downloaded.
8241
8242         * http.c (gethttp): Don't truncate a pre-existing file if `-c' was
8243         specified and the server doesn't support continued download.
8244         (gethttp): Don't start the download from scratch if `-c' was
8245         specified, but the file is already fully downloaded.
8246
8247 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
8248
8249         (recursive_retrieve): Don't clear the hash tables at this point at
8250         all; it interferes with the normal operation of register_download.
8251
8252 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
8253
8254         * recur.c (recursive_retrieve): Clear the hash tables only when
8255         they are defined.
8256
8257 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
8258
8259         * http.c (gethttp): Make sure the socket is closed with
8260         CLOSE_INVALIDATE before we have drained the body.
8261
8262 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
8263
8264         * retr.c (retrieve_url): Call register_download() for downloaded
8265         files and register_html() for downloaded HTML files.
8266
8267         * recur.c (register_download): New function; register here that a
8268         file has been downloaded, rather than in recursive_retrieve().
8269         (register_html): New function; enqueue the location of HTML files
8270         here rather than in recursive_retrieve().
8271
8272 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
8273
8274         * main.c (print_help): Use multiple fputs instead of a single ugly
8275         printf().
8276         (main): Consistently assign numbers >128 to options without a
8277         corresponding character.
8278
8279 2001-03-09  Philipp Thomas  <pthomas@suse.de>
8280
8281         * safe-ctype.h: New file. Locale independent ctype.h replacement
8282         taken from libiberty.
8283
8284         * safe-ctype.c: New file. Tables for above.
8285
8286         * Makefile.in: Add safe-ctype$o to OBJS.  Add dependencies for
8287         safe-ctype$o.
8288
8289         * cmpt.c: Remove include of ctype.h. Use ISSPACE instead of
8290         isspace.
8291
8292         * ftp-basic.c: Don't include ctype.h.
8293
8294         * ftp-ls.c: Likewise.
8295
8296         * ftp.c: Likewise.
8297
8298         * headers.c: Likewise.
8299
8300         * host.c: Likewise.
8301
8302         * html-parse.c: Likewise.
8303
8304         * html-url.c: Likewise.
8305
8306         * http.c: Likewise.
8307
8308         * init.c: Likewise.
8309
8310         * main.c: Likewise. Set LC_CTYPE along with LC_MESSAGES.
8311
8312         * netrc.c: Likewise.
8313
8314         * recur.c: Likewise.
8315
8316         * retr.c: Likewise.
8317
8318         * snprintf.c: Replace ctype.h with safe-ctype.h. Use ISDIGIT
8319         instead of isdigit.
8320
8321         * sysdep.h: Remove defines of ctype macros as they aren't needed
8322         for safe-ctype-h.
8323
8324         * url.c: Don't include ctype.h.
8325
8326         * utils.c: Likewise.
8327
8328         * wget.h: Include safe-ctype.h.
8329
8330 2001-03-27  Dan Harkless  <wget@harkless.org>
8331
8332         * Makefile.in: Moved top_builddir out of "User configuration
8333         section" of top Makefile and analogous spot in this one.
8334
8335 2001-03-17  Dan Harkless  <wget@harkless.org>
8336
8337         * Makefile.in: Include @SSL_INCLUDES@ substition in INCLUDES.
8338         Define top_builddir.  Link wget with libtool so the user doesn't
8339         have to supply a bunch of custom environment variables to
8340         correctly link with the OpenSSL shared libraries.
8341
8342 2001-03-06  Hack Kampbjorn  <hack@hackdata.com>
8343
8344         * http.c (gethttp): skip :port in host header if it is the
8345         DEFAULT_HTTPS_PORT when using SSL.
8346
8347         * url.c: move the #define of DEFAULT_HTTP_PORT, DEFAULT_FTP_PORT
8348         and DEFAULT_HTTPS_PORT to the header file so it can be use in the
8349         rest of the code.
8350         * url.h: Ditto
8351
8352 2001-03-01  Jonas Jensen  <bones@huleboer.dk>
8353
8354         * retr.c (show_progress): Correctly calculate the number of bytes
8355         in the first line of the download that have been actually
8356         downloaded in this run.
8357
8358 2001-02-23  Dan Harkless  <wget@harkless.org>
8359
8360         * main.c (print_help): --help documentation for -N said it would
8361         re-download files if they had the _same_ timestamp on server.
8362         (print_help): -nr belongs in "FTP options" section of --help
8363         output, not "Recursive retrieval" section.  Alphabetized FTP
8364         options by long option name.
8365
8366 2001-02-16  Dan Harkless  <wget@harkless.org>
8367
8368         * init.c (commands): Hack Kampbjørn <hack@hackdata.com> discovered
8369         that "httpsproxy" had been inserted into commands[] out of
8370         alphabetical order, causing "BUG: unknown command `httpuser'".
8371
8372 2001-02-13  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8373
8374         * ftp-ls.c (ftp_parse_ls): Added support of ST_MACOS (Unix-like
8375         listing without correct permissons).
8376
8377         * ftp.h (stype): Added ST_MACOS to identify the NetPresenz MacOS
8378         FTP server.
8379
8380         * ftp.c (ftp_retrieve_list): New mirroring logic: A remote file
8381         shall be donwloaded only when it's newer than the local copy or
8382         when it has the same timeestamp but its size is different. ST_VMS
8383         and ST_MACOS as special cases that lie about file size.
8384
8385         * ftp-ls.c (ftp_parse_ls): Support for ST_MACOS.
8386
8387         * Makefile.in: Removed dependency on ftpparse library due to unclear
8388         copyright issues and absence of any feedback to our queries.
8389
8390         * ftp-ls.c: Removed dependency on ftpparse library due to unclear
8391         copyright issues and absence of any feedback to our queries.
8392         (ftp_parse_ls): Added a warning message when remote server system
8393         does not seem to be suported by wget.
8394         (ftp_parse_vms_ls): New function for parsing VMS ftp
8395         server listing output.
8396         (clean_line): New function responsible for removing
8397         end-of-line characters from FTP listing texts.
8398
8399         * ftp.c (getftp): Global variables pwd and host_type are now
8400         member of the ccon structure under names ccon.id and ccon.rs.
8401
8402         * ftp.h (struct ccon): Added formed global variables from ftp.c,
8403         enum stype rs (remote system identification) and char *id (initial
8404         working directory), as suggested by Hrvoje.
8405
8406         * url.c (parse_uname): Added support for passwords containing '@'
8407         characters.
8408         (skip_uname): Ditto.
8409
8410 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
8411
8412         * ftp.c (ftp_loop): Reset con.
8413
8414 2001-01-06  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8415
8416         * url.c (parse_uname): Added support for passwords containing '@'
8417         characters.
8418         (skip_uname): Ditto.
8419
8420 2001-02-11  Hack Kampbjørn  <hack@hackdata.com>
8421
8422         * url.c (parseurl): Debug-print u->ftp_type.
8423
8424 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
8425
8426         * ftp.c (ftp_loop_internal): Disable padding.
8427         (getftp): Ditto.
8428
8429         * http.c (http_loop): Disable padding.
8430
8431         * retr.c (show_progress): Use it to enable padding.
8432
8433         * retr.c (rate): Optional parameter PAD for padding the rate.
8434
8435 2001-02-10  Hrvoje Niksic  <hniksic@arsdigita.com>
8436
8437         * retr.c (show_progress): Make sure that the last output line
8438         includes progress.
8439
8440 2001-02-10  Jonas Jensen  <bones@huleboer.dk>
8441
8442         * retr.c (show_progress): Print the download rate along with the
8443         percentages.
8444         Along with Anders Thorsby <anders@thorsby.dk>.
8445
8446 2001-02-10  Tim Mooney  <mooney@dogbert.cc.ndsu.NoDak.edu>
8447
8448         * ftp.h: Rename enums `command' to `wget_ftp_command' and
8449         `fstatus' to `wget_ftp_status' because old names clash with Tru64
8450         net/if.h.
8451
8452 2001-02-08  Christian Fraenkel <christian.fraenkel@gmx.net>
8453
8454         * gen_sslfunc.c: verify_callback is now static
8455
8456         * gen_sslfunc.c (init_ssl): load certificate if specified
8457
8458         * gen_sslfunc.c (ssl_printerr): new function
8459
8460         * init.c: added new --sslcertfile and --sslcertkey switches
8461
8462         * main.c: ditto
8463
8464         * options.h: ditto
8465
8466         * http.c (gethttp): abort when init_ssl fails
8467
8468 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
8469
8470         * mswindows.h: Include <malloc.h>; it's needed for alloca().
8471
8472 2001-01-10  Dan Harkless  <wget@harkless.org>
8473
8474         * url.c (str_url): Clarified this function's comment header after
8475         Hrvoje answered my question on the list as to when hide != 1.
8476         Also Hrvoje pointed out I need to use xstrdup() on the string literal.
8477
8478 2001-01-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8479
8480         * connect.c (bindport): Declare addrlen as int.  Diagnosed by
8481         Drazen Kacar <dave@arsdigita.com>.
8482         (conaddr): Ditto.
8483
8484 2001-01-09  Dan Harkless  <wget@harkless.org>
8485
8486         * html-url.c: A bunch of fixup of `--page-requisites'-related
8487         comments to reflect Hrvoje's changes to my code when transplanting
8488         it into this new file, to fix spelling mistakes, to clarify, etc.
8489
8490         * url.c (write_backup_file): Clarified a comment.
8491         (str_url): Henrik van Ginhoven pointed out on the list that we
8492         shouldn't give away the number of characters in the password by
8493         replacing each character with a 'x'.  Use "<password>" instead.
8494
8495         * ftp.c (ftp_retrieve_dirs): The bug where recursion into FTP
8496         directories didn't work if logging in put you in a directory other
8497         than "/" is fixed now.  Removed the comment here warning of the bug.
8498
8499         * main.c (print_help): --continue's description was misleading.
8500         We don't "restart", we "resume".  Also, better to say
8501         "partially-downloaded file" rather than just "existing file".
8502
8503 2001-01-06  Dan Harkless  <wget@harkless.org>
8504
8505         * ChangeLog: The '[Not in 1.6 branch.]'s were decided not to be
8506         the best way to go about my aim.  Removed them in favor of:
8507
8508         * ChangeLog-branches/1.6_branch.ChangeLog: New file.
8509
8510 2001-01-04  Hrvoje Niksic  <hniksic@arsdigita.com>
8511
8512         * url.c (replace_attr): New function, to be used by both
8513         TO_COMPLETE and TO_RELATIVE case in convert_links.
8514         (find_fragment): New function for finding URL fragments.
8515         (replace_attr): Better handle the case where the original string
8516         is not quoted.  Use find_fragment.
8517         (convert_links): Use replace_attr().
8518
8519 2000-12-31  Dan Harkless  <wget@harkless.org>
8520
8521         * ChangeLog: Since this flat file doesn't have multiple branches,
8522         looking at the dates would make you think that things went into
8523         1.6 that actually just went into the 1.7-dev branch.  Added "[Not
8524         in 1.6 branch.]" where appropriate to clarify.
8525
8526 2000-12-30  Dan Harkless  <wget@harkless.org>
8527
8528         * ftp.c, http.c:  Applied Hack Kampbjørn <hack@hackdata.com>'s
8529         patch to deal with h_errno not being defined in netdb.h under Cygwin.
8530
8531 2000-12-18  Csaba Raduly  <csaba.raduly@sophos.com>
8532
8533         * sysdep.h: Include <malloc.h> and <io.h> under Watcom.
8534
8535 2000-12-17  Igor Khristophorov  <igor@atdot.org>
8536
8537         * http.c (check_end): Fix test for '+' or '-'.
8538
8539 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
8540
8541         * url.c (parseurl): Rename inner loop var from i to ind to avoid
8542         clash with the function top-level-declared variable i.
8543         (str_url): Likewise, rename inner-loop i to j.
8544
8545         * recur.c (parse_robots): Don't declare LEN at top of function.
8546         (robots_match): Renamed parameter FORBIDDEN to avoid hiding of
8547         global variable.
8548
8549         * main.c (main): Change erroneous use of bitwise and to logical.
8550
8551         * init.c (cmd_address): Don't heap-allocate `sin'; it can be on
8552         the stack because it will be copied to closure.
8553
8554         Thanks to Csaba Raduly's run of PC-LINT over the sources.
8555
8556 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
8557
8558         * http.c (basic_authentication_encode): Use xmalloc(), not
8559         malloc().  Thanks to Csaba Raduly's run of PC-LINT over the
8560         sources.
8561
8562 2000-12-17  Csaba Raduly  <csaba.raduly@sophos.com>
8563
8564         * sysdep.h: Test for __EMX__ rather than for EMXOS2 for OS/2
8565         compilation.
8566
8567 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
8568
8569         * mswindows.c: Include <errno.h>.
8570
8571         * gen_sslfunc.c: Include <errno.h>.
8572
8573         * ftp-basic.c: Don't attempt to declare errno or h_errno because
8574         they're not used.
8575
8576         * main.c: Include <errno.h> because errno is used.
8577
8578         * ftp.c: Ditto.
8579
8580         * http.c: Include <netdb.h> for h_errno.
8581
8582 2000-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
8583
8584         * html-parse.c (advance_declaration): MSVC assert() chokes on
8585         '\"'.  Use '"' instead.
8586
8587 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
8588
8589         * utils.c (xfree_real): Removed.
8590         (xfree_debug): Just call free().
8591
8592         * wget.h (xfree): Make it an alias for free.
8593
8594 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
8595
8596         * http.c (http_loop): Furthermore, touch output_document only if
8597         it is known to be an existing regular file.
8598
8599 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
8600
8601         * ftp.c (ftp_retrieve_list): Ditto.
8602
8603         * http.c (http_loop): Touch output_document if that is used for
8604         output.
8605
8606 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8607
8608         * http.c: Include gen_sslfunc.h after including Wget's headers.
8609         (persistent_available_p): Needed coma before `int ssl'.
8610
8611 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8612
8613         * ftp.c (ftp_loop_internal): Ditto.
8614
8615         * http.c (http_loop): Use it.
8616
8617         * retr.c (sleep_between_retrievals): New function that handles the
8618         logic of opt.wait and opt.waitretry.
8619
8620 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8621
8622         * rbuf.h: Implement only a single version of RBUF_READCHAR, using
8623         rbuf_read_bufferful when the buffer is depleted.
8624
8625         * rbuf.c (rbuf_read_bufferful): New function.
8626
8627 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8628
8629         * gen_sslfunc.h: Use ansi2knr style function declarations.
8630
8631         * gen_sslfunc.c: Reformat according to the GNU coding standards.
8632         More should be done.
8633
8634         * http.c (persistent_available_p): Place the cheap SSL test nearer
8635         the top of the function.
8636         (CLOSE_FINISH, CLOSE_INVALIDATE): Define only one version of each.
8637
8638 2000-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
8639
8640         * url.c (init_unsafe_char_table): Reinstate space as an unsafe
8641         char.
8642
8643 2000-12-03  Christian Fraenkel <christian.fraenkel@gmx.net>
8644
8645         * Makefile.in: added gen_sslfunc object
8646         * config.h.in: added HAVE_SSL define
8647         * connect.c: changed select_fd from static int to int
8648         * connect.h: ditto
8649         * gen_sslfunc.h: New file
8650         * gen_sslfunc.c: ditto
8651         * http.c: added HTTPS fuctionality
8652         * retrc.c: ditto
8653         * url.c: ditto
8654         * init.c: added opt.httpsproxy
8655         * options.h: ditto
8656         * rbuf.h: added alternate rbuf struct
8657         * wget.h: added CONSSLERR
8658         * rbuf.c: ditto
8659
8660         * http.c: Added HTTPS fuctionality.
8661
8662         * retrc.c: Ditto.
8663
8664         * url.c: Ditto.
8665
8666         * init.c: Added opt.httpsproxy.
8667
8668         * options.h: Ditto.
8669
8670         * rbuf.h: Added alternate rbuf struct.
8671
8672         * wget.h: Added CONSSLERR.
8673
8674         * rbuf.c: Ditto.
8675
8676 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8677
8678         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
8679         "ignore_perms" to ignore file and directory permissions for
8680         Windows NT FTP server listings.
8681         (ftp_parse_winnt_ls): New function.
8682         (ftp_parse_ls): Parses UNIX and Windows NT listings
8683         separately. Simple heuristics for distinguishing between UNIX and
8684         MS-DOS-like FTP listing provided by Windows NT FTP service.
8685
8686 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8687
8688         * ftpparse.c, ftpparse.h: New files.
8689
8690         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
8691         only. Use ftp_parse_nonunix_ls otherwise.
8692         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
8693         exotic FTP servers.
8694
8695         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
8696         FTP servers.
8697
8698         * ftp.c: New static wariables host_type, pwd, and pwd_len.
8699         (getftp): Support for VMS. Support for FTP servers that do not
8700         place you in the root directory after login.
8701         (ftp_retrieve_list): VMS is silent about the real file size, issue
8702         a more appropriate message.
8703         (ftp_get_listing): Pass host_type to ftp_parse_ls.
8704
8705         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
8706
8707 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8708
8709         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
8710         "ignore_perms" to ignore file and directory permissions for
8711         Windows NT FTP server listings.
8712         (ftp_parse_winnt_ls): New function.
8713         (ftp_parse_ls): Parses UNIX and Windows NT listings
8714         separately. Simple heuristics for distinguishing between UNIX
8715         and MS-DOS-like FTP listing provided by Windows NT FTP service.
8716
8717 2000-11-29  John Summerfield  <summer@OS2.ami.com.au>
8718
8719         * netrc.c (parse_netrc): Get rid of line ending.
8720
8721 2000-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
8722
8723         * ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by
8724         Dan.
8725
8726 2000-11-24  Karl Eichwalder  <ke@suse.de>
8727
8728         * main.c (print_help): Untabify.
8729
8730 2000-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
8731
8732         * utils.c (xrealloc_debug): Do the unregister/register thing only
8733         if the pointer has actually changed.
8734         (xmalloc_real): Declare `static' in DEBUG_MALLOC builds.
8735         (xfree_real): Ditto.
8736         (xrealloc_real): Ditto.
8737         (xstrdup_real): Ditto.
8738
8739 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
8740
8741         * ftp.c (getftp): ftp_getaddress() returns a malloc'ed copy of the
8742         string; no need to strdup() it.
8743         (getftp): Make pwd_len a local variable.
8744         (ftp_loop): Free PWD before returning.
8745
8746         * init.c (cleanup): Free opt.ftp_pass only if it's non-NULL.
8747
8748 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
8749
8750         * all: Use xfree() instead of free.
8751
8752         * utils.c (xfree): New function.
8753
8754 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
8755
8756         * url.c (convert_links): HTML-quote the converted string.
8757
8758         * utils.c (html_quote_string): Move here from ftp-ls.c
8759         (html_quote_string): Make non-static; declare in utils.h.
8760         (html_quote_string): Convert SP to &#32;.
8761
8762 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
8763
8764         * ftp.c (getftp): Reformat Jan's code according to GNU coding
8765         standards; remove (debugging?) printf's; use '\0' for the ASCII
8766         zero character.  Use alloca() instead of malloc() for
8767         inter-function temporary allocations.
8768
8769 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8770
8771         * ftpparse.c, ftpparse.h: New files.
8772
8773         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
8774         only. Use ftp_parse_nonunix_ls otherwise.
8775         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
8776         exotic FTP servers.
8777
8778         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
8779         FTP servers.
8780
8781         * ftp.c: New static wariables host_type, pwd, and pwd_len.
8782         (getftp): Support for VMS. Support for FTP servers that do not
8783         place you in the root directory after login.
8784         (ftp_retrieve_list): VMS is silent about the real file size, issue
8785         a more appropriate message.
8786         (ftp_get_listing): Pass host_type to ftp_parse_ls.
8787
8788         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
8789
8790 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
8791
8792         * hash.c (hash_table_put): Don't overwrite deleted mappings.
8793
8794 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
8795
8796         * hash.c (find_mapping): New function.
8797         (hash_table_get): Use it.
8798         (hash_table_get_pair): Ditto.
8799         (hash_table_exists): Ditto.
8800         (hash_table_remove): Ditto.
8801         (hash_table_remove): Really delete the entry if the mapping
8802         following LOCATION is empty.
8803
8804         * utils.c (string_set_add): Check whether the element has existed
8805         before.
8806
8807         * hash.c (hash_table_get_pair): New function.
8808
8809 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
8810
8811         * http.c (http_process_type): Ignore trailing whitespace; use
8812         strdupdelim().
8813
8814         * recur.c (recursive_retrieve): Use the new `convert' field.
8815         (convert_all_links): Ditto.
8816         (convert_all_links): Don't respect meta_disallow_follow.
8817
8818         * html-url.c (handle_link): Fill out link_relative_p and
8819         link_complete_p.
8820
8821         * url.h (struct _urlpos): Make elements more readable.
8822
8823         * recur.c (recursive_retrieve): Call slist_prepend instead of
8824         slist_append.
8825         (convert_all_links): Call slist_nreverse before iterating through
8826         urls_html.
8827
8828         * utils.c (slist_prepend): New function.
8829         (slist_nreverse): Ditto.
8830
8831 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
8832
8833         * http.c (check_end): Constify.
8834
8835 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
8836
8837         * http.c (http_loop): If username and password are known, try the
8838         `Basic' authentication scheme by default.
8839
8840         * connect.h: Declare test_socket_open.
8841
8842 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
8843
8844         * version.c: Bump version from 1.5.3+dev to 1.7-dev.
8845
8846 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
8847
8848         * http.c (gethttp): Don't use the return value of sprintf().
8849         (gethttp): Inhibit keep-alive if opt.http_keep_alive is 0.
8850
8851 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
8852
8853         * recur.c (recursive_retrieve): Print the "so we don't load"
8854         debugging message only if we really don't load.
8855
8856         * http.c (gethttp): Inhibit keep-alive if proxy is being used.
8857         (gethttp): Don't request keep-alive if keep-alive is inhibited.
8858
8859 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8860
8861         * http.c (gethttp): Make the HTTP persistent connections more
8862         robust.
8863
8864 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8865
8866         * retr.c (get_contents): If use_expected, make sure that the
8867         appropriate amount of data is being read.
8868
8869         * http.c (gethttp): Check for both `Keep-Alive: ...' and
8870         `Connection: Keep-Alive'.
8871
8872         * wget.h (DEBUGP): Call debug_logprintf only if opt.debug is
8873         turned on.
8874
8875 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8876
8877         * http.c (connection_available_p): Use it.
8878
8879         * connect.c (test_socket_open): New function.
8880
8881         * http.c (gethttp): Support persistent connections.  Based on the
8882         ideas, and partly on code, by Sam Horrocks <sam@daemoninc.com>.
8883         (register_persistent): New function.
8884         (connection_available_p): Ditto.
8885         (invalidate_connection): Ditto.
8886
8887 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8888
8889         * url.c (convert_links): Handle UREL2ABS case.
8890
8891         * recur.c (recursive_retrieve): Instead of the list
8892         urls_downloaded, use hash tables dl_file_url_map and
8893         dl_url_file_map.
8894         (convert_all_links): Use them to retrieve data.
8895
8896         * host.c (clean_hosts): Free the hash tables.
8897
8898         * main.c (private_initialize): Call host_init().
8899
8900         * host.c (store_hostaddress): Use a saner, hash table-based data
8901         model.
8902         (realhost): Ditto.
8903         (host_init): Initialize the hash tables.
8904
8905 2000-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8906
8907         * utils.c (slist_append): Eviscerate NOSORT.  Hash tables are now
8908         used for what the sorted slists used to be used for.
8909         (slist_contains): Don't rely on the list being sorted.
8910         (slist_append): Simplify the code.
8911
8912         * recur.c (recursive_cleanup): Use free_string_set.
8913
8914         * utils.c (string_set_add, string_set_exists, string_set_free):
8915         New functions for easier freeing of hash tables whose keys are
8916         strdup'ed strings.
8917
8918         * recur.c (recursive_retrieve): Use the hash table functions for
8919         storing undesirable URLs.
8920
8921         * hash.c: New file.
8922
8923 2000-11-17  Hrvoje Niksic  <hniksic@arsdigita.com>
8924
8925         * main.c (private_initialize): Call url_init.
8926         (main): Call private_initialize.
8927
8928         * url.c (unsafe_char_table): New table.
8929         (UNSAFE_CHAR): Use it.
8930         (init_unsafe_char_table): New function.
8931         (url_init): New function; call init_unsafe_char_table.
8932
8933 2000-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
8934
8935         * mswindows.h: Define snprintf and vsnprintf to _snprintf and
8936         _vsnprintf respectively.
8937
8938 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
8939
8940         * config.h.in: Do the _XOPEN_SOURCE and _SVID_SOURCE things only
8941         on Linux.
8942
8943 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
8944
8945         * html-url.c (handle_link): Handle HTML fragment identifiers.
8946
8947         * recur.c (recursive_retrieve): If norobot info is respected and
8948         the file is specified not to be followed by robots, respect that.
8949
8950         * html-url.c (collect_tags_mapper): Handle <meta name=robots
8951         content=X>.  For us the important cases are where X is NONE or
8952         where X contains NOFOLLOW.
8953         (get_urls_html): Propagate that information to the caller.
8954
8955 2000-11-13  Hrvoje Niksic  <hniksic@arsdigita.com>
8956
8957         * url.c (convert_links): Unlink the file we might be reading from
8958         before writing to it.
8959         (convert_links): Use alloca instead of malloc for
8960         filename_plus_orig_suffix.
8961
8962 2000-11-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8963
8964         * host.c (realhost): Add HOST to the list with quality==0 only if
8965         it wasn't already there.
8966         Based on analysis by Lu Guohan <feng@public.bjnet.edu.cn>.
8967
8968 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
8969
8970         * url.c (get_urls_file): Ditto.
8971         (convert_links): Ditto.
8972
8973         * html-url.c (get_urls_html): Use read_file() instead of
8974         load_file().
8975
8976         * utils.c (read_file): New function, instead of the old
8977         load_file().
8978         (read_file_free): Ditto.
8979
8980         * url.c (findurl): Search only for the supported protocols.
8981         (convert_links): Use fwrite() when writing out a region of
8982         characters.
8983
8984 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
8985
8986         * ftp-ls.c: Move html_quote_string and ftp_index here.
8987
8988         * url.c: Remove get_urls_html, since that's now in html-url.c.
8989
8990         * html-url.c: New file.
8991
8992         * html-parse.c: New file.
8993
8994 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
8995
8996         * init.c (run_wgetrc): Don't bother killing off '\r' since
8997         pars_line() skips whitespace at end of line anyway.
8998         (parse_line): Oops, it didn't.  Now it does.
8999
9000         * recur.c (parse_robots): Ditto here.
9001
9002         * ftp-ls.c (ftp_parse_unix_ls): Kill off the newline character
9003         manually because read_whole_line no longer does.
9004
9005         * utils.c (read_whole_line): Rewrite to: a) use less memory
9006         (reallocates to needed size after work), b) work faster -->
9007         fgets() instead of getc, c) be more correct --> doesn't kill the
9008         newline character at the end of line.
9009
9010 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
9011
9012         * init.c (comind): Initialize MAX to array size - 1.
9013
9014 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
9015
9016         * url.c (construct): Changed last_slash[-1] to *(last_slash - 1).
9017         Suggested by Edward J. Sabol.
9018
9019 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
9020
9021         * url.c (construct): Handle the case where host name is not
9022         followed by a slash.
9023
9024 2000-11-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9025
9026         * init.c: commands[] need to be sorted!  ("base" wasn't.)
9027
9028 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
9029
9030         * wget.h (DO_REALLOC_FROM_ALLOCA): Use braces to disambiguate
9031         `if'.
9032
9033 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
9034
9035         * url.c (construct): Insert unneeded initialization for the
9036         compiler to shut up.
9037
9038         * config.h.in: Define _XOPEN_SOURCE to 500 to get the prototype
9039         for strptime() (*duh*).  Define _SVID_SOURCE to get S_IFLNK which
9040         otherwise gets lost when you define _XOPEN_SOURCE.
9041
9042         * utils.c (touch): Include the file name in the error message.
9043         From Debian.
9044
9045 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
9046
9047         * log.c (logvprintf): Use vsnprintf() in all cases.  If necessary,
9048         resize the buffer to fit the formated message.  That way, messages
9049         of arbitrary size may be printed.
9050         (logvprintf): Use saved_append() to optionally log the last
9051         several lines of output.
9052         (logputs): Ditto.
9053         (log_close): Adapt to new data structures.
9054         (log_dump): Ditto.
9055         (redirect_output): Print messages to stderr, not to stdout.
9056
9057         * log.c (saved_append_1): New function.  Replaces the old logging
9058         system ("log all output until 10M characters") with a new, much
9059         more reasonable one ("log last screenful of text").
9060         (saved_append): New function; call saved_append_1.
9061         (free_log_line): New function.
9062
9063 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
9064
9065         * url.c (construct): Fix comment.
9066         (find_last_char): Document.
9067
9068 2000-11-04  Hrvoje Niksic  <hniksic@arsdigita.com>
9069
9070         * snprintf.c: New file.
9071
9072 2000-11-03  Hrvoje Niksic  <hniksic@arsdigita.com>
9073
9074         * wget.h: If HAVE_STDARG_H is not defined, don't declare argument
9075         types to logprintf() and debug_logprintf().
9076
9077 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
9078
9079         * ftp.c (ftp_loop_internal): Hide the password from the URL when
9080         printing non-verbose.  Problem spotted by Dariusz Mlynarczyk
9081         <darekm@bydg.lomac.com.pl>.
9082
9083 2000-11-02  Junio Hamano  <junio@twinsun.com>
9084
9085         * ftp-basic.c (ftp_login): Make comparison case-insensitive.
9086
9087 2000-11-02  Tyler Riddle  <triddle@liquidmarket.com>
9088
9089         * http.c (known_authentication_scheme_p): Recognize NTML
9090         authentication.
9091         (create_authorization_line): Treat NTML the same as `Basic'.
9092
9093 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
9094
9095         * retr.c (retrieve_url): Free url before returning.
9096         (retrieve_url): Free mynewloc before returning.
9097         Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
9098
9099 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
9100
9101         * url.c (parseurl): Remove possible reading past the end of
9102         sup_protos[].  Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
9103
9104 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9105
9106         * main.c (main): In case of opt.downloaded overflowing, print
9107         <overflow> instead of a totally bogus random value.
9108
9109         * retr.c (retrieve_from_file): Ditto.
9110
9111         * recur.c (recursive_retrieve): Ditto.
9112
9113         * main.c (main): Ditto.
9114
9115         * http.c (http_loop): Ditto.
9116
9117         * ftp.c (ftp_loop_internal): Use downloaded_increase() instead of
9118         `+=', and downloaded_exceeds_quota() instead of the simple-minded
9119         check.
9120         (ftp_retrieve_list): Ditto.
9121         (ftp_retrieve_dirs): Ditto.
9122         (ftp_retrieve_glob): Ditto.
9123
9124         * retr.c (downloaded_increase): New function.  Notice overflows of
9125         opt.downloaded.
9126         (downloaded_exceeds_quota): Make sure that opt.downloaded is not
9127         used if it overflowed.
9128
9129         * options.h (struct options): New member downloaded_overflow.
9130
9131 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9132
9133         * wget.h (enum): Remove extra space after last enumeration.
9134
9135 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9136
9137         * main.c (main): Use legible_very_long() for printing
9138         opt.downloaded.
9139
9140         * utils.c (legible_1): New function that operates on strings and
9141         does the brunt of legible()'s work.
9142         (legible): Use legible_1().
9143         (legible_very_long): New function; dump the argument with
9144         sprintf(), and call legible_1().
9145
9146         * options.h (struct options): Use VERY_LONG_TYPE for
9147         opt.downloaded.
9148
9149         * sysdep.h (VERY_LONG_TYPE): Define it to have a 64-bit or greater
9150         type.
9151
9152         * config.h.in: Make sure that SIZEOF_LONG and SIZEOF_LONG_LONG get
9153         defined.  Define HAVE_LONG_LONG if long long is available.
9154
9155 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9156
9157         * utils.c (long_to_string): Update with a later, better version.
9158
9159 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9160
9161         * url.c (path_simplify_with_kludge): New function.
9162         (path_simplify_with_kludge): Disable it.  Instead...
9163         (parse_dir): ...make sure that at this point the right thing is
9164         done, i.e. that "query" part of the URL (?...) is always assigned
9165         to the file, never to the directory portion of the path.
9166
9167 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9168
9169         * retr.c (retrieve_url): Detect redirection cycles.
9170
9171 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9172
9173         * url.c (get_urls_html): Decode HTML entities using
9174         html_decode_entities.
9175
9176         * html.c (htmlfindurl): Don't count the `#' in numeric entities
9177         (&#NNN;) as an HTML fragemnt.
9178         (html_decode_entities): New function.
9179
9180 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9181
9182         * html.c (htmlfindurl): Fix recognition of # HTML fragments.
9183
9184 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9185
9186         * url.c (construct): Rewritten for clarity.  Avoids the
9187         unnecessary copying and stack-allocation the old version
9188         performed.
9189
9190 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
9191
9192         * ftp.c (getftp): Ditto.
9193
9194         * http.c (gethttp): Rewind the stream when retrying from scratch.
9195
9196 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
9197
9198         * retr.c (retrieve_url): Use url_concat() to handle relative
9199         redirections instead of /ad hoc/ code.
9200
9201         * url.c (url_concat): New function encapsulating weird
9202         construct().
9203         (urllen_http_hack): New function.
9204         (construct): When constructing new URLs, recognize that `?' does
9205         not form part of the file name in HTTP.
9206
9207 2000-10-13  Adrian Aichner  <adrian@xemacs.org>
9208
9209         * retr.c: Add msec timing support for WINDOWS.
9210         * retr.c (reset_timer): GetSystemTime() on WINDOWS.
9211         * retr.c (elapsed_time): Calculate delta time to msec on WINDOWS.
9212
9213 2000-10-27  Dan Harkless  <wget@harkless.org>
9214
9215         * retr.c (retrieve_url): Manually applied T. Bharath
9216         <TBharath@responsenetworks.com>'s patch to get wget to grok
9217         illegal relative URL redirects.  Reformatted and re-commented it.
9218
9219 2000-10-23  Dan Harkless  <wget@harkless.org>
9220
9221         * connect.c (make_connection and bindport): Manually applied Rob
9222         Mayoff <mayoff@dqd.com>'s 1.5.3 patch to add --bind-address,
9223         changing coding style to GNU's.
9224
9225         * ftp.c (ftp_loop_internal): --delete-after wasn't implemented for
9226         files downloaded via FTP.  Per a comment, .listing files were not
9227         counted towards number of bytes and files downloaded because they're
9228         deleted anyway.  Well, they aren't under -nr, so count them then.
9229
9230         * init.c: Manually applied Rob Mayoff's 1.5.3 patch to add
9231         --bind-address, alphabetizing, changing coding style to GNU's,
9232         commenting, and renaming cmd_ip_address() to cmd_address() to
9233         imply hostnames also okay.
9234
9235         * main.c (main): --delete-after didn't delete the root of the
9236         tree.  Ignore --convert-links if --delete-after was specified.
9237         Manually applied Rob Mayoff's 1.5.3 patch to add --bind-address,
9238         fixing duplicate use of added-since-1.5.3 case value.
9239         (print_help): Clarified that --delete-after deletes local files.
9240         Rob forgot to add a line for his new --bind-address option.
9241
9242         * options.h (struct options): Manually applied Rob Mayoff's patch
9243         to add --bind-address (bind_address structure member).
9244
9245         * recur.c (recursive_retrieve): Improved comment; added DEBUGP().
9246         Ignore --convert-links if --delete-after was specified.
9247
9248         * retr.c (retrieve_from_file): Just added a DEBUGP().
9249
9250 2000-10-19  Dan Harkless  <wget@harkless.org>
9251
9252         * ftp.c (ftp_loop_internal): downloaded_file() enumerators changed.
9253         (getftp): Applied Piotr Sulecki <Piotr.Sulecki@ios.krakow.pl>'s
9254         patch to work around FTP servers that incorrectly respond to the
9255         "REST" command with the remaining size rather than the total file size.
9256
9257         * http.c (gethttp): Improved a comment and added code to tack on
9258         ".html" to text/html files without that extension when -E specified.
9259         (http_loop): Use new downloaded_file() enumerators and deal with
9260         the case of gethttp() called xrealloc() on u->local.
9261
9262         * init.c (commands): Added new "htmlextension" command.
9263         Also renamed John Daily's cmd_quad() to the more descriptive
9264         cmd_lockable_boolean(), alpha-sorted the CMD_DECLARE()s and
9265         removed duplicate cmd_boolean() declaration.
9266
9267         * main.c (print_help): Added my new -E / --html-extension option.
9268         (main): Undocumented --email-address option previously used -E synonym.
9269         Stole it away for the much more deserving --html-extension's use.
9270
9271         * options.h (struct options): Added html_extension field.
9272
9273         * url.c (convert_links): URL X that we saved as X.html locally due
9274         to -E needs to be backed up as X.orig, not X.html.orig.  Added comments.
9275         (downloaded_file): Now remembers if we added .html extension to a file.
9276
9277         * url.h (downloaded_file_t): Added extra enumerators to support above.
9278         (downloaded_file): Now takes and returns a downloaded_file_t.
9279
9280         * wget.h (unnamed "dt" enum): Added ADDED_HTML_EXTENSION enumerator.
9281
9282 2000-10-09  Dan Harkless  <wget@harkless.org>
9283
9284         * html.c (htmlfindurl): Added unneeded initialization to quiet warning.
9285
9286         * main.c (print_help): Clarified what --retr-symlinks does.
9287
9288 2000-09-15  John Daily  <jdaily@cyberdude.com>
9289
9290         * init.c: Add support for "always" and "never" values to allow
9291         .wgetrc to override commandline (useful e.g. with .pm files
9292         calling `wget --passive-ftp' when your firewall doesn't allow that).
9293
9294         * ftp.c (getftp): passive_ftp is first option to support always/never.
9295
9296 2000-08-30  Dan Harkless  <wget@harkless.org>
9297
9298         * ftp.c (ftp_retrieve_list): Use new INFINITE_RECURSION #define.
9299
9300         * html.c: htmlfindurl() now takes final `dash_p_leaf_HTML' parameter.
9301         Wrapped some > 80-column lines.  When -p is specified and we're at a
9302         leaf node, do not traverse <A>, <AREA>, or <LINK> tags other than
9303         <LINK REL="stylesheet">.
9304
9305         * html.h (htmlfindurl): Now takes final `dash_p_leaf_HTML' parameter.
9306
9307         * init.c: Added new -p / --page-requisites / page_requisites option.
9308
9309         * main.c (print_help): Clarified that -l inf and -l 0 both allow
9310         infinite recursion.  Changed the unhelpful --mirrior description
9311         to simply give the options it's equivalent to.  Added new -p option.
9312         (main): Added some comments; handle new -p / --page-requisites.
9313
9314         * options.h (struct options): Added new page_requisites field.
9315
9316         * recur.c: Changed "URL-s" to "URLs" and "HTML-s" to "HTMLs".
9317         Calculate and pass down new `dash_p_leaf_HTML' parameter to
9318         get_urls_html().  Use new INFINITE_RECURSION #define.
9319
9320         * retr.c: Changed "URL-s" to "URLs".  get_urls_html() now takes
9321         final `dash_p_leaf_HTML' parameter.
9322
9323         * url.c: get_urls_html() and htmlfindurl() now take final
9324         `dash_p_leaf_HTML' parameter.
9325
9326         * url.h (get_urls_html): Now takes final `dash_p_leaf_HTML' parameter.
9327
9328         * wget.h: Added some comments and new INFINITE_RECURSION #define.
9329
9330 2000-08-23  Dan Harkless  <wget@harkless.org>
9331
9332         * main.c (print_help): -B / --base was not mentioned.
9333
9334 2000-08-22  Dan Harkless  <wget@harkless.org>
9335
9336         * main.c (print_help): Modified -nc description to mention that it
9337         also prevents the creation of multiple versions of the same file
9338         with ".<number>" suffixes.
9339
9340 2000-07-14  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9341
9342         * retr.c (retrieve_url): Consistently strdup opt.referer when
9343         setting u->referer.
9344
9345 2000-06-09  Dan Harkless  <wget@harkless.org>
9346
9347         * main.c (print_help): --help output for --waitretry was over 80 cols.
9348
9349 2000-06-09  Hrvoje Niksic  <hniksic@iskon.hr>
9350
9351         * url.c (encode_string): Fix comment.
9352         Suggested by Herold Heiko <Heiko.Herold@previnet.it>.
9353
9354 2000-06-01  Const Kaplinsky  <const@ce.cctpu.edu.ru>
9355
9356         * ftp.c (ftp_retrieve_list): Change permissions only on plain
9357         files.
9358
9359 2000-06-01  Hrvoje Niksic  <hniksic@iskon.hr>
9360
9361         * url.c (str_url): Print the port number only if it's different
9362         from the default port number for that protocol.
9363
9364 2000-05-22  Dan Harkless  <wget@harkless.org>
9365
9366         * main.c (print_help): Added --help line for Damir Dzeko
9367         <ddzeko@zesoi.fer.hr>'s until-now-undocumented --referer option.
9368         Removed comments that --referer and --waitretry were undocumented.
9369         Changed "`.wgetrc' command" to "`.wgetrc'-style command" on --help
9370         line for --execute.
9371
9372 2000-05-18  Hrvoje Niksic  <hniksic@iskon.hr>
9373
9374         * ftp.c (getftp): Ditto.
9375
9376         * http.c (gethttp): Check for return value of fclose/fflush.
9377
9378 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
9379
9380         * host.c (store_hostaddress): Instead of shifting ADDR, start
9381         copying from the correct address.
9382
9383 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
9384
9385         * http.c (gethttp): Don't free REQUEST -- it was allocated with
9386         alloca().
9387         Pointed out by Gisle Vanem <gvanem@eunet.no>.
9388
9389 2000-04-04  Dan Harkless  <wget@harkless.org>
9390
9391         * host.c (store_hostaddress): R. K. Owen's patch introduces a
9392         "left shift count >= width of type" warning on 32-bit
9393         architectures.  Got rid of it by tricking the compiler w/ a variable.
9394
9395         * url.c (UNSAFE_CHAR): The macro didn't include all the illegal
9396         characters per RFC1738, namely everything above '~'.  It also
9397         generated a warning on OSes where char =~ unsigned char.  Fixed.
9398
9399 1998-10-17  Hrvoje Niksic  <hniksic@srce.hr>
9400
9401         * http.c (http_process_type): Removed needless strdup(), a memory
9402         leak.
9403
9404 1998-09-25  Hrvoje Niksic  <hniksic@srce.hr>
9405
9406         * html.c (htmlfindurl): Set PH to the first occurrence of `#'.
9407
9408 1998-09-25  Simon Munton  <simonm@m4data.co.uk>
9409
9410         * init.c (wgetrc_file_name): Don't free HOME under Windows.
9411
9412 1998-12-01  "R. K. Owen"  <rkowen@Nersc.GOV>
9413
9414         * host.c (store_hostaddress): Fix for big endian 64-bit machines.
9415
9416 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
9417
9418         * url.c (UNSAFE_CHAR): New macro.
9419         (contains_unsafe): Use it.
9420         (encode_string): Ditto.
9421
9422 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
9423
9424         * main.c (i18n_initialize): Use LC_MESSAGES only if available.
9425
9426 2000-03-31  Hrvoje Niksic  <hniksic@srce.hr>
9427
9428         * Use TOUPPER/TOLOWER.
9429
9430 1998-12-22  Alexander V. Lukyanov  <lav@yars.free.net>
9431
9432         * ftp-opie.c (btoe): Zero-terminate OSTORE.
9433
9434 2000-03-21  Hrvoje Niksic  <hniksic@iskon.hr>
9435
9436         * wget.h (DO_REALLOC_FROM_ALLOCA): Ditto.
9437
9438         * sysdep.h (ISALNUM): New macro.
9439         (TOLOWER): Ditto.
9440         (TOUPPER): Ditto.
9441
9442 2000-03-10  Dan Harkless  <wget@harkless.org>
9443
9444         * html.c (idmatch): Implemented checking of my new --follow-tags
9445         and --ignore-tags options.
9446
9447         * init.c (commands): Added comment reminding people adding new
9448         entries doing allocation to add corresponding freeing in cleanup().
9449         (commands): Added new followtags and ignoretags commands.
9450         (cleanup): Free storage for new followtags and ignoretags.
9451
9452         * main.c: Use of "comma-separated list" was random -- normalized
9453         it.  Did some alphabetization.  Added comments pointing out
9454         "Options without arguments" and "Options accepting an argument"
9455         sections of long_options[].  Added new options --follow-tags and
9456         -G / --ignore-tags.  Added comment that Damir's --referer is
9457         currently undocumented.  Added comment that Heiko's --waitretry is
9458         partially undocumented (mentioned in --help but not in
9459         wget.texi).  Moved improperly sorted 24, 129, and 'G' cases.
9460
9461         * options.h (struct options): Added new fields follow_tags and
9462         ignore_tags.
9463
9464         * wget.h: Added "#define EQ 0" so we can say "strcmp(a, b) == EQ".
9465
9466 2000-03-02  Dan Harkless  <wget@harkless.org>
9467
9468         * ftp.c (ftp_loop_internal): Heiko introduced "suggest explicit
9469         braces to avoid ambiguous `else'" warnings.  Eliminated them.
9470
9471         * http.c (gethttp): Dan Berger's query string patch is totally
9472         bogus.  If you have two different URLs, gen_page.cgi?page1 and
9473         get_page.cgi?page2, they'll both be saved as get_page.cgi and the
9474         second will overwrite the first.  Also, parameters to implicit
9475         CGIs, like "http://www.host.com/db/?2000-03-02" cause the URLs to
9476         be printed with trailing garbage characters, and could seg fault.
9477         Backing out the patch, which Dan B. informed me by email was just
9478         a kludge to download StarOffice from Sun made necessary due to
9479         wget's unconditional escaping of certain characters (room for an
9480         option there?).
9481         (http_loop): Heiko introduced "suggest explicit braces to avoid
9482         ambiguous `else'" warnings.  Eliminated them.
9483
9484         * main.c: Heiko's --wait / --waitretry backwards compatibility
9485         code looks to have been totally untested -- automatic variable
9486         'wr' was used without being initialized, and a long int was passed
9487         into setval()'s char* val parameter.
9488
9489         * recur.c (parse_robots): Applied Edward J. Sabol
9490         <sabol@alderaan.gsfc.nasa.gov>'s patch for Guan Yang's reported
9491         problem with "User-agent:<space>*<space>" lines in robots.txt.
9492
9493         * url.c (parseurl, str_url): Removing Dan Berger's code (see
9494         http.c above for explanation).
9495
9496 1999-08-25  Heiko Herold  <Heiko.Herold@previnet.it>
9497
9498         * ftp.c: Respect new option waitretry.
9499
9500 2000-01-30  Damir Dzeko  <ddzeko@zesoi.fer.hr>
9501
9502         * http.c (gethttp): Send custom Referer, if required.
9503
9504 1999-09-24  Charles G Waldman  <cgw@fnal.gov>
9505
9506         * netrc.c (parse_netrc): Allow passwords to contain spaces.
9507
9508         * netrc.c (parse_netrc): New function.
9509
9510 1999-09-17  Dan Berger  <dberger@ix.netcom.com>
9511
9512         * http.c (gethttp): Send it.
9513
9514         * url.c (parseurl): Detect query string in HTTP URL-s.
9515         (str_url): Print it.
9516
9517 2000-03-02  HIROSE Masaaki  <hirose31@t3.rim.or.jp>
9518
9519         * html.c (html_allow): Add <link href=...> and <script src=...>.
9520
9521 1999-05-02  andrew deryabin  <djsf@softhome.net>
9522
9523         * http.c (gethttp): Specify port in `Host' header only if it's
9524         different from 80.
9525
9526 1998-11-03  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
9527
9528         * recur.c (recursive_retrieve): If a finite maximum depth is
9529         specified, and we're are already at that depth, don't download the
9530         HTML file for parsing.
9531
9532 2000-03-01  Dan Harkless  <wget@harkless.org>
9533
9534         * ftp.c (ftp_loop_internal): Call new downloaded_file() function,
9535         even though we don't do conversion on HTML files retrieved via
9536         FTP, so _current_ usage of downloaded_file() makes this call unneeded.
9537         (ftp_retrieve_list): Added a comment saying where we need to
9538         stat() a .orig file if FTP'd HTML file conversion is ever implemented.
9539         (ftp_retrieve_list): "Local file '%s' is more recent," is sometimes
9540         a lie -- reworded as "Server file no newer than local file '%s' --".
9541
9542         * http.c (http_loop): Fixed a typo and clarified a comment.
9543         (http_loop): When -K and -N are specified together, compare size
9544         and timestamp of server file X against local file X.orig (if
9545         extant) rather than converted local file X.
9546         (http_loop): "Local file '%s' is more recent," is sometimes a lie
9547         -- reworded as "Server file no newer than local file '%s' --".
9548         (http_loop): Call new downloaded_file() function to prevent
9549         wrongful overwriting of .orig file when -N is specified.
9550
9551         * url.c (convert_links): When -K specified, only rename X to
9552         X.orig if downloaded_file() returns TRUE.  Otherwise when we skip
9553         file X due to -N, we clobber an X.orig from a previous invocation.
9554         (convert_links): Call the failsafe xstrdup(), not the real strdup().
9555         (convert_links): Added a note asking anyone who understands how
9556         multiple URLs can correspond to a single file to comment it.
9557         (downloaded_file): Added this new function.
9558
9559         * url.h (downloaded_file): Added prototype for this new function
9560         as well as its downloaded_file_t enum type.
9561
9562         * wget.h (boolean): Added this new typedef and TRUE and FALSE #defines.
9563
9564 2000-02-29  Dan Harkless  <wget@harkless.org>
9565
9566         * version.c: Upped version to developer-only "1.5.3+dev".
9567
9568 2000-02-18  Dan Harkless  <wget@harkless.org>
9569
9570         * init.c (backup_converted): Added this new option.
9571
9572         * main.c (-K / --backup-converted): Added this new option.
9573
9574         * options.h (backup_converted): Added this new option.
9575
9576         * url.c (convert_links): When backup_converted is specified, save
9577         file X as X.orig before converting.
9578
9579         * url.h (urlpos): Fixed typo -- said "Rekative" instead of "Relative".
9580
9581 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
9582
9583         * version.c: Wget 1.5.3 is released.
9584
9585 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
9586
9587         * host.c (ftp_getaddress): Don't warn when reverse-lookup of local
9588         address doesn't yield FQDN.
9589
9590 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
9591
9592         * cmpt.c (strerror): Fix declaration of sys_errlist.
9593
9594 1998-09-11  Hrvoje Niksic  <hniksic@srce.hr>
9595
9596         * main.c (main): Don't use an array subscript as the first
9597         argument to STRDUP_ALLOCA.
9598         From Kaveh R. Ghazi.
9599
9600 1998-09-11  Szakacsits Szabolcs  <szaka@sienet.hu>
9601
9602         * html.c (htmlfindurl): Download table background.
9603
9604 1998-09-11  Hans Grobler  <grobh@conde.ee.sun.ac.za>
9605
9606         * init.c (parse_line): Would free *com before allocating it.
9607         (parse_line): Would free com instead of *com.
9608
9609 1998-09-10  Howard Gayle  <howard@fjst.com>
9610
9611         * url.c (get_urls_html): Would drop the last character of the
9612         link.
9613
9614 1998-09-10  Hrvoje Niksic  <hniksic@srce.hr>
9615
9616         * http.c (http_loop): Don't print status code if quiet.
9617
9618 1998-09-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9619
9620         * log.c: Use <stdarg.h> only when __STDC__.
9621
9622 1998-09-10  Adam D. Moss  <adam@foxbox.org>
9623
9624         * html.c (htmlfindurl): Download <layer src=...>.
9625
9626 1998-09-10  Howard Gayle  <howard@fjst.com>
9627
9628         * ftp.c (ftp_retrieve_list): Don't update the time stamp of a file
9629         not retrieved.
9630
9631 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
9632
9633         * utils.c: Include <libc.h> on NeXT.
9634
9635 1998-06-26  Heinz Salzmann  <heinz.salzmann@intermetall.de>
9636
9637         * url.c (get_urls_html): Fix calculation of URL position.
9638
9639 1998-06-23  Hrvoje Niksic  <hniksic@srce.hr>
9640
9641         * version.c: Wget 1.5.2 is released.
9642
9643 1998-06-23  Dave Love  <d.love@dl.ac.uk>
9644
9645         * ftp.c, init.c, netrc.c: Include errno.h.
9646
9647         * http.c: Include errno.h and time header.
9648
9649         * Makefile.in (exext): Define.
9650         (install.bin, uninstall.bin): Use it.
9651
9652 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
9653
9654         * http.c (http_loop): Don't attempt to compare local and remote
9655         sizes if the remote size is unknown.
9656
9657 1998-06-16  Hrvoje Niksic  <hniksic@srce.hr>
9658
9659         * url.c (get_urls_html): Use malloc() instead of alloca in the
9660         loop.
9661
9662 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
9663
9664         * version.c: Wget 1.5.2-b4 is released.
9665
9666 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
9667
9668         * url.c (get_urls_html): Ignore spaces before and after the URI.
9669
9670 1998-06-08  Wanderlei Antonio Cavassin  <cavassin@conectiva.com.br>
9671
9672         * ftp.c (getftp): Translate `done'.
9673
9674 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
9675
9676         * version.c: Wget 1.5.2-b3 is released.
9677
9678 1998-06-06  Alexander Kourakos  <awk@bnt.com>
9679
9680         * init.c (cleanup): Close dfp, don't free it.
9681
9682 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
9683
9684         * utils.c (make_directory): Twiddle.
9685
9686         * config.h.in: Added template for access().
9687
9688 1998-06-05  Mathieu Guillaume  <mat@cythere.com>
9689
9690         * html.c (htmlfindurl): Download <input src=...>
9691
9692 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
9693
9694         * utils.c (file_exists_p): Use access() with two arguments.
9695
9696 1998-05-27  Martin Kraemer  <Martin.Kraemer@mch.sni.de>
9697
9698         * netrc.c (parse_netrc): Correct logic.
9699
9700 1998-05-27  Hrvoje Niksic  <hniksic@srce.hr>
9701
9702         * ftp.c (getftp): Added `break'; suggested by Lin Zhe Min
9703         <ljm@ljm.wownet.net>.
9704
9705 1998-05-24  Hrvoje Niksic  <hniksic@srce.hr>
9706
9707         * version.c: Wget 1.5.2-b2 is released.
9708
9709 1998-05-18  Juan Jose Rodriguez  <jcnsoft@jal1.telmex.net.mx>
9710
9711         * mswindows.h: Don't translate mkdir to _mkdir under Borland.
9712
9713 1998-05-17  Hrvoje Niksic  <hniksic@srce.hr>
9714
9715         * retr.c (elapsed_time): Return correct value when
9716         HAVE_GETTIMEOFDAY is undefined.
9717
9718 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
9719
9720         * version.c: Wget 1.5.2-b1 is released.
9721
9722 1998-05-08  Hrvoje Niksic  <hniksic@srce.hr>
9723
9724         * getopt.c (_getopt_internal): Use exec_name instead of argv[0].
9725         (_getopt_internal): Don't translate `#if 0'-ed strings.
9726
9727 1998-05-06  Douglas E. Wegscheid  <wegscd@whirlpool.com>
9728
9729         * mswindows.c (ws_handler): Use fork_to_background().
9730
9731 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
9732
9733         * version.c: Wget 1.5.1 is released.
9734
9735 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
9736
9737         * http.c (parse_http_status_line): Avoid `minor' and `major'
9738         names.
9739
9740 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
9741
9742         * utils.c (mkdirhier): Renamed to make_directory.
9743
9744 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
9745
9746         * mswindows.c (fork_to_background): Define under Windows.
9747
9748         * utils.c (fork_to_background): New function.
9749
9750         * html.c (htmlfindurl): Removed rerdundant casts.
9751
9752 1998-05-01  Douglas E. Wegscheid  <wegscd@whirlpool.com>
9753
9754         * mswindows.c (ws_mypath): Cache the path.
9755
9756 1998-04-30  Douglas E. Wegscheid  <wegscd@whirlpool.com>
9757
9758         * ftp.h: Prefix enum ftype members with FT_.
9759
9760         * ftp-ls.c, ftp.c, html.h: Adjust accordingly.
9761
9762         * mswindows.h: Use stat under Borland, _stat under MSVC.
9763
9764 1998-04-28  Hrvoje Niksic  <hniksic@srce.hr>
9765
9766         * http.c (known_authentication_scheme_p): New function.
9767         (gethttp): Handle authorization more correctly.
9768
9769         * ftp-basic.h: Removed.
9770
9771         * cmpt.h: Removed.
9772
9773         * utils.c: Include <unistd.h> before <pwd.h>; needed under SunOS
9774         with gcc 2.8.
9775         (numdigit): Use `while' loop.
9776
9777         * http.c (create_authorization_line): Detect authentication
9778         schemes case-insensitively.
9779
9780         * http.c (extract_header_attr): Use strdupdelim().
9781         (digest_authentication_encode): Move declaration of local
9782         variables to smaller scope.
9783         (digest_authentication_encode): Reset REALM, OPAQUE and NONCE.
9784         (create_authorization_line): Detect authentication schemes
9785         case-insensitively.
9786
9787         * utils.c (touch): Constify.
9788
9789         * http.c (gethttp): Report a nicer error when no data is received.
9790
9791         * rbuf.h (RBUF_READCHAR): Ditto.
9792
9793         * ftp-basic.c (ftp_response): Use sizeof.
9794
9795 1998-04-27  Hrvoje Niksic  <hniksic@srce.hr>
9796
9797         * retr.c (print_percentage): EXPECTED is long, not int.
9798         (print_percentage): Use floating-point arithmetic to avoid
9799         overflow with large files' sizes multiplied with 100.
9800
9801 1998-04-27  Gregor Hoffleit  <flight@mathi.uni-heidelberg.de>
9802
9803         * config.h.in: Added pid_t stub.
9804
9805         * sysdep.h (S_ISREG): Moved here from mswindows.h (NeXT doesn't
9806         define it).
9807
9808 1998-04-20  Hrvoje Niksic  <hniksic@srce.hr>
9809
9810         * version.c: Wget 1.5.0 is released.
9811
9812 1998-04-18  Hrvoje Niksic  <hniksic@srce.hr>
9813
9814         * url.c (str_url): Ditto.
9815
9816         * ftp-basic.c (ftp_rest): Use new name.
9817
9818         * utils.c (long_to_string): Renamed from prnum().
9819
9820 1998-04-16  Hrvoje Niksic  <hniksic@srce.hr>
9821
9822         * version.c: Wget 1.5-b17 is released.
9823
9824 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
9825
9826         * headers.c (header_get): New argument FLAGS.
9827
9828         * http.c (gethttp): If request is malformed, bail out of the
9829         header loop.
9830         (gethttp): Check for empty header *after* the status line checks.
9831         (gethttp): Disallow continuations for status line.
9832
9833 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
9834
9835         * version.c: Wget 1.5-b16 is released.
9836
9837 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
9838
9839         * init.c (commands): Renamed `always_rest' to `continue'.
9840
9841 1998-04-05  Hrvoje Niksic  <hniksic@srce.hr>
9842
9843         * all: Use it.
9844
9845         * log.c (logputs): New argument.
9846         (logvprintf): Ditto.
9847         (logprintf): Ditto.
9848
9849 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
9850
9851         * http.c (http_atotm): Update comment.
9852
9853         * main.c (i18n_initialize): Set LC_MESSAGES, not LC_ALL.
9854
9855         * wget.h: Renamed ENABLED_NLS to HAVE_NLS.
9856
9857         * main.c (i18n_initialize): New function.
9858         (main): Use it.
9859
9860         * log.c: Include <unistd.h>.
9861
9862         * retr.c (show_progress): Cast alloca to char *.
9863
9864 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
9865
9866         * version.c: Wget 1.5-b15 is released.
9867
9868 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
9869
9870         * utils.h: Declare file_non_directory_p().
9871
9872 1998-04-03  Hrvoje Niksic  <hniksic@srce.hr>
9873
9874         * main.c (main): It's `tries', not `numtries' now.
9875
9876 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
9877
9878         * init.c (getperms): Removed.
9879
9880 1998-04-01  Tim Charron  <tcharron@interlog.com>
9881
9882         * log.c (logvprintf): Don't use ARGS twice.
9883
9884 1998-04-01  John  <john@futuresguide.com>
9885
9886         * mswindows.c: Cleaned up.
9887
9888 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
9889
9890         * version.c: Wget 1.5-b14 is released.
9891
9892 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
9893
9894         * ftp-opie.c (STRLEN4): New macro.
9895         (btoe): Use it.
9896
9897 1998-04-01  Junio Hamano  <junio@twinsun.com>
9898
9899         * http.c: Document all the Digest functions.
9900
9901 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
9902
9903         * utils.c (file_non_directory_p): Renamed from isfile().
9904
9905         * mswindows.h (S_ISREG): New macro, suggested by Tim Adam.
9906
9907 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
9908
9909         * utils.c (mkdirhier): Use 0777 instead of opt.dirmode.
9910
9911         * init.c (cmd_spec_dotstyle): Use 48 dots per line for binary
9912         style.
9913         (cmd_permissions): Removed.
9914
9915         * config.h.in: Add template for WORDS_BIGENDIAN.
9916
9917 1998-03-31  Junio Hamano  <junio@twinsun.com>
9918
9919         * http.c (HEXD2asc): New macro.
9920         (dump_hash): Use it.
9921
9922 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
9923
9924         * version.c: Wget 1.5-b13 is released.
9925
9926 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
9927
9928         * main.c (main): Don't try to use `com'.
9929
9930 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
9931
9932         * init.c (cmd_permissions): New function.
9933
9934 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
9935
9936         * version.c: Wget 1.5-b12 is released.
9937
9938 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
9939
9940         * init.c (commands): Renamed `numtries' to `tries'.
9941         (cmd_spec_debug): Removed.
9942         (home_dir): Under Windows, return `C:\' if HOME is undefined.
9943
9944 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
9945
9946         * config.h.in: Define _XOPEN_SOURCE.
9947
9948         * init.c (check_user_specified_header): New function.
9949         (cmd_spec_header): Use it.
9950         (cmd_spec_useragent): New function.
9951
9952 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
9953
9954         * version.c: Wget 1.5-b11 is released.
9955
9956 1998-03-28  Hrvoje Niksic  <hniksic@srce.hr>
9957
9958         * wget.h: Include <libintl.h> only if NLS is enabled.
9959
9960 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
9961
9962         * options.h (struct options): Made `wait' a long.
9963         (struct options): Ditto for `timeout'.
9964
9965 1998-03-19  Hrvoje Niksic  <hniksic@srce.hr>
9966
9967         * utils.c (exists): Renamed to file_exists_p.
9968         (file_exists_p): Use access() if available.
9969
9970 1998-03-17  Hrvoje Niksic  <hniksic@srce.hr>
9971
9972         * utils.c (memfatal): Set save_log_p to 0 to avoid potential
9973         infloop.
9974
9975         * log.c: do_logging -> save_log_p.
9976
9977         * config.h.in: Added template for HAVE_VSNPRINTF.
9978
9979 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
9980
9981         * init.c: Ditto.
9982
9983         * http.c: Protect declaration against non-ANSI compiler.
9984
9985         * log.c (logvprintf): Use vsnprintf() if available.
9986
9987         * getopt.c (main): Don't translate test stuff.
9988
9989 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
9990
9991         * version.c: Wget 1.5-b10 is released.
9992
9993 1998-03-11  Hrvoje Niksic  <hniksic@srce.hr>
9994
9995         * ftp.c (getftp): Don't translate "CWD %s".
9996
9997         * wget.h (GCC_FORMAT_ATTR): Renamed from FORMAT_ATTR.
9998
9999 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
10000
10001         * ftp-opie.c (btoe): Use memcpy() instead of strncat().
10002
10003         * log.c (logputs): New function.
10004         (logvprintf): Renamed from vlogmsg; use logputs().
10005
10006         * retr.c (show_progress): Print `[100%]' when the retrieval is
10007         finished.
10008
10009         * init.c (run_wgetrc): Use FILE, not PATH.
10010         (wgetrc_file_name): Ditto.
10011
10012 1998-03-07  Tim Adam  <tma@osa.com.au>
10013
10014         * recur.c (parse_robots): Correctly reset `entries' on empty
10015         disallow.
10016
10017 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
10018
10019         * init.c (cmd_spec_debug): Use cmd_boolean().
10020
10021 1998-02-23  Hrvoje Niksic  <hniksic@srce.hr>
10022
10023         * http.c (gethttp): Create proxy-authorization correctly.
10024
10025 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
10026
10027         * md5.c: Ditto.
10028
10029         * getopt.c: Use ANSI function definitions.
10030
10031         * ftp-opie.c: New file.
10032
10033         * options.h: Don't redefine EXTERN.
10034
10035         * init.c: Sort it correctly.
10036
10037 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
10038
10039         * version.c: Wget 1.5-b9 is released.
10040
10041 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
10042
10043         * recur.c (recursive_retrieve): Reset `first_time'.
10044
10045         * ftp.c (getftp): Added `default' clause to switches of uerr_t.
10046
10047         * rbuf.c (rbuf_peek): Simplified.
10048         (rbuf_flush): Use MINVAL.
10049
10050         * wget.h (MINVAL): Moved from url.h.
10051
10052         * rbuf.h (RBUF_FD): New macro.
10053
10054         * url.c (add_url): Add to the head of the list.
10055
10056         * ftp.c (ftp_retrieve_list): Set the permissions to downloaded
10057         file.
10058         (getftp): Set the default permissions to 0600.
10059
10060 1998-02-21  Hrvoje Niksic  <hniksic@srce.hr>
10061
10062         * url.c (get_urls_html): Ditto.
10063         (convert_links): Ditto.
10064
10065         * recur.c (parse_robots): Ditto.
10066
10067         * html.c (ftp_index): Ditto.
10068
10069         * ftp-ls.c (ftp_parse_unix_ls): Open file as binary.
10070
10071         * init.c (defaults): Initialize `opt' to zero via memset.
10072
10073         * http.c (digest_authentication_encode): goto considered harmful.
10074
10075 1998-02-19  Hrvoje Niksic  <hniksic@srce.hr>
10076
10077         * ftp.c (delelement): Simplify and fix leak.
10078
10079 1998-02-18  Hrvoje Niksic  <hniksic@srce.hr>
10080
10081         * http.c (dump_hash): Use HEXD2ASC instead of home-grown stuff.
10082
10083         * url.h (HEXD2ASC): Removed warning.
10084
10085         * init.c (comind): Use binary search.
10086         (commands): Reorganized.
10087         (setval): Ditto.
10088         (cmd_boolean): New function.
10089         (cmd_number): Ditto.
10090         (cmd_number_inf): Ditto.
10091         (cmd_string): Ditto.
10092         (cmd_vector): Ditto.
10093         (cmd_directory_vector): Ditto.
10094         (cmd_bytes): Ditto.
10095         (cmd_time): Ditto.
10096         (cmd_spec_debug): Ditto.
10097         (cmd_spec_dirmode): Ditto.
10098         (cmd_spec_dirstruct): Ditto.
10099         (cmd_spec_dotstyle): Ditto.
10100         (cmd_spec_header): Ditto.
10101         (cmd_spec_htmlify): Ditto.
10102         (cmd_spec_mirror): Ditto.
10103         (cmd_spec_outputdocument): Ditto.
10104         (cmd_spec_recursive): Ditto.
10105         (settime): Merged with cmd_time().
10106         (setbytes): Merged with cmd_bytes().
10107         (setonoff): Merged with cmd_boolean().
10108         (onoff): Ditto.
10109
10110 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
10111
10112         * Makefile.in (distclean): Remove `config.h'.
10113
10114 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
10115
10116         * version.c: Wget 1.5-b8 is released.
10117
10118 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
10119
10120         * http.c (digest_authentication_encode): New function.
10121         (create_authorization_line): Use it.
10122         (dump_hash): New function.
10123         (digest_authentication_encode): Use it.
10124
10125         * fnmatch.c: Renamed from `mtch.c'.
10126
10127 1998-02-15  Karl Eichwalder  <ke@suse.de>
10128
10129         * main.c (main): Tag "Written by..." string as translatable.
10130
10131 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
10132
10133         * wget.h (FREE_MAYBE): New macro.
10134
10135         * http.c (create_authorization_line): Don't use ANSI C string
10136         concatenation feature.
10137         (basic_authentication_encode): Use alloca() for temporary
10138         variables.
10139
10140         * recur.h: Ditto.
10141
10142         * http.c: Ditto.
10143
10144         * headers.h: Ditto.
10145
10146         * ftp-basic.c: Protect declaration against non-ANSI compiler.
10147
10148         * http.c (create_authorization_line): Cast `unsigned char *' to
10149         `char *' for sprintf, to shut up the noisy Digital Unix cc.
10150
10151 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
10152
10153         * version.c: Wget 1.5-b7 is released.
10154
10155 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
10156
10157         * cmpt.c (strstr): Synched with glibc-2.0.6.
10158
10159         * ftp-basic.c (calculate_skey_response): Ditto.
10160         (calculate_skey_response): Use alloca().
10161
10162         * http.c (create_authorization_line): Work with FSF's version of
10163         md5.c.
10164
10165         * md5.c: New file, from GNU libc.
10166
10167 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
10168
10169         * url.h (URL_CLEANSE): Name the temporary variable more carefully.
10170
10171 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
10172
10173         * http.c (basic_authentication_encode): New function, instead of
10174         the macro.
10175
10176 1998-02-13  Junio Hamano  <junio@twinsun.com>
10177
10178         * http.c: Add HTTP-DA support.
10179         * ftp-basic.c: Add Opie/S-key support.
10180         * config.h.in, Makefile.in: Add HTTP-DA and Opie/S-key support.
10181         * md5.c, md5.h: New files.
10182
10183 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
10184
10185         * http.c (http_process_range): Renamed from hprocrange().
10186         (http_process_range): Parse the whole header.
10187
10188         * headers.c: New file.
10189         (header_process): New function.
10190         (header_get): Renamed from fetch_next_header.
10191
10192         * all: Include utils.h only where necessary.
10193
10194         * wget.h: Declare xmalloc(), xrealloc() and xstrdup() here.
10195
10196         * wget.h: Add provisions for dmalloc.
10197
10198 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
10199
10200         * version.c: Wget 1.5-b6 is released.
10201
10202 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
10203
10204         * ftp.c (ftp_loop): Determine `filename' more precisely.
10205
10206         * init.c (setval): Don't set `opt.quiet' if output-document is
10207         `-'.
10208
10209         * log.c (log_init): Print to STDERR instead of STDOUT.
10210         (vlogmsg): Use STDERR by default.
10211         (logflush): Ditto.
10212
10213 1998-02-11  Simon Josefsson  <jas@pdc.kth.se>
10214
10215         * host.c: Use addr_in again.
10216
10217 1998-02-08  Karl Eichwalder  <karl@suse.de>
10218
10219         * http.c (gethttp): Fixed typo.
10220
10221 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
10222
10223         * version.c: Wget 1.5-b5 is released.
10224
10225 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
10226
10227         * retr.c (show_progress): Use it.
10228
10229         * log.c (logflush): New function.
10230
10231         * wget.h: Utilize __attribute__ if on gcc.
10232
10233 1998-02-07  Hrvoje Niksic  <hniksic@srce.hr>
10234
10235         * http.c (base64_encode_line): New argument LENGTH.
10236         (BASIC_AUTHENTICATION_ENCODE): Use it.
10237         (BASIC_AUTHENTICATION_ENCODE): Take length of HEADER into account.
10238
10239         * main.c (main): Fixed fprintf() format mismatch.
10240
10241 1998-02-06  Hrvoje Niksic  <hniksic@srce.hr>
10242
10243         * version.c: Wget 1.5-b4 is released.
10244
10245 1998-02-03  Simon Josefsson  <jas@pdc.kth.se>
10246
10247         * host.c: use sockaddr_in instead of addr_in.
10248
10249 1998-02-04  Hrvoje Niksic  <hniksic@srce.hr>
10250
10251         * init.c (cleanup): Use it.
10252
10253         * recur.c (recursive_cleanup): New function.
10254
10255         * retr.c (retrieve_from_file): Ditto.
10256
10257         * main.c (main): Use it.
10258
10259         * recur.c (recursive_reset): New function.
10260
10261         * retr.c (retrieve_from_file): Ditto.
10262
10263         * main.c (main): Simplify call to recursive_retrieve().
10264
10265         * recur.c (recursive_retrieve): Removed FLAGS argument.
10266
10267         * http.c (gethttp): Changed call to iwrite().
10268
10269 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
10270
10271         * url.c (get_urls_html): Ditto.
10272         (free_urlpos): Ditto.
10273         (mkstruct): Ditto.
10274         (construct): Ditto.
10275
10276         * retr.c (retrieve_url): Move declaration of local variables to
10277         smaller scope.
10278
10279         * url.c (urlproto): Use it.
10280         (parseurl): Ditto.
10281         (str_url): Ditto.
10282         (get_urls_html): Ditto.
10283
10284         * utils.h (ARRAY_SIZE): New macro.
10285
10286         * url.c (proto): Moved from url.h.
10287
10288         * url.h (URL_CLEANSE): Reformatted.
10289         (USE_PROXY_P): Renamed from USE_PROXY.
10290
10291         * ftp-basic.c: Adjust to the new interface of iwrite().
10292
10293         * ftp-basic.c (ftp_port): Use alloca().
10294
10295 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
10296
10297         * version.c: Wget 1.5-b3 is released.
10298
10299         * host.c (ftp_getaddress): Don't print to stderr directly.
10300
10301         * init.c (setbytes): Support `g' for gigabytes.
10302         (cmdtype): New specification CTIME.
10303         (setval): Use it with settime().
10304         (commands): Use it for WAIT and TIMEOUT.
10305
10306 1998-02-02  Hrvoje Niksic  <hniksic@srce.hr>
10307
10308         * http.c (BASIC_AUTHENTICATION_ENCODE): New macro.
10309         (gethttp): Use it.
10310
10311         * utils.c (unique_name_1): Moved from url.c.
10312         (unique_name): Ditto.
10313
10314         * url.c (url_filename): Ditto.
10315
10316         * log.c (redirect_output): Changed call to unique_name().
10317
10318         * url.c (unique_name_1): Renamed from unique_name().
10319         (unique_name): Changed interface.
10320
10321         * init.c (enum cmdid): Moved from init.h.
10322         (cmdtype): Ditto.
10323         (struct cmd): Ditto.
10324
10325         * main.c (main): Use it.
10326         (main): Moved `--backups' to not have a short option.
10327
10328         * options.h (struct options): New member BACKGROUND.
10329
10330         * main.c (print_help): Rearranged.
10331         (main): New long options for -n* short options: --no-directories,
10332         --no-host-directories, --non-verbose, --no-host-lookup and
10333         --dont-remove-listing.
10334
10335 1998-02-01  Hrvoje Niksic  <hniksic@srce.hr>
10336
10337         * main.c (main): Use log_close().
10338
10339         * log.c: New variable LOGFP.
10340         (vlogmsg): Use it.
10341         (redirect_output): Don't open /dev/null; set LOGFP to stdin
10342         instead.
10343         (log_close): New function.
10344
10345         * options.h (struct options): Removed LFILE.
10346
10347         * log.c (log_enable): Removed.
10348
10349         * main.c (main): Use it.
10350
10351         * log.c (log_init): New function.
10352
10353         * url.c (get_urls_html): Removed needless assignment to BASE.
10354
10355         * host.c (add_hlist): Don't set CMP needlessly.
10356
10357         * utils.c (match_backwards): Ditto.
10358         (in_acclist): Ditto.
10359
10360         * url.c (findurl): Ditto.
10361
10362         * netrc.c (parse_netrc): Ditto.
10363
10364         * log.c (log_dump): Ditto.
10365
10366         * html.c (html_quote_string): Ditto.
10367
10368         * ftp-basic.c (ftp_request): Made static.
10369
10370         * connect.c: Made global variables static.
10371
10372         * url.c (construct): Ditto.
10373
10374         * init.c (init_path): Avoid assignment inside `if'-condition.
10375
10376         * ftp.c: Don't include in.h or winsock.h.
10377
10378         * ftp.c (ftp_loop): Use SZ.
10379
10380         * connect.c (bindport): Cast &addrlen to int *.
10381         (conaddr): Ditto.
10382
10383         * init.c (initialize): Don't use SYSTEM_WGETRC unconditionally.
10384
10385 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
10386
10387         * ftp.c (getftp): Initialize opt.ftp_pass here.
10388         (ftp_retrieve_dirs): Use alloca().
10389
10390         * init.c (defaults): Don't initialize opt.ftp_pass.
10391
10392         * sysdep.h (S_ISLNK): Declare for OS/2; ditto for lstat.
10393         From Ivan F. Martinez <ivanfm@ecodigit.com.br>.
10394
10395 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
10396
10397         * recur.c (parse_robots): Check for comments more correctly.
10398
10399         * host.c (ftp_getaddress): Use STRDUP_ALLOCA.
10400         (ftp_getaddress): Add diagnostics when reverse-lookup yields only
10401         hostname.
10402
10403 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
10404
10405         * version.c: Wget 1.5-b2 is released.
10406
10407         * netrc.c (NETRC_FILE_NAME): Moved from netrc.h.
10408
10409         * utils.c (proclist): Pass FNM_PATHNAME to fnmatch().
10410
10411         * ftp-basic.c (ftp_pasv): Avoid unnecessary casting to unsigned
10412         char.
10413
10414         * log.c: Don't attempt to hide arguments from ansi2knr.
10415
10416         * cmpt.c: Synched strptime() and mktime() with glibc-2.0.6.
10417
10418         * ansi2knr.c: Use a later version, from fileutils-3.16l alpha.
10419
10420         * ftp.c (getftp): Ditto.
10421
10422         * http.c (gethttp): Use it.
10423
10424         * retr.c (get_contents): New argument EXPECTED; pass it to
10425         show_progress().
10426         (show_progress): New argument EXPECTED; use it to display
10427         percentages.
10428
10429         * init.c (setval): Ditto.
10430
10431         * http.c (gethttp): Ditto.
10432         (http_loop): Ditto.
10433
10434         * ftp.c (getftp): Ditto.
10435         (ftp_loop_internal): Ditto.
10436
10437         * ftp-ls.c (ftp_parse_unix_ls): Use abort() instead of assert(0).
10438
10439         * sysdep.h (CLOSE): Simplify; use DEBUGP.
10440
10441         * netrc.c (search_netrc): Use alloca().
10442
10443         * init.c (defaults): Initialize no_flush.
10444
10445         * log.c (vlogmsg): Don't flush if no_flush.
10446
10447         * options.h (struct options): New variable no_flush.
10448
10449         * main.c (main): Don't play games with buffering.
10450
10451         * log.c (vlogmsg): Flush the output after every message.
10452
10453 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
10454
10455         * init.c (parse_line): Ditto.
10456
10457         * url.c (get_urls_html): Ditto.
10458
10459         * main.c (main): Don't cast to unsigned char.
10460
10461         * init.c (run_wgetrc): Don't cast to unsigned char.
10462         (parse_line): Accept char instead of unsigned char.
10463
10464         * html.c (htmlfindurl): Use char instead of unsigned char.
10465
10466         * all: Use them.
10467
10468         * sysdep.h: Add wrappers to ctype macros to make them
10469         eight-bit-clean:
10470
10471 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
10472
10473         * html.c (htmlfindurl): Download <img lowsrc=...>
10474
10475         * main.c (main): Ignore SIGPIPE.
10476
10477         * connect.c (select_fd): New argument WRITEP.
10478         (iwrite): Call select_fd().
10479
10480 1997-02-27  Fila Kolodny <fila@ibi.com>
10481
10482         * ftp.c (ftp_retrieve_list): If retrieving symlink and the proper
10483         one already exists, just skip it.
10484
10485 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
10486
10487         * http.c (gethttp): Cosmetic changes.
10488
10489         * http.c (check_end): Allow `+D...' instead of `GMT'.
10490         From Fabrizio Pollastri <pollastri@cstv.to.cnr.it>.
10491
10492         * url.c (process_ftp_type): New function.
10493         (parseurl): Use it.
10494
10495         * connect.c (iwrite): Allow writing in a few chunks.
10496         (bindport): Made SRV static, so addr can point to it.
10497         (select_fd): Removed HPUX kludge.
10498
10499         * host.c (free_hlist): Incorporated into clean_hosts().
10500
10501 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
10502
10503         * host.c (hlist): Made static.
10504         (search_address): Cosmetic change.
10505
10506 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
10507
10508         * version.c: Wget v1.5-b1 is released.
10509
10510         * http.c (hgetlen): Use sizeof() to get the header length.
10511         (hgetrange): Ditto.
10512         (hgettype): Ditto.
10513         (hgetlocation): Ditto.
10514         (hgetmodified): Ditto.
10515         (haccepts_none): Ditto.
10516
10517         * main.c (main): Updated `--version' and `--help' output, as per
10518         Francois Pinard's suggestions.
10519
10520         * main.c: Include locale.h; call setlocale(), bindtextdomain() and
10521         textdomain().
10522
10523         * config.h.in: Define stubs for I18N3.
10524
10525         * wget.h: Include libintl.h.
10526
10527 1998-01-28  Hrvoje Niksic  <hniksic@srce.hr>
10528
10529         * url.c (mkstruct): Check for opt.cut_dirs.
10530         (mkstruct): alloca()-te more, xmalloc() less.
10531
10532         * utils.c (load_file): Check for ferror().
10533
10534         * url.c (get_urls_file): Close only the files we opened.
10535         (get_urls_html): Ditto.
10536         (count_slashes): New function.
10537
10538         * http.h: Removed.
10539
10540         * http.c (gethttp): Respect username and password provided by
10541         proxy URL.
10542         (base64_encode_line): Write into an existing buffer instead of
10543         malloc-ing a new one.
10544         (struct http_stat): Moved from http.h
10545
10546         * retr.c (retrieve_url): Free SUF.
10547
10548         * all: Removed lots of unnecessary .h dependencies.
10549
10550         * html.c (global_state): Made static.
10551
10552         * utils.h (ALLOCA_ARRAY): New macro.
10553
10554         * main.c (main): New option `--cut-dirs'.
10555
10556         * url.c (construct): Use alloca() for T.
10557
10558         * utils.c (mkdirhier): Use STRDUP_ALLOCA.
10559
10560         * host.c (_host_t): Moved from host.h.
10561         (struct host): Renamed from _host_t.
10562         (store_hostaddress): Use STRDUP_ALLOCA for INET_S.
10563         (realhost): Ditto.
10564
10565         * host.h: Don't include url.h.
10566
10567         * ftp.c (LIST_FILENAME): Moved from ftp.h.
10568
10569         * init.c (DEFAULT_FTP_ACCT): Moved from ftp.h.
10570
10571         * main.c (main): Enable log if the output goes to a TTY.
10572
10573         * connect.h: Removed unused constant `BACKLOG'.
10574
10575         * config.h.in: Check for isatty().
10576
10577         * Makefile.in (LINK): Use CFLAGS when linking.
10578
10579 1998-01-27  Hrvoje Niksic  <hniksic@srce.hr>
10580
10581         * mswindows.c (ws_hangup): Use redirect_output().
10582
10583         * main.c (redirect_output_signal): New function; use
10584         redirect_output().
10585
10586         * log.c (redirect_output): New function, based on hangup(), which
10587         is deleted.
10588
10589         * log.c (vlogmsg): New function.
10590
10591         * wget.h (DEBUGP): Use debug_logmsg().
10592
10593         * main.c (hangup): Use it.
10594
10595         * log.c (log_dump): New function.
10596
10597         * utils.h (DO_REALLOC): Use `long' for various sizes.
10598
10599         * http.c (hskip_lws): Use `while', for clarity.
10600         (HTTP_DYNAMIC_LINE_BUFFER): New constant.
10601         (fetch_next_header): Use it instead of DYNAMIC_LINE_BUFFER.
10602
10603         * ftp-basic.c (FTP_DYNAMIC_LINE_BUFFER): New constant.
10604         (ftp_response): Use it instead of DYNAMIC_LINE_BUFFER.
10605
10606         * utils.c (DYNAMIC_LINE_BUFFER): Moved from utils.c.
10607         (LEGIBLE_SEPARATOR): Ditto.
10608         (FILE_BUFFER_SIZE): Ditto.
10609
10610         * retr.c (BUFFER_SIZE): Moved from retr.h.
10611
10612         * log.c: New file.
10613         (logmsg): Moved from utils.c.
10614         (debug_logmsg): New function.
10615
10616         * mswindows.h: Include it here.
10617
10618         * init.c: Ditto.
10619
10620         * utils.c: Don't include <windows.h>.
10621
10622 1998-01-25  Hrvoje Niksic  <hniksic@srce.hr>
10623
10624         * host.c (ftp_getaddress): Ditto.
10625
10626         * main.c (main): Use it.
10627
10628         * utils.h (STRDUP_ALLOCA): New macro.
10629
10630         * init.c: Prepend `wget: ' to error messages printed on stderr.
10631
10632         * utils.c (mkdirhier): Renamed from mymkdir.
10633         (touch): Renamed from my_touch.
10634         (pwd_cuserid): Renamed from my_cuserid().
10635
10636 1998-01-24  Andy Eskilsson  <andy.eskilsson@telelogic.se>
10637
10638         * utils.c (accdir): Process wildcards.
10639         (proclist): New function.
10640         (accdir): Use it to avoid code repetition.
10641
10642 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
10643
10644         * recur.c (parse_robots): Respect opt.useragent; use alloca().
10645
10646         * http.c (gethttp): Construct useragent accordingly.
10647
10648         * version.c: Changed version string to numbers-only.
10649
10650         * main.c (print_help): List all the options.
10651
10652         * mswindows.c (windows_main_junk): Initialize argv0 here.
10653
10654 1998-01-24  Karl Heuer  <kwzh@gnu.org>
10655
10656         * netrc.c (search_netrc): Initialize `l' only after processing
10657         netrc.
10658
10659         * main.c (main): Don't trap SIGHUP if it's being ignored.
10660
10661 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
10662
10663         * all: Use logmsg().
10664
10665         * utils.c (time_str): Moved from retr.c.
10666         (logmsg): New function.
10667         (logmsg_noflush): Ditto.
10668
10669         * rbuf.c: New file, moved buf_* functions here.
10670
10671         * ftp.c (ftp_expected_bytes): Moved from ftp-basic.c.
10672
10673         * ftp-basic.c (ftp_rest): Use prnum().
10674
10675         * ftp-basic.c: Ditto.
10676
10677         * ftp.c: Use the new reading functions and macros.
10678
10679         * retr.c (buf_initialize): New function.
10680         (buf_initialized_p): Ditto.
10681         (buf_uninitialize): Ditto.
10682         (buf_fd): Ditto.
10683
10684         * http.c (fetch_next_header): Use the BUF_READCHAR macro for
10685         efficiency.
10686         (gethttp): Use alloca() where appropriate.
10687
10688         * retr.c (buf_readchar): Use it.
10689         (buf_peek): Use rstreams.
10690
10691         * retr.h (BUF_READCHAR): New macro.
10692
10693         * init.c (home_dir): Rewritten for clarity.
10694         (init_path): Ditto.
10695
10696         * mswindows.c (ws_backgnd): Made static.
10697         (read_registry): Ditto.
10698         (ws_cleanup): Ditto.
10699         (ws_handler): Ditto.
10700
10701 1998-01-23  Hrvoje Niksic  <hniksic@srce.hr>
10702
10703         * alloca.c: New file.
10704
10705         * Makefile.in (ALLOCA): Define.
10706
10707         * mswindows.c (ws_help): Constify.
10708         (ws_help): Use alloca.
10709
10710         * mswindows.c: Reformat.
10711
10712         * all: Added _(...) annotations for I18N snarfing and translation.
10713
10714         * host.c (ftp_getaddress): Nuke SYSINFO.
10715         (ftp_getaddress): Don't use getdomainname().
10716         (ftp_getaddress): Use uname(), where available.
10717
10718         * http.c (gethttp): Protect a stray fprintf().
10719
10720         * init.c (settime): New function.
10721         (setval): Treat WAIT specially, allowing suffixes like `m' for
10722         minutes, etc.
10723
10724 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
10725
10726         * url.c (get_urls_html): Use alloca() for TEMP.
10727
10728 1998-01-21  Jordan Mendelson  <jordy@wserv.com>
10729
10730         * url.c (rotate_backups): New function.
10731
10732         * http.c (gethttp): Ditto.
10733
10734         * ftp.c (getftp): Rotate backups.
10735
10736 1997-12-18  Hrvoje Niksic  <hniksic@srce.hr>
10737
10738         * all: Renamed nmalloc(), nrealloc() and nstrdup() to xmalloc(),
10739         xrealloc() and xstrdup().  Use the new functions.
10740
10741         * url.c (decode_string): Made static.
10742         (has_proto): Ditto.
10743         (parse_dir): Ditto.
10744         (parse_uname): Ditto.
10745         (mkstruct): Ditto.
10746         (construct): Ditto.
10747         (construct_relative): Ditto.
10748
10749         * retr.c (show_progress): Made static.
10750
10751         * recur.c (robots_url): Made static.
10752         (retrieve_robots): Ditto.
10753         (parse_robots): Ditto.
10754         (robots_match): Ditto.
10755
10756         * main.h: Removed.
10757
10758         * main.c (printhelp): Made static.
10759         (hangup): Ditto.
10760
10761         * init.c (comind): Made static.
10762         (defaults): Ditto.
10763         (init_path): Ditto.
10764         (run_wgetrc): Ditto.
10765         (onoff): Ditto.
10766         (setonoff): Ditto.
10767         (setnum): Ditto.
10768         (myatoi): Ditto.
10769         (getperms): Ditto.
10770         (setbytes): Ditto.
10771
10772         * http.c (fetch_next_header): Made static.
10773         (hparsestatline): Ditto.
10774         (hskip_lws): Ditto.
10775         (hgetlen): Ditto.
10776         (hgetrange): Ditto.
10777         (hgettype): Ditto.
10778         (hgetlocation): Ditto.
10779         (hgetmodified): Ditto.
10780         (haccepts_none): Ditto.
10781         (gethttp): Ditto.
10782         (base64_encode_line): Ditto.
10783         (mktime_from_utc): Ditto.
10784         (http_atotm): Ditto.
10785
10786         * html.c (idmatch): Made static.
10787
10788         * host.c (search_host): Made static.
10789         (search_address): Ditto.
10790         (free_hlist): Ditto.
10791
10792         * ftp.c (getftp): Made static.
10793         (ftp_loop_internal): Ditto.
10794         (ftp_get_listing): Ditto.
10795         (ftp_retrieve_list): Ditto.
10796         (ftp_retrieve_dirs): Ditto.
10797         (ftp_retrieve_glob): Ditto.
10798         (freefileinfo): Ditto.
10799         (delelement): Ditto.
10800
10801         * ftp-ls.c (symperms): Made static.
10802         (ftp_parse_unix_ls): Ditto.
10803
10804         * connect.c (select_fd): Made static.
10805
10806         * utils.c (xmalloc): Renamed from nmalloc.
10807         (xrealloc): Renamed from nrealloc.
10808         (xstrdup): Renamed from nstrdup.
10809
10810         * getopt.c (exchange): Use alloca.
10811
10812         * mswindows.c (mycuserid): Use strncpy.
10813
10814         * New files mswindows.c, mswindows.h, sysdep.h.  winjunk.c,
10815         systhings.h, windecl.h and winjunk.h removed.
10816
10817         * mswindows.c (sleep): New function.
10818
10819         * utils.c: Include <windows.h> under Windows.
10820
10821 1997-06-12  Darko Budor  <dbudor@zesoi.fer.hr>
10822
10823         * url.h (URL_UNSAFE): Change default under Windows.
10824
10825         * retr.c (retrieve_from_file): Respect opt.delete_after.
10826
10827         * main.c (main): Call ws_help on Windows.
10828
10829         * winjunk.c (windows_main_junk): New function.
10830
10831         * main.c (main): Junk-process argv[0].
10832
10833         * http.c (mktime_from_utc): Return -1 if mktime failed.
10834
10835         * http.c (http_loop): Ditto.
10836
10837         * ftp.c (ftp_loop_internal): Change title on Windows when using a
10838         new URL.
10839
10840         * winjunk.c (getdomainname): Lots of functions.
10841
10842 1997-06-12  Hrvoje Niksic  <hniksic@srce.hr>
10843
10844         * cmpt.c (strptime_internal): Handle years more correctly for
10845         `%y'.
10846
10847 1997-06-09  Mike Thomas <mthomas@reality.ctron.com>
10848
10849         * http.c (gethttp): Allocate enough space for
10850         `Proxy-Authorization' header.
10851
10852 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
10853
10854         * version.c: Wget/1.4.5 is released.
10855
10856 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
10857
10858         * retr.c (get_contents): Check return value of fwrite more
10859         carefully.
10860
10861 1997-03-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
10862
10863         * cmpt.c (strptime_internal) [case 'Y']: Always subtract 1900 from
10864         year, regardless of century.
10865
10866 1997-03-30  Hrvoje Niksic  <hniksic@srce.hr>
10867
10868         * utils.c (isfile): Use `lstat' instead of `stat'.
10869
10870 1997-03-29  Hrvoje Niksic  <hniksic@srce.hr>
10871
10872         * utils.c (numdigit): Use explicit test.
10873
10874 1997-03-21  Hrvoje Niksic  <hniksic@srce.hr>
10875
10876         * http.c (http_loop): Always use `url_filename' to get u->local.
10877
10878 1997-03-20  Hrvoje Niksic  <hniksic@srce.hr>
10879
10880         * url.c: Recognize https.
10881
10882 1997-03-13  Hrvoje Niksic  <hniksic@srce.hr>
10883
10884         * recur.c (recursive_retrieve): Lowercase just the host name.
10885
10886 1997-03-09  Hrvoje Niksic  <hniksic@srce.hr>
10887
10888         * url.c (get_urls_file): Use the correct test.
10889         (get_urls_html): Ditto.
10890
10891 1997-03-07  Hrvoje Niksic  <hniksic@srce.hr>
10892
10893         * connect.c: Reverted addrlen to int.
10894
10895         * init.c (parse_line): Check for -1 instead of NONE.
10896
10897         * version.c: Changed version to 1.4.5.
10898
10899 1997-02-17  Hrvoje Niksic  <hniksic@srce.hr>
10900
10901         * init.c: New option netrc.
10902         (initialize): Don't parse .netrc.
10903
10904         * cmpt.c (recursive): Return rp.
10905         (strptime_internal): Match the long strings first, the abbreviated
10906         second.
10907
10908 1997-02-16  Hrvoje Niksic  <hniksic@srce.hr>
10909
10910         * http.c (check_end): New function.
10911         (http_atotm): Use it.
10912
10913 1997-02-13  gilles Cedoc  <gilles@cedocar.fr>
10914
10915         * http.c (gethttp): Use them.
10916
10917         * init.c: New options proxy_user and proxy_passwd.
10918
10919 1997-02-14  Hrvoje Niksic  <hniksic@srce.hr>
10920
10921         * ftp.c (ftp_retrieve_list): Create links even if not relative.
10922
10923 1997-02-10  Hrvoje Niksic  <hniksic@srce.hr>
10924
10925         * recur.c (recursive_retrieve): Lowercase the host name, if the
10926         URL is not "optimized".
10927
10928         * host.c (realhost): Return l->hostname, even if it matches with
10929         host.
10930
10931 1997-02-10  Marin Purgar  <pmc@asgard.hr>
10932
10933         * connect.c: Make addrlen size_t instead of int.
10934         (conaddr): Ditto.
10935
10936 1997-02-09  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
10937
10938         * systhings.h: Define S_ISLNK on NeXT too.
10939
10940 1997-02-09  Hrvoje Niksic  <hniksic@srce.hr>
10941
10942         * version.c: Released 1.4.3.
10943
10944         * url.c: Futher update to list of protostrings.
10945         (skip_proto): Skip `//' correctly for FTP and HTTP.
10946
10947         * url.c (get_urls_html): Handle bogus `http:' things a little
10948         different.
10949
10950         * main.c (main): Removed `follow-ftp' from `f'.
10951         (main): Dumped the `prefix-files' and `file-prefix' options and
10952         features; old and bogus.
10953         (main): Exit on failed setval() in `-e'.
10954
10955         * http.c (fetch_next_header): Use it to detect header continuation
10956         correctly.
10957
10958         * retr.c (buf_peek): New function.
10959
10960 1997-02-08  Hrvoje Niksic  <hniksic@srce.hr>
10961
10962         * wget.h: Include time.h and stuff.
10963
10964 1997-02-08  Roger Beeman  <beeman@cisco.com>
10965
10966         * ftp.c: Include <time.h>
10967
10968 1997-02-07  Hrvoje Niksic  <hniksic@srce.hr>
10969
10970         * url.c (findurl): Would read over buffer limits.
10971
10972 1997-02-06  Hrvoje Niksic  <hniksic@srce.hr>
10973
10974         * ftp-ls.c (ftp_parse_unix_ls): Allow spaces in file names.
10975
10976 1997-02-05  Hrvoje Niksic  <hniksic@srce.hr>
10977
10978         * http.c (http_atotm): Initialize tm.is_dst.
10979
10980 1997-02-02  Hrvoje Niksic  <hniksic@srce.hr>
10981
10982         * http.c (gethttp): Don't print the number of retrieved headers.
10983
10984         * main.c (main): New option `--no-clobber', alias for `-nc'.
10985
10986         * url.c: Recognize `https://'.
10987
10988 1997-02-01  Hrvoje Niksic  <hniksic@srce.hr>
10989
10990         * host.c (herrmsg): Don't use h_errno.
10991
10992 1997-01-30  Hrvoje Niksic  <hniksic@srce.hr>
10993
10994         * host.c (accept_domain): Use it.
10995
10996         * main.c (main): New option `--exclude-domains'.
10997
10998         * retr.c (retrieve_url): Use it.
10999         (retrieve_url): Bail out when an URL is redirecting to itself.
11000
11001         * url.c (url_equal): New function.
11002
11003 1997-01-29  Hrvoje Niksic  <hniksic@srce.hr>
11004
11005         * connect.c: Include arpa/inet.h instead of arpa/nameser.h.
11006
11007         * http.c (mk_utc_time): New function.
11008         (http_atotm): Use it; handle time zones correctly.
11009
11010 1997-01-28  Hrvoje Niksic  <hniksic@srce.hr>
11011
11012         * http.c: Ditto.
11013
11014         * ftp-basic.c: Use it instead of WRITE.
11015
11016         * connect.c (iwrite): New function.
11017
11018 1997-01-27  Hrvoje Niksic  <hniksic@srce.hr>
11019
11020         * cmpt.c (mktime): New function.
11021
11022         * netrc.c: Include <sys/types.h>.
11023
11024         * main.c (main): Wouldn't recognize --spider.
11025
11026         * retr.c (rate): Use `B', `KB' and `MB'.
11027         (reset_timer,elapsed_time): Moved from utils.c.
11028
11029         * ftp.c (ftp_retrieve_list): Ditto.
11030
11031         * http.c (http_loop): Don't touch the file if opt.dfp.
11032
11033 1997-01-24  Hrvoje Niksic  <hniksic@srce.hr>
11034
11035         * cmpt.c: New file.
11036
11037         * ftp.c (ftp_retrieve_glob): New argument semantics.
11038         (ftp_retrieve_dirs): Use it.
11039         (ftp_loop): Ditto.
11040
11041         * html.c (htmlfindurl): Recognize `'' as the quote char.
11042
11043 1997-01-23  Hrvoje Niksic  <hniksic@srce.hr>
11044
11045         * ftp.c (ftp_loop_internal): Use it.
11046
11047         * utils.c (remove_link): New function.
11048
11049 1997-01-22  Hrvoje Niksic  <hniksic@srce.hr>
11050
11051         * retr.c (retrieve_url): Require STRICT redirection URL.
11052
11053         * url.c (parseurl): New argument STRICT.
11054
11055         * http.c (hparsestatline): Be a little-bit less strict about
11056         status line format.
11057
11058 1997-01-21  Hrvoje Niksic  <hniksic@srce.hr>
11059
11060         * http.c (gethttp): Use it.
11061
11062         * main.c (main): Don't use '<digit>' as options.
11063
11064         * init.c: New option ignore_length.
11065
11066         * http.c (gethttp): Ditto.
11067         (http_loop): Check for redirection without Location:.
11068         (gethttp): Don't print Length unless RETROKF.
11069
11070         * ftp.c (getftp): Use it.
11071
11072         * url.c (mkalldirs): New function.
11073
11074         * utils.c (mymkdir): Don't check for existing non-directory.
11075
11076         * url.c (mkstruct): Don't create the directory.
11077
11078 1997-01-20  Hrvoje Niksic  <hniksic@srce.hr>
11079
11080         * init.c (setval): Removed NO_RECURSION checks.
11081
11082 1997-01-19  Hrvoje Niksic  <hniksic@srce.hr>
11083
11084         * version.c: "Released" 1.4.3-pre2.
11085
11086         * recur.c (recursive_retrieve): Bypass host checking only if URL
11087         is ftp AND parent URL is not ftp.
11088
11089         * ftp-basic.c (ftp_request): Print out Turtle Power.
11090
11091         * ftp.c (ftp_loop): Call ftp_retrieve_glob with 0 if there's no
11092         wildcard.
11093         (ftp_retrieve_glob): Call ftp_loop_internal even on empty list, if
11094         not glob.
11095
11096         * http.c (gethttp): Be a little bit smarter about status codes.
11097
11098         * recur.c (recursive_retrieve): Always reset opt.recursive when
11099         dealing with FTP.
11100
11101 1997-01-18  Hrvoje Niksic  <hniksic@srce.hr>
11102
11103         * retr.c (retrieve_url): New variable location_changed; use it for
11104         tests instead of mynewloc.
11105         (retrieve_url): Allow heuristic adding of html.
11106
11107         * url.c (url_filename): Don't use the `%' in Windows file names.
11108
11109         * http.c (http_loop): Always time-stamp the local file.
11110
11111         * http.c (http_loop): Ditto.
11112
11113         * ftp.c (ftp_retrieve_list): Use it.
11114
11115         * utils.c (my_touch): New function.
11116
11117         * ftp.c (ftp_retrieve_list): Use #ifdef HAVE_STRUCT_UTIMBUF
11118         instead of #ifndef NeXT.
11119
11120         * utils.c (strptime): New version, by Ulrich Drepper.
11121
11122 1997-01-17  Hrvoje Niksic  <hniksic@srce.hr>
11123
11124         * http.c (haccepts_none): Renamed from `haccepts_bytes'.
11125         (gethttp): If haccepts_none(), disable ACCEPTRANGES.
11126         (http_loop): Would remove ACCEPTRANGES.
11127
11128         * ftp.c (getftp): Call ftp_list with NULL.
11129
11130 1997-01-15  Hrvoje Niksic  <hniksic@srce.hr>
11131
11132         * html.c (ftp_index): Don't print minutes and seconds if we don't
11133         know them; beautify the output.
11134
11135         * ftp.c (getftp): Don't close the socket on FTPNSFOD.
11136
11137 1997-01-14  Hrvoje Niksic  <hniksic@srce.hr>
11138
11139         * utils.c (strptime): New function.
11140         (strptime): Don't use get_alt_number.
11141         (strptime): Don't use locale.
11142         (match_string): Made it a function.
11143
11144 1997-01-12  Hrvoje Niksic  <hniksic@srce.hr>
11145
11146         * http.c (http_atotm): New function.
11147         (http_loop): Use it.
11148
11149         * atotm.c: Removed from the distribution.
11150
11151         * http.c (base64_encode_line): Rewrite.
11152
11153 1997-01-09  Hrvoje Niksic  <hniksic@srce.hr>
11154
11155         * ftp.c (getftp): Use ftp_expected_bytes; print size.
11156
11157         * ftp-basic.c (ftp_response): Use ftp_last_respline.
11158         (ftp_expected_bytes): New function.
11159
11160         * ftp.c (getftp): Print the unauthoritative file length.
11161
11162         * ftp-ls.c: Renamed from ftp-unix.c.
11163         (ftp_parse_ls): Moved from ftp.c.
11164         (ftp_parse_unix_ls): Recognize seconds in time spec.
11165         (ftp_parse_unix_ls): Recognize year-less dates of the previous
11166         year.
11167
11168 1997-01-08  Hrvoje Niksic  <hniksic@srce.hr>
11169
11170         * ftp-basic.c: Don't declare errno if #defined.
11171
11172         * host.c (ftp_getaddress): Check for sysinfo legally.
11173
11174 1997-01-08  Darko Budor  <dbudor@diana.zems.fer.hr>
11175
11176         * connect.c (iread): Use READ.
11177
11178 1996-12-23  Hrvoje Niksic  <hniksic@srce.hr>
11179
11180         * url.c: Recognize finger, rlogin, tn3270, mid and cid as valid
11181         schemes.
11182
11183 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
11184
11185         * host.c (ftp_getaddress): Allow `.' in hostname.
11186
11187 1996-12-26  Darko Budor <dbudor@zems.fer.hr>
11188
11189         * wget.h: READ and WRITE macros for use instead of read and write
11190         on sockets, grep READ *.c, grep WRITE *.c
11191
11192         * wsstartup.c: new file - startup for winsock
11193
11194         * wsstartup.h: new file
11195
11196         * win32decl.h: new file - fixup for <errno.h> and winsock trouble
11197
11198         * configure.bat: Configure utility for MSVC
11199
11200         * src/Makefile.ms,config.h.ms: new files for use with MSVC 4.x
11201
11202 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
11203
11204         * version.c: Released 1.4.3-pre.
11205
11206         * utils.c (prnum): Accept long.
11207         (legible): Use prnum().
11208
11209         * connect.c (make_connection): Accept port as short.
11210         (bindport): Ditto.
11211
11212         * http.c (gethttp): Use search_netrc.
11213
11214 1996-12-21  Hrvoje Niksic  <hniksic@srce.hr>
11215
11216         * ftp.c (getftp): Use search_netrc.
11217
11218         * netrc.c (free_netrc): New function.
11219
11220         * init.c (home_dir): New function.
11221
11222         * url.c (convert_links): Allow REL2ABS changes.
11223
11224 1996-12-21  Gordon Matzigkeit  <gord@gnu.ai.mit.edu>
11225
11226         * netrc.c: New file.
11227         (parse_netrc, maybe_add_to_list): New functions.
11228
11229 1996-12-17  Hrvoje Niksic  <hniksic@srce.hr>
11230
11231         * retr.c (retrieve_url): Reset opt.recursion before calling
11232         ftp_loop if it is reached through newloc.
11233
11234         * init.c (run_wgetrc): Print the wgetrc path too, when reporting
11235         error; don't use "Syntax error", since we don't know if it is
11236         really a syntax error.
11237
11238 1996-12-16  Hrvoje Niksic  <hniksic@srce.hr>
11239
11240         * utils.c (acceptable): Extract the filename part of the path.
11241
11242         * recur.c (recursive_retrieve): Call acceptable() with the right
11243         argument; would bug out on wildcards.
11244
11245         * init.c (parse_line): Likewise.
11246
11247         * html.c (htmlfindurl): Cast to char * when calling stuff.
11248
11249 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
11250
11251         * ftp.c (getftp): Use ftp_pasv.
11252
11253         * ftp-basic.c (ftp_request): Accept NULL value.
11254         (ftp_pasv): New function.
11255
11256         * options.h (struct options): Add passive FTP option.
11257
11258 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
11259
11260         * url.c (parseurl): Debug output.
11261
11262         * utils.c (path_simplify): New one, adapted from bash's
11263         canonicalize_pathname().
11264
11265 1996-12-14  Hrvoje Niksic  <hniksic@srce.hr>
11266
11267         * ftp.c (getftp): Don't discard the buffer.
11268
11269         * retr.c (get_contents): New parameter nobuf.
11270
11271 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
11272
11273         * html.c (htmlfindurl): Recognize <meta contents="d; URL=...".
11274
11275         * init.c (setval): Strip the trailing slashes on CVECDIR.
11276
11277 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
11278
11279         * init.c: Make excludes and includes under CVECDIR instead of
11280         CVEC.
11281
11282 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
11283
11284         * url.c (get_urls_html): Skip "http:".
11285
11286 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
11287
11288         * utils.c (strcasecmp): From glibc.
11289         (strncasecmp): Also.
11290         (strstr): Also.
11291
11292         * url.c: Added javascript: to the list of URLs prefixes.
11293
11294 1996-12-12  Shawn McHorse  <riffraff@txdirect.net>
11295
11296         * recur.c (retrieve_robots): Print the warning message only if
11297         verbose.
11298
11299 1996-12-12  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
11300
11301         * ftp.c (ftp_retrieve_list): Use NeXT old utime interface.
11302
11303 1996-12-12  Hrvoje Niksic  <hniksic@srce.hr>
11304
11305         * systhings.h: New file.
11306
11307         * ../configure.in: Check for utime.h
11308
11309         * ftp.c: Check whether we have unistd.h.
11310
11311 1996-11-27  Hrvoje Niksic  <hniksic@srce.hr>
11312
11313         * recur.c (recursive_retrieve): Send the canonical URL as referer.
11314         (recursive_retrieve): Call get_urls_html with the canonical URL.
11315
11316 1996-12-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11317
11318         * (configure.in, config.h.in, src/Makefile.in, src/*.[ch]): Add
11319         ansi2knr support for compilers which don't support ANSI style
11320         function prototypes and signatures.
11321
11322         * (aclocal.m4, src/ansi2knr.c, src/ansi2knr.1): New files.
11323
11324 1996-11-26  Hrvoje Niksic  <hniksic@srce.hr>
11325
11326         * url.c: Use it; Recognize paths ending with "." and ".." as
11327         directories.
11328         (url_filename): Append .n whenever file exists and could be a
11329         directory.
11330
11331         * url.h (ISDDOT): New macro.
11332
11333         * init.c (parse_line): Use unsigned char.
11334
11335         * url.c (get_urls_html): Cast to unsigned char * when calling
11336         htmlfindurl.
11337
11338         * html.c (htmlfindurl): Use unsigned char.
11339
11340         * version.c: Changed version to 1.4.3.
11341
11342 1996-11-25  Hrvoje Niksic  <hniksic@srce.hr>
11343
11344         * version.c: Released 1.4.2.
11345
11346         * ftp.c (getftp): Simplified assertion.
11347         (ftp_loop_internal): Remove symlink before downloading.
11348         (ftp_retrieve_list): Unlink the symlink name before attempting to
11349         create a symlink!
11350
11351         * options.h (struct options): Renamed print_server_response to
11352         server_response.
11353
11354         * ftp.c (rel_constr): Removed.
11355         (ftp_retrieve_list): Don't use it.
11356         (ftp_retrieve_list): Use opt.retr_symlinks.
11357
11358 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
11359
11360         * main.c (main): New option retr_symlinks.
11361
11362         * url.c (convert_links): Print verbose message.
11363
11364 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
11365
11366         * http.c (http_loop): Reset newloc in the beginning of function;
11367         would cause FMR in retrieve_url.
11368
11369 1996-11-23  Hrvoje Niksic  <hniksic@srce.hr>
11370
11371         * recur.c (convert_all_links): Find the URL of each HTML document,
11372         and feed it to get_urls_html; would bug out.
11373         (convert_all_links): Check for l2 instead of dl; removed dl.
11374
11375         * url.c (convert_links): Don't refer to freed newname.
11376
11377         * recur.c (recursive_retrieve): Add this_url to urls_downloaded.
11378
11379         * main.c (main): Print the OS_TYPE in the debug output, too.
11380
11381         * recur.c (recursive_retrieve): Check for opt.delete_after.
11382
11383         * main.c (main): New option delete-after.
11384
11385         * init.c (setval): Cleaned up.
11386
11387 1996-11-21  Hrvoje Niksic  <hniksic@srce.hr>
11388
11389         * Makefile.in (wget): Make `wget' the default target.
11390
11391         * ftp.c (ftp_loop_internal): Move noclobber checking out of the
11392         loop.
11393         (ftp_retrieve_list): Warn about non-matching sizes.
11394
11395         * http.c (http_loop): Made -nc non-dependent on opt.recursive.
11396
11397         * init.c (setnum): Renamed from setnuminf; New argument flags.
11398         (setval): Use it.
11399
11400         * main.c (main): Sorted the options.
11401         (main): New option --wait.
11402
11403 1996-11-21  Shawn McHorse  <riffraff@txdirect.net>
11404
11405         * html.c (htmlfindurl): Reset s->in_quote after getting out of
11406         quotes.
11407
11408 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
11409
11410         * version.c: Changed version to 1.4.2.
11411
11412 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
11413
11414         * version.c: Released 1.4.1.
11415
11416         * html.c (html_quote_string): New function.
11417         (ftp_index): Use it.
11418         (htmlfindurl): A more gentle ending debug message.
11419
11420         * ftp.c (ftp_loop): Check for opt.htmlify.
11421
11422         * init.c: New command htmlify.
11423
11424         * ftp.c (getftp): Nicer error messages, with `'-encapsulated
11425         strings.
11426         (ftp_loop): Print size of index.html.
11427
11428         * init.c (setval): Implement "styles".
11429
11430         * main.c (main): New option dotstyle.
11431
11432 1996-11-19  Hrvoje Niksic  <hniksic@srce.hr>
11433
11434         * ftp.c (getftp): Close the master socket in case of errors, after
11435         bindport().
11436
11437         * connect.c (bindport): Initialize msock to -1.
11438
11439         * ftp.c (getftp): Initialize dtsock to -1.
11440
11441         * connect.c (closeport): Don't close sock if sock == -1.
11442
11443 1996-11-18  Hrvoje Niksic  <hniksic@srce.hr>
11444
11445         * init.c (setnuminf): Nuked default value -- just leave unchanged.
11446         (setval): Don't send default values.
11447         (defaults): Use DEFAULT_TIMEOUT -- aaargh.
11448
11449         * options.h (struct options): Use long for dot_bytes.
11450
11451         * init.c (setquota): Renamed to setbytes.
11452         (setval): Use setbytes on DOTBYTES.
11453
11454 1996-11-17  Hrvoje Niksic  <hniksic@srce.hr>
11455
11456         * ftp.c (getftp): Initialize con->dltime.
11457
11458         * recur.c (recursive_retrieve): Use same_host instead of
11459         try_robots; simply load robots_txt whenever the host is changed.
11460         (recursive_retrieve): Free forbidden before calling parse_robots.
11461
11462 1996-11-16  Hrvoje Niksic  <hniksic@srce.hr>
11463
11464         * retr.c (show_progress): Use them.
11465
11466         * options.h (struct options): New options dot_bytes, dots_on_line
11467         and dot_spacing.
11468
11469 1996-11-16  Mark Boyns  <boyns@sdsu.edu>
11470
11471         * recur.c (recursive_retrieve): Retrieve directories regardless of
11472         acc/rej rules; check for empty u->file.
11473
11474 1996-11-14  Hrvoje Niksic  <hniksic@srce.hr>
11475
11476         * init.c (setval): Use it.
11477
11478         * utils.c (merge_vecs): New function.
11479
11480         * init.c (setval): Reset the list-type functions when encountering
11481         "".
11482
11483 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
11484
11485         * recur.c (recursive_retrieve): Use base_url instead of this_url
11486         for no_parent.
11487
11488 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
11489
11490         * html.c (htmlfindurl): Reset s->in_quote after exiting the quote.
11491
11492 1996-11-13  Hrvoje Niksic  <hniksic@srce.hr>
11493
11494         * utils.c (sepstring): Rewrote; don't use strtok.
11495
11496         * recur.c (recursive_retrieve): Enter assorted this_url to slist
11497         when running the first time.
11498         (retrieve_robots): Warn to ignore errors when robots are loaded.
11499
11500         * utils.c (load_file): Moved from url.c.
11501
11502         * http.c: Made static variables const too in h* functions.
11503
11504         * main.c (main): Renamed --continue-ftp to --continue.
11505
11506         * recur.c (recursive_retrieve): Use it.
11507
11508         * utils.c (frontcmp): New function.
11509
11510         * url.c (accdir): New function.
11511
11512         * html.c (htmlfindurl): Recognize <area href=...>.
11513
11514         * ftp.c (ftp_retrieve_dirs): Implemented opt.includes.
11515
11516         * init.c (setval): Free the existing opt.excludes and
11517         opt.includes, if available.
11518
11519         * main.c (main): New option -I.
11520
11521 1996-11-12  Hrvoje Niksic  <hniksic@srce.hr>
11522
11523         * ftp.c (ftp_retrieve_glob): Do not weed out directories.
11524
11525         * version.c: Changed version to 1.4.1.
11526
11527 1996-11-11  Hrvoje Niksic  <hniksic@srce.hr>
11528
11529         * version.c: Released 1.4.0.
11530
11531 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
11532
11533         * main.c (main): Free com and val after parse_line.
11534         (printhelp): Reorder the listing.
11535
11536         * http.c: More robust header parsing.
11537
11538         * http.c: Allow any number of spaces, or no spaces, precede ':'.
11539         (hskip_lws): New function.
11540         (haccepts_bytes): New function.
11541         (gethttp): Use it.
11542
11543         * init.c (setval): Check header sanity.
11544         (setval): Allow resetting of headers.
11545
11546 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
11547
11548         * http.c (http_loop): Don't use has_wildcards.
11549
11550         * http.c (gethttp): Free all_headers -- would leak.
11551
11552         * recur.c (recursive_retrieve): Initialize depth to 1 instead of
11553         0 -- this fixes a long-standing bug in -rl.
11554
11555 1996-11-09  Hrvoje Niksic  <hniksic@srce.hr>
11556
11557         * ftp.c: Use -1 as "impossible" value for con->fd.
11558
11559         * url.h (URL_SEPARATOR): Don't treat `*' and `+' as separators.
11560
11561         * init.c (parse_line): Use isalpha.
11562
11563         * ftp-unix.c: Use HAVE_UNISTD_H.
11564
11565         * mtch.c (has_wildcards): Don't match \.
11566
11567         * http.c (http_loop): Warn on HTTP wildcard usage.
11568
11569 1996-11-08  Hrvoje Niksic  <hniksic@srce.hr>
11570
11571         * url.c (url_filename): Do not create numbered suffixes if
11572         opt.noclobber -- would bug out on -nc.
11573
11574 1996-11-07  Hrvoje Niksic  <hniksic@srce.hr>
11575
11576         * recur.c (parse_robots): Don't chuck out the commands without
11577         arguments (`Disallow:<empty>' didn't work).
11578         (parse_robots): Compare versions lowercase.
11579         (parse_robots): Match on base_version, not version_string!
11580         (parse_robots): Handle comments properly.
11581         (parse_robots): Match versions in a sane way.
11582
11583         * init.c: Print nicer error messages.
11584
11585         * version.c: Changed version to 1.4.0.
11586
11587 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
11588
11589         * version.c: Released 1.4.0-test2.
11590
11591         * init.c (run_wgetrc): Close fp.
11592
11593         * ftp.c (ftp_retrieve_dirs): Allocate the correct length for
11594         u->dir.
11595
11596 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
11597
11598         * init.c (setquota): Allow inf as quota specification.
11599
11600 1996-11-05  Hrvoje Niksic  <hniksic@srce.hr>
11601
11602         * ftp.c (ftp_retrieve_dirs): Return QUOTEXC if quota exceeded.
11603         (ftp_retrieve_glob): Return QUOTEXC on quota exceeded.
11604
11605         * main.c (main): Check for quota by comparison with downloaded
11606         stuff, not from status.
11607
11608         * connect.c (select_fd): Should compile on HPUX without warnings now.
11609
11610         * ftp.c (ftp_get_listing): Check whether ftp_loop_internal
11611         returned RETROK.
11612
11613 1996-11-04  Hrvoje Niksic  <hniksic@srce.hr>
11614
11615         * ftp.c (ftp_retrieve_glob): Print the pattern nicely.
11616         (getftp): Return FTPRETRINT on control connection error.
11617
11618         * html.c (htmlfindurl): Recognize <embed src=...> and
11619         <bgsound src=...>.
11620         (ftp_index): Handle username and password correctly.
11621
11622         * main.c (main): Made `-np' a synonim for --no-parent.
11623
11624 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
11625
11626         * ftp.c (ftp_loop): Check for opt.ftp_glob too before calling
11627         ftp_retrieve_glob.
11628
11629         * version.c: Changed version to 1.4.0-test2.
11630
11631 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
11632
11633         * version.c: Released 1.4.0-test1.
11634
11635         * url.c (str_url): Don't use sprintf when creating %2F-prefixed
11636         directory.
11637         (convert_links): Removed definition of make_backup.
11638
11639         * http.h: Removed definition of MAX_ERROR_LENGTH.
11640
11641         * host.c (ftp_getaddress): Check for "(none)" domains.
11642
11643         * ftp.c (ftp_retrieve_dirs): Docfix.
11644
11645         * http.c (gethttp): Use ou->referer instead of u->referer.
11646
11647         * retr.c (retrieve_url): Reset u to avoid freeing pointers twice;
11648         this was known to cause coredumps on Linux.
11649
11650         * html.c (ftp_index): Cast the argument to local_time to time_t *.
11651
11652 1996-11-01  Hrvoje Niksic  <hniksic@srce.hr>
11653
11654         * connect.c (select_fd): Use exceptfds -- once and for all.
11655
11656         * retr.c (retrieve_from_file): Free filename after
11657         recursive_retrieve.
11658         (retrieve_from_file): Send RFIRST_TIME to recursive_retrieve on
11659         first-time retrieval.
11660         (retrieve_from_file): Return uerr_t; new argument, count.
11661         (retrieve_from_file): Break on QUOTEXC.
11662
11663         * init.c (setquota): Fixed a bug that caused rejection of
11664         non-postfixed values..
11665
11666 1996-10-30  Hrvoje Niksic  <hniksic@srce.hr>
11667
11668         * version.c: Changed name to wget.
11669
11670         * connect.c (iread): Smarter use of select.
11671         (select_fd): Set errno on timeout.  If not timeout, return 1
11672         instead of 0.
11673
11674 1996-10-29  Hrvoje Niksic  <hniksic@srce.hr>
11675
11676         * ftp.c (ftp_loop_internal): Don't use con->cmd before
11677         establishing it.
11678
11679 1996-10-26  Hrvoje Niksic  <hniksic@srce.hr>
11680
11681         * http.c (gethttp): Send correct referer when using proxy.
11682         (gethttp): Use struct urlinfo ou to access the relevant data; send
11683         correct authorization in all cases.
11684
11685         * host.c (same_host): Use skip_uname to skip username and
11686         password.
11687
11688         * url.c (skip_uname): New function.
11689         (parseurl): Use it.
11690
11691         * host.c (same_host): Do not assume HTTP -- same_host should now
11692         be totally foolproof.
11693
11694         * url.c (skip_proto): New function.
11695         (parse_uname): Use it.
11696
11697         * http.c (gethttp): Create local user and passwd from what is
11698         given.
11699
11700         * url.c (parseurl): Check for HTTP username and password too.
11701
11702 1996-10-25  Hrvoje Niksic  <hniksic@srce.hr>
11703
11704         * config.h.in: Removed #define gethostbyname R...
11705
11706 1996-10-22  Hrvoje Niksic  <hniksic@srce.hr>
11707
11708         * version.c: Changed version to 1.4.0-test1.
11709
11710 1996-10-21  Hrvoje Niksic  <hniksic@srce.hr>
11711
11712         * version.c: "Released" 1.4b29.
11713
11714         * recur.c (recursive_retrieve): Check for no_parent.
11715
11716         * init.c (setval): Option update.
11717
11718         * main.c (main): New option no-parent.
11719
11720         * options.h (struct options): New variable no_parent.
11721
11722         * recur.c (recursive_retrieve): Only files are checked for
11723         opt.accepts and opt.rejects.
11724         (recursive_retrieve): Check directories for opt.excludes.
11725         (recursive_retrieve): Make the dir absolute when checking
11726         opt.excludes.
11727
11728         * html.c (htmlfindurl): Recognize <applet code=...> and <script
11729         src=...>
11730
11731 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
11732
11733         * ftp.c (getftp): Do not line-break assert entries at all.
11734         (ftp_retrieve_dirs): docfix.
11735
11736         * connect.c (select_fd): Use fd + 1 as nfds.
11737
11738         * version.c: Changed version to 1.4b29.
11739
11740 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
11741
11742         * version.c: "Released" 1.4b28.
11743
11744         * ftp.c (ftp_loop_internal): Check whether f->size == len and
11745         don't continue the loop if it is.
11746         (ftp_get_listing): Remove list_filename on unsuccesful loop.
11747
11748 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
11749
11750         * ftp.c (ftp_loop_internal): Use strcpy to initialize tmp.
11751         (getftp): Do not use multiline assert.
11752
11753         * http.c (hparsestatline): Use mjr and mnr instead of major and
11754         minor, which don't compile on Ultrix.
11755         (http_loop): Use strcpy() to initialize tmp.
11756
11757         * all: Geturl -> Fetch
11758
11759 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
11760
11761         * recur.c (parse_robots): Fixed an off-by-one bug when looking for
11762         ':'.
11763
11764         * html.c (htmlfindurl): Fixed several possible off-by-one bugs by
11765         moving `bufsize &&' to the beginning of each check in for-loops.
11766
11767         * recur.c (parse_robots): Close fp on exit.
11768
11769         * url.c (mymkdir): Check for each directory before creating.
11770
11771 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
11772
11773         * version.c: Changed version to 1.4b28.
11774
11775 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
11776
11777         * version.c: "Released" 1.4b27.
11778
11779         * init.c (parse_line): Use isspace.
11780         (parse_line): Free *com on all errors.
11781
11782         * ftp.c (ftp_loop): Change FTPOK to RETROK before exiting.
11783         (delelement): Use next instead of f->next and prev instead of
11784         f->prev.
11785         (delelement): Free the members of the deleted element.
11786
11787         * http.c (http_loop): Do not return RETROK on code != 20x.
11788
11789         * init.c (cleanup): Free opt.user_header.
11790         (cleanup): Free opt.domains.
11791
11792         * url.c (freelists): Moved to cleanup().
11793
11794         * http.c (hparsestatline): Docfix.
11795
11796         * main.c (main): Return with error status on unsuccesful
11797         retrieval.
11798
11799         * init.c (setval): Do not remove listing when mirroring.
11800
11801         * url.c (url_filename): Use opt.fileprefix.
11802
11803         * ftp.c (ftp_get_listing): Use url_filename to get filename for
11804         .listing.
11805
11806         * main.c (main): New option: -rn.
11807
11808 1996-10-15  Hrvoje Niksic  <hniksic@srce.hr>
11809
11810         * Makefile.in (RM): Added RM = rm -f.
11811
11812         * host.c (clean_hosts): New function.
11813         (free_hlist): Just free the list, no reset.
11814
11815         * version.c: Changed version to 1.4b27.
11816
11817 1996-10-13  Hrvoje Niksic  <hniksic@srce.hr>
11818
11819         * version.c: "Released" 1.4b26.
11820
11821         * retr.c (retrieve_from_file): If call get_urls_html with
11822         opt.spider to make it silent in spider mode.
11823
11824         * url.c (str_url): Use CLEANDUP instead of URL_CLEANSE.
11825
11826         * url.h (CLEANDUP): New macro.
11827
11828         * http.c (gethttp): Fixed a bug that freed location only when it
11829         was NULL.
11830
11831         * retr.c (retrieve_url): Free url if it will not be stored,
11832         i.e. newloc is NULL.
11833
11834         * html.c (htmlfindurl): Handle exiting from quotes correctly; the
11835         old version would bug out on <a href="x#a"href="y">.
11836
11837         * html.h (state_t): New member in_quote.
11838
11839         * html.c (htmlfindurl): Free s->attr at the beginning of
11840         attr-loop.
11841
11842         * recur.c (recursive_retrieve): Recognize RCLEANUP.
11843         (tried_robots): Make hosts a global variable.
11844         (recursive_retrieve): Free constr after URL host optimization.
11845         (tried_robots): Free urlinfo before exiting.
11846
11847         * utils.c (free_slist): New function.
11848
11849         * recur.c (recursive_retrieve): Use flags to add cleanup
11850         possibility.
11851
11852         * main.c (main): Free filename after recursive_retrieve.
11853
11854         * http.c (gethttp): Store successful responses too.
11855
11856 1996-10-12  Hrvoje Niksic  <hniksic@srce.hr>
11857
11858         * all: Constified the whole source.  This required some minor
11859         changes in many functions in url.c, possibly introducing bugs -- I
11860         hope not.
11861
11862         * ftp-basic.c: Removed last_respline.
11863
11864         * http.c (gethttp): Free type.
11865
11866         * host.c (same_host): Free real1 and real2.
11867
11868         * main.c (main): New option --spider.
11869
11870         * retr.c (get_contents): Don't reset errno.
11871
11872         * main.c (main): Sorted the options.
11873
11874         * connect.c (iread): Set errno to ETIMEDOUT only if it was left
11875         uninitialized by select().
11876
11877         * http.c (http_loop): Print the time when the connection is
11878         closed.
11879         (gethttp): Debug-print the HTTP request.
11880
11881 1996-10-11  Hrvoje Niksic  <hniksic@srce.hr>
11882
11883         * connect.c (iread): Do not try reading after timeout.
11884
11885         * main.c (main): Would bug out on -T.
11886
11887         * connect.c (select_fd): Do not use exceptfds.
11888         (iread): Set ETIMEDOUT on select_fd <= 0.
11889
11890         * version.c: Changed version to 1.4b26.
11891
11892 1996-10-10  Hrvoje Niksic  <hniksic@srce.hr>
11893
11894         * version.c: "Released" 1.4b25.
11895
11896         * ftp-unix.c (ftp_parse_unix_ls): Ignore lines without file name
11897         or link name.
11898
11899         * http.c (gethttp): Add errcode to struct hstat.
11900         (http_loop): Use it.
11901
11902         * url.c (no_proxy_match): Simplify using char** for no_proxy.
11903
11904         * options.h (struct options): Make opt.no_proxy a vector.
11905
11906         * utils.c (sepstring): Use !*s instead of !strlen(s).
11907
11908         * init.c (setval): Set opt.maxreclevel to 0 on --mirror.
11909         (getperms): Use ISODIGIT instead of isdigit.
11910
11911         * ftp.c (getftp): Print time.
11912
11913         * main.c (main): Use legible output of downloaded quantity.
11914
11915         * ftp.c (getftp): Use elapsed_time().
11916         (ftp_loop_internal): Use rate().
11917
11918         * http.c (http_loop): Add download ratio output; Use rate().
11919
11920         * utils.c (rate): New function.
11921
11922 1996-10-09  Hrvoje Niksic  <hniksic@srce.hr>
11923
11924         * http.c (http_loop): Use timer.
11925
11926         * ftp.c: Split to ftp-basic.c and ftp.c
11927
11928         * utils.c (reset_timer): New function.
11929         (elapsed_time): New function.
11930
11931         * retr.c (show_progress): Make bytes_in_line and offs long; should
11932         work on 16-bit machines.
11933
11934 1996-10-08  Hrvoje Niksic  <hniksic@srce.hr>
11935
11936         * url.c (in_acclist): New argument backward.
11937
11938         * ftp.c (ftp_retrieve_glob): Use acceptable() to determine whether
11939         a file should be retrieved according to suffix.
11940         (ftp_get_listing): Check the return value of unlink; Do not call
11941         ftp_retrieve_dirs if depth reached maxreclevel.
11942         (ftp_retrieve_dirs): Check whether the directory is in
11943         exclude-list.
11944
11945         * main.c (main): Print the version number at the beginning of
11946         DEBUG output.
11947         (main): Use strrchr when creating exec_name.
11948
11949         * ftp.c (ftp_retrieve_glob): Do not close control connection.
11950
11951         * version.c: Changed version to 1.4b25.
11952
11953 1996-10-07  Hrvoje Niksic  <hniksic@srce.hr>
11954
11955         * version.c: "Released" 1.4b24.
11956
11957         * Makefile.in: Rewrite.
11958
11959         * ftp.c (ftp_loop_internal): Likewise.
11960
11961         * retr.c (time_str): Check for failed time().
11962
11963         * html.c (htmlfindurl): Recognize <fig src> and <overlay src> from
11964         HTML3.0.
11965
11966         * retr.c (time_str): Return time_t *.
11967
11968         * connect.c (bindport): Close msock on unsuccesful bind.
11969         (bindport): The same for getsockname and listen.
11970
11971         * retr.c (retrieve_url): Allow any number of retries on
11972         proxy.
11973
11974         * http.c (gethttp): Do not treat errno == 0 as timeout.
11975         (http_loop): Likewise.
11976         (http_loop): Cosmetic changes.
11977
11978         * connect.c (iread): Set errno to ETIMEDOUT in case of timeout.
11979
11980         * retr.c (get_contents): Reset errno.
11981
11982         * ftp.c (getftp): Minor fixes.
11983
11984 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
11985
11986         * http.c: Do not use backups.
11987
11988         * geturl.1 (WARNING): Warn that man-page could be obsolete.
11989
11990         * getopt.c (getopt_long): Moved to getopt.c
11991
11992         * geturl.texi: Enhanced.
11993
11994         * main.c (main): Use it.
11995
11996         * recur.c (convert_all_links): New function.
11997
11998         * utils.c (add_slist): New argument flags.
11999
12000         * recur.c (recursive_retrieve): Update a list of downloaded URLs.
12001         (parse_robots): Do not chuck out empty value fields.
12002         (parse_robots): Make yourself welcome on empty Disallow.
12003
12004         * version.c: Changed version to 1.4b24.
12005
12006 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
12007
12008         * version.c: "Released" 1.4b23.
12009
12010         * ftp.c (ftp_loop_internal): Get the time after getftp.
12011
12012         * Makefile.in (install.info): New target.
12013         (install): Use it.
12014
12015         * http.c (http_loop): Fix output when doing -O.
12016
12017 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
12018
12019         * geturl.texi: New file.
12020
12021         * main.c (main): Do not print the warnings and download summary if
12022         opt.quiet is set.
12023
12024         * version.c: Changed version to 1.4b23.
12025
12026 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
12027
12028         * "Released" 1.4b22.
12029
12030         * atotm.c (atotm): Use True and False instead of TRUE and FALSE,
12031         to avoid redefinition warnings.
12032
12033         * host.c (store_hostaddress): Use memcpy() to copy the address
12034         returned by inet_addr.
12035
12036         * version.c: Changed version to 1.4b22.
12037
12038 1996-10-04  Hrvoje Niksic  <hniksic@srce.hr>
12039
12040         * version.c: "Released" 1.4b21.
12041
12042         * ftp-unix.c (ftp_parse_ls): Renamed to ftp_parse_unix_ls.
12043
12044         * ftp.c (ftp_port): Use conaddr.
12045         (getftp): Print the file length.
12046         (ftp_retrieve_list): Check the stamps of plain files only.
12047
12048         * connect.c (closeport): Do not call shutdown().
12049         (conaddr): New function.
12050
12051         * html.c (ftp_index): Made it dfp-aware.
12052
12053         * init.c (cleanup): New name of freemem. Close opt.dfp.
12054
12055         * ftp.c (getftp): Use opt.dfp if it is set.
12056
12057         * ftp-unix.c (ftp_parse_ls): Recognize time in h:mm format.
12058
12059         * ftp.c (ftp_retrieve_dirs): Fixed a bug that caused incorrect
12060         CWDs to be sent with recursive FTP retrievals.
12061
12062 1996-10-03  Hrvoje Niksic  <hniksic@srce.hr>
12063
12064         * recur.c (parse_robots): Made it more compliant with "official"
12065         specifications.
12066
12067         * http.c: New function.
12068
12069         * ftp-unix.c (ftp_parse_ls): Added better debug output.
12070
12071         * ftp.c (getftp): Print out the LIST in case of
12072         opt.print_server_response.
12073
12074         * version.c: Changed version to 1.4b21.
12075
12076 1996-10-01  Hrvoje Niksic  <hniksic@srce.hr>
12077
12078         * version.c: "Released" 1.4b20.
12079
12080         * README: Update.
12081
12082         * http.c (gethttp): Preset lengths of various headers instead of
12083         calculating them dynamically.
12084         (gethttp): Check for 206 partial contents.
12085
12086 1996-09-30  Hrvoje Niksic  <hniksic@srce.hr>
12087
12088         * configure.in: Set SYSTEM_GETURLRC to $libdir/geturlrc
12089
12090         * http.c (gethttp): Send the port number in the Host: header.
12091
12092 1996-09-29  Hrvoje Niksic  <hniksic@srce.hr>
12093
12094         * http.c (gethttp): Send host: header.
12095         (gethttp): Add the possibility of user-defined headers.
12096         (gethttp): Move decision about pragma: no-cache to http_loop,
12097         where it belongs.
12098         (gethttp): Pass a struct instead of enormous argument list.
12099         (http_loop): Use a new, fancier display format.
12100         (ftp_loop): Likewise.
12101
12102         * main.c: (hangup): Turn off buffering of the new log file.
12103
12104         * install-sh: Likewise.
12105
12106         * config.sub: Replace with the one in autoconf-2.10
12107
12108         * geturl.1: Update.
12109
12110         * init.c: New options httpuser and httppasswd.
12111
12112         * http.c: (base64_encode_line): New function.
12113         (gethttp): Send authentication.
12114
12115         * connect.c (make_connection): Use store_hostaddress.
12116
12117 1996-09-28  Hrvoje Niksic  <hniksic@srce.hr>
12118
12119         * host.c (store_hostaddress): New function.
12120
12121         * NEWS: Update.
12122
12123         * http.c (hgetrange): New function.
12124         (gethttp): Use ranges.
12125
12126         * utils.c (numdigit): Accept long instead of int.
12127
12128         * http.c (http_loop): Add restart capabilities.
12129
12130         * ftp.c (ftp_retrieve_glob): Fixed a bug that could cause matchres
12131         being used uninitialized.
12132         (ftp_retrieve_list): Similar fix.
12133
12134         * host.c (add_hlist): Fixed a bug that could cause cmp being used
12135         uninitialized.
12136
12137         * url.c (construct_relative): New function.
12138
12139         * recur.c (recursive_retrieve): Use it.
12140
12141         * retr.c (convert_links): New function.
12142
12143 1996-09-27  Hrvoje Niksic  <hniksic@srce.hr>
12144
12145         * url.c (free_urlpos): New function.
12146
12147         * recur.c (recursive_retrieve): Adapt.
12148
12149         * url.c (get_urls_html): Return a linked list instead of a vector.
12150
12151         * url.c (get_urls_file): Return a linked list instead of a vector.
12152
12153         * geturl.1: Update.
12154
12155         * http.c (gethttp): Implement it.
12156
12157         * init.c (setval): New option: SAVEHEADERS
12158
12159         * ftp.c (ftp_loop_internal): Do not set restval if listing is to
12160         be retrieved. Lack of this test caused bugs when the connection
12161         was lost during listing.
12162
12163         * retr.c (retrieve_url): Fixed a bug that caused
12164         coredumps. *newloc is now reset by default.
12165         (retrieve_url): Lift the twenty-tries limit on proxies.
12166
12167         * version.c: Changed version to 1.4b20.
12168
12169 1996-09-20  Hrvoje Niksic  <hniksic@srce.hr>
12170
12171         * version.c: "Released" 1.4b19.
12172
12173 1996-09-19  Hrvoje Niksic  <hniksic@srce.hr>
12174
12175         * ftp.c (ftp_loop_internal): Renamed from ftp_1fl_loop.
12176         (getftp): Changed prototype to accept ccon *.
12177
12178 1996-09-17  Hrvoje Niksic  <hniksic@srce.hr>
12179
12180         * ftp.c (ftp_retrieve_list): Fixed a bug that caused setting
12181         incorrect values to files pointed to by symbolic links.
12182         (ftp_1fl_loop): Do not count listings among the downloaded URL-s.
12183
12184 1996-09-16  Hrvoje Niksic  <hniksic@srce.hr>
12185
12186         * url.c (mkstruct): Do not prepend "./" in front of a pathname.
12187
12188         * main.c (main): New option: --user-agent.
12189
12190         * geturl.1: Ditto.
12191
12192         * init.h: Ditto.
12193
12194         * init.c (setval): Ditto.
12195
12196         * main.c (main): Rename "server-headers" to "server-response".
12197
12198         * ftp-unix.c (ftp_parse_ls): Check for asterisks at the end of
12199         executables in 'ls -F' listings.
12200
12201 1996-09-15  Hrvoje Niksic  <hniksic@srce.hr>
12202
12203         * url.c (parseurl): Remove realloc() and sprintf().
12204         (str_url): Get rid of sprintf().
12205
12206         * recur.c (recursive_retrieve): Enable FTP recursion through proxy
12207         servers.
12208
12209         * url.h (URL_CLEANSE): Made it else-resistant.
12210         (USE_PROXY): New macro.
12211
12212 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
12213
12214         * NEWS: Update.
12215
12216         * version.c: Changed version to 1.4b19.
12217
12218 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
12219
12220         * version.c: "Released" 1.4b18.
12221
12222         * url.c: Made it reallocate space exponentially.
12223
12224 1996-09-14  Drazen Kacar  <dave@fly.cc.fer.hr>
12225
12226         * html.c (htmlfindurl): Added <frame src> and <iframe src> among
12227         the list of stuff to fetch.
12228
12229 1996-09-13  Hrvoje Niksic  <hniksic@srce.hr>
12230
12231         * url.c (get_urls_html): Fixed a bug that caused SIGSEGV's with
12232         -Fi.
12233
12234         * html.c (htmlfindurl): Rewrite.
12235
12236         * http.c (gethttp): Use opt.proxy_cache.
12237
12238         * main.c (main): Added --cache option.
12239
12240         * ftp.c (ftp_response): Print server response if opt.print_server
12241         response is set.
12242         (getftp): Print newlines after each request if the server response
12243         is to be printed.
12244         (ftp_response): Copy the last response line to last_respline.
12245
12246         * http.c (gethttp): Add Pragma: nocache for retried
12247         proxy-retrievals.
12248
12249         * ftp.c (getftp): Use it.
12250
12251         * retr.c (buf_discard): New function.
12252
12253         * ftp.c (ftp_response): Use buf_readchar().
12254         (getftp): Flush the control connection buffer before calling
12255         get_contents().
12256
12257         * retr.c (buf_readchar): New function.
12258         (buf_flush): New function.
12259         (get_contents): Use buf_readchar() instead of read(x, x, 1).
12260         (get_contents): Use buf_flush.
12261
12262 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
12263
12264         * ftp.c: Incorporate changes to ftp_response.
12265
12266         * ftp.c (ftp_response): Allocate the server response dynamically,
12267         as in read_whole_line and fetch_next_header.
12268
12269         * utils.c (read_whole_line): Fixed a bug that prevented reading
12270         the last line if it is not \n-terminated. Also fixed a possible
12271         memory overflow.
12272
12273         * http.c (fetch_next_header): Return malloc-ed string as large as
12274         needed.
12275         (gethttp): Use new fetch_next_header.
12276
12277 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
12278
12279         * http.c (hgetlen): Compute the header length the first time only.
12280         (hgettype): Ditto.
12281         (hgetlocation): Ditto.
12282         (hgetmodified): Ditto.
12283
12284 1996-09-11  Hrvoje Niksic  <hniksic@srce.hr>
12285
12286         * sample.geturlrc: Update.
12287
12288 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
12289
12290         * http.c (http_loop): Ditto.
12291
12292         * ftp.c (getftp): Open the output file as binary.
12293
12294         * version.c: Changed version to 1.4b18.
12295
12296 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
12297
12298         * version.c: "Released" 1.4b17.
12299
12300         * ftp-unix.c (ftp_parse_ls): If unable to open file, return NULL
12301         instead of failed assertion.
12302
12303 1996-09-09  Hrvoje Niksic  <hniksic@srce.hr>
12304
12305         * ftp.c (ftp_get_listing): Add a numbered suffix to LIST_FILENAME
12306         if a file of that name already exists.
12307
12308 1996-09-05  Hrvoje Niksic  <hniksic@srce.hr>
12309
12310         * ftp.c (ftp_1fl_loop): Handler FTPPORTERR and FOPENERR correctly.
12311
12312         * config.h.in: Define gethostbyname as Rgethostbyname when using
12313         Socks.
12314
12315         * configure.in: Check for -lresolv if using Socks.
12316
12317         * version.c: Changed version to 1.4b17.
12318
12319 1996-07-15  Hrvoje Niksic  <hniksic@srce.hr>
12320
12321         * version.c: "Released" 1.4b16.
12322
12323         * http.c (gethttp): More intelligent check for first line of HTTP
12324         response.
12325         (gethttp): Would bug out on time-stamping.
12326
12327         * version.c: Changed version to 1.4b16.
12328
12329 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
12330
12331         * version.c: Released 1.4b15.
12332
12333         * http.c (http_loop): Print \n after the loop entry, not before.
12334
12335         * url.c (url_filename): Use ISDOT.
12336
12337         * url.h (ISDOT): New macro.
12338
12339         * recur.c (recursive_retrieve): Change only opt.recursive for
12340         following FTP.
12341
12342 1996-07-11  Antonio Rosella <antonio.rosella@agip.it>
12343
12344         * socks/geturl.cgi: Fixed version No.
12345
12346         * socks/download-netscape.html: Ditto.
12347
12348         * socks/download.html: Changed socks.html to download.html.
12349
12350 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
12351
12352         * url.c (url_filename): Check for opt.dirstruct instead for
12353         opt.recursive && opt.dirstruct.
12354
12355         * init.c (defaults): Ditto.
12356         (defaults): Reset dirstruct by default.
12357         (setval): Set opt.dirstruct whenever setting recursive.
12358
12359         * init.h: Removed FORCEDIRHIER.
12360
12361         * INSTALL: Added -L to socks-description.
12362
12363         * version.c: Changed version to 1.4b15.
12364
12365 1996-07-10  Hrvoje Niksic  <hniksic@srce.hr>
12366
12367         * version.c: "Released" 1.4b14.
12368
12369         * geturl.1: Update AUTHOR to include Rosella as contributor.
12370
12371         * NEWS: Update.
12372
12373         * socks/geturl.cgi: Simplified command creation, nuked <blink>.
12374
12375         * socks/geturl.cgi: Wrap nutscape extensions within if $netscape.
12376         (cal_time): Fix == to eq.
12377
12378         * socks/geturl.cgi: GPL-ized with permission of A. Rosella.
12379
12380         * geturl.1 (hostname): Moved URL CONVENTIONS to the beginning.
12381
12382         * Makefile.in: Use @VERSION@.
12383
12384         * configure.in: Check version from version.c.
12385
12386         * socks/geturl.cgi: Changed /pub/bin/perl to /usr/bin/perl.
12387
12388         * socks/download.html: Created from download-netscape.html, made
12389         HTML-2.0 compliant.
12390
12391         * recur.c (recursive_retrieve): Set opt.force_dir_hier when
12392         following FTP links from recursions.
12393
12394 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
12395
12396         * url.c (mymkdir): Fixed a bug that prevented mymkdir() to create
12397         absolute directories correctly.
12398
12399         * version.c: Changed version to 1.4b14.
12400
12401 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
12402
12403         * version.c: "Released" 1.4b13.
12404
12405         * url.c (make_backup): New function.
12406
12407         * http.c (http_loop): Make a backup copy of the local file (using
12408         rename(2)) before opening it.
12409
12410         * main.c (main): Added --backups.
12411
12412         * host.c (ftp_getaddress): Bail out on failed mycuserid().
12413         (ftp_getaddress): Check for leading dot on MY_DOMAIN.
12414         (ftp_getaddress): Check for empty, null or (null) domain.
12415
12416         * url.c (get_urls_html): If this_url is NULL, the base must have a
12417         protocol.
12418         (parseurl): Use has_proto.
12419
12420         * retr.c (retrieve_url): Warn when proxy is used with more than 20
12421         retries.
12422
12423         * url.c (mkstruct): Create the directory (calling mymkdir()) only
12424         if it is not already there.
12425         (has_proto): New function.
12426         (get_urls_html): Eliminate the remaining call to findurl -- use
12427         has_proto.
12428
12429         * geturl.1: Ditto.
12430
12431         * main.c: Change -X to -x.
12432
12433         * url.c (url_filename): Simplify creation of filename if
12434         prefix_files is set.
12435         (url_filename): Simplify everything. And I do mean *everything*.
12436         (mkstruct): Add dir_prefix before hostname.
12437         (path_simplify): Fixed a bug that caused writing outside the path
12438         string in case of "." and ".." path strings.
12439
12440 1996-07-06  Hrvoje Niksic  <hniksic@srce.hr>
12441
12442         * init.c: Added --mirror.
12443
12444         * main.c (main): Added -X to force saving of directory hierarchy.
12445
12446         * ftp.c (ftp_retrieve_list): Added recursion depth counter.
12447         (ftp_retrieve_list): Check whether quota is exceeded.
12448
12449         * url.c (get_urls_html): Skip leading blanks for absolute URIs.
12450
12451         * http.c (gethttp): Use referer if present.
12452
12453         * recur.c (recursive_retrieve): Set u->referer before calling
12454         retrieve_url.
12455
12456         * url.c (newurl): Use memset to nullify the struct members.
12457         (freeurl): Free the referer field too.
12458
12459         * url.h: Added referer to urlinfo.
12460
12461         * geturl.1: Updated the manual to document some of the new features.
12462
12463         * utils.c (numdigit): Moved from url.c.
12464
12465         * README: Rewritten.
12466
12467         * config.h.in: Add the support for socks.
12468
12469         * configure.in: Add the support for socks.
12470
12471         * url.c (url_filename): If the dir_prefix is ".", work with just
12472         the file name.
12473         (url_filename): Do not look for .n extensions if timestamping if
12474         turned on.
12475
12476         * retr.c (show_progress): Skip the over-abundant restval data, and
12477         print the rest of it with ',' instead of '.'.
12478
12479 1996-07-05  Hrvoje Niksic  <hniksic@srce.hr>
12480
12481         * retr.c (show_progress): Changed second arg. to long (as it
12482         should be).
12483         (show_progress): Moved to retr.c.
12484         (get_contents): Moved to retr.c.
12485
12486         * version.c: Change version to 1.4b13.
12487
12488 1996-07-05  Hrvoje Lacko <hlacko@fly.cc.fer.hr>
12489
12490         * url.c (in_acclist): Would return after the first suffix.
12491
12492 1996-07-04  Hrvoje Niksic  <hniksic@srce.hr>
12493
12494         * version.c: "Released" 1.4b12.
12495
12496         * url.c (path_simplify): More kludgifications.
12497         (get_urls_html): Use new parameters for htmlfindurl.
12498
12499         * html.c: Removed memorizing "parser states", since the new
12500         organization does not require them.
12501
12502         * init.c (run_geturlrc): Use read_whole_line.
12503
12504         * ftp-unix.c (ftp_parse_ls): Use read_whole_line.
12505
12506         * recur.c (parse_robots): Use read_whole_line.
12507
12508         * utils.c (read_whole_line): New function.
12509
12510         * recur.c (tried_robots): Use add_slist/in_slist, *much* cleaner.
12511
12512         * host.c (ngethostbyname): Call inet_addr just once. Yet to be
12513         tested on OSF and Ultrix.
12514         (add_hlist): New function.
12515         (free_hlist): New function.
12516         (search_host): New function.
12517         (search_address): New function.
12518         (realhost): Use search_host, search_address and add_hlist.
12519         (same_host): Replaced realloc() with strdupdelim(), made
12520         case-insensitive, fixed a memory leak.
12521
12522         * html.c (ftp_index): Fixed tm_min and tm_sec to be tm_hour and
12523         tm_min, like intended.
12524
12525         * version.c: Change user agent information to
12526         Geturl/version.
12527
12528 1996-07-03  Hrvoje Niksic  <hniksic@srce.hr>
12529
12530         * utils.c: Renamed nmalloc.c to utils.c, .h likewise.
12531
12532         * url.c (acceptable): Always accept directories.
12533
12534         * ftp-unix.c (ftp_parse_ls): Support brain-damaged "ls -F"-loving
12535         servers by stripping trailing @ from symlinks and trailing / from
12536         directories.
12537
12538         * ftp.c (ftp_loop): Debugged the "enhanced" heuristics. :-)
12539
12540         * url.c (skip_url): Use toupper instead of UCASE.
12541
12542         * host.c (sufmatch): Made it case-insensitive.
12543
12544         * url.c (match_backwards_or_pattern): Fixed i == -1 to j == -1.
12545         (match_backwards): New function, instead of
12546         match_backwards_or_pattern.
12547
12548         * recur.c (recursive_retrieve): Increased performance by
12549         introducing inl, which reduces number of calls to in_slist to only
12550         one.
12551
12552         * ftp.c (ftp_loop): Enhanced the heuristics that decides which
12553         routine to use.
12554
12555         * main.c (printhelp): Removed the warranty stuff.
12556
12557 1996-07-02  Hrvoje Niksic  <hniksic@srce.hr>
12558
12559         * url.c (add_slist): Simplify.
12560         (match_backwards_or_pattern): New function.
12561         (in_acclist): Use match_backwards_or_pattern.
12562         (matches): Remove.
12563
12564 1996-06-30  Hrvoje Niksic  <hniksic@srce.hr>
12565
12566         * ftp.c (ftp_loop): Call ftp_index on empty file names, if not
12567         recursive.
12568
12569         * html.c (ftp_index): Fixed to work. Beautified the output.
12570
12571         * ftp.c (ftp_retrieve_glob): Another argument to control whether
12572         globbing is to be used.
12573         (ftp_retrieve_list): Compare the time-stamps of local and remote
12574         files to determine whether to download.
12575
12576 1996-06-29  Hrvoje Niksic  <hniksic@srce.hr>
12577
12578         * ftp.c (rel_constr): New function.
12579
12580         * retr.c (retrieve_from_file): Check for text/html before
12581         retrieving recursively.
12582
12583         * main.c (main): Check whether the file is HTML before going into
12584         recursive HTML retrieving.
12585
12586         * ftp.c (ftp_retrieve_list): Manage directories.
12587         (ftp_retrieve_glob): Pass all the file-types to ftp_retrieve_list.
12588         (ftp_1fl_loop): Fixed a bug that caused con->com to be incorrectly
12589         initialized, causing bugchecks in getftp to fail.
12590
12591         * configure.in: Check for symlink.
12592
12593         * ftp.c (ftp_retrieve_list): Added support for symlinks.
12594
12595         * version.c: "Released" 1.4b10.
12596
12597         * atotm.c (atotm): Redeclared as time_t.
12598
12599         * init.c: New variable "timestamping".
12600
12601         * main.c (main): New option 'N'.
12602
12603         * http.c (hgetlocation): Case-insensitive match.
12604         (hgetmodified): New function.
12605         (http_loop): Implement time-stamping.
12606
12607 1996-06-28  Hrvoje Niksic  <hniksic@srce.hr>
12608
12609         * version.c: Changed version to 1.4b10
12610
12611         * atotm.c: New file, from phttpd.
12612
12613         * options.h (struct options): New parameter timestamping.
12614
12615         * version.c: 1.4b9 "released".
12616
12617         * recur.c (recursive_retrieve): Used linked list (ulist) for
12618         faster storing of URLs.
12619
12620         * url.c (get_urls_html): Removed the old kludge with comparing the
12621         outputs of htmlfindurl and findurl.
12622         (get_urls_html): Added better protocol support here.
12623         (create_hash): Removed, as well as add_hash and in_hash.
12624         (addslist): New function.
12625         (in_slist): ditto
12626
12627         * version.c: Released 1.4b8, changed version to b9.
12628
12629 1996-06-27  Hrvoje Niksic  <hniksic@srce.hr>
12630
12631         * ftp.c (freefileinfo): New function.
12632         (delelement): New function.
12633
12634         * everywhere: GPL!
12635
12636         * ftp.c (ftp_loop): Use ccon.
12637         (ftp_retrieve_glob): Likewise.
12638
12639         * ftp.h: Define ccon, to define status of control connection.
12640
12641         * ftp.c (ftp_get_listing): New function.
12642         (ftp_retrieve_more): New function.
12643         (ftp_retrieve_glob): New function.
12644
12645 1996-06-25  Hrvoje Niksic  <hniksic@srce.hr>
12646
12647         * configure.in: Removed the search for cuserid().
12648
12649         * init.c (getmode): Renamed to getperms.
12650
12651 1996-06-24  Hrvoje Niksic  <hniksic@srce.hr>
12652
12653         * version.c: New version.
12654
12655         * main.c (hangup): New function, that handles hangup. Hangup
12656         signal now causes geturl to stop writing on stdout, and to write
12657         to a log file.
12658
12659         * ftp.c (getftp): "Released" 1.4b7.
12660
12661         * html.c (htmlfindurl): Ignore everything inside <head>...</head>.
12662         (ftp_index): Use fileinfo/urlinfo.
12663
12664         * ftp-unix.c (ftp_parse_ls): New function.
12665         (symperms): New function.
12666
12667         * ftp.c (ftp_1fl_loop): New function, to handle 1-file loops.
12668
12669         * retr.c (retrieve_url): Added FTP support.
12670
12671 1996-06-23  Hrvoje Niksic  <hniksic@srce.hr>
12672
12673         * geturl.h: Removed NOTFTP2HTML enum.
12674         Added DO_LOGIN, DO_CWD and DO_LIST. LIST_ONLY is obsolete.
12675
12676         * ftp.c (getftp): Resynched with urlinfo.
12677         (getftp): Removed HMTL-ization of index.html from getftp.
12678
12679         * version.c: 1.4b6 "released".
12680
12681         * options.h (options): New struct, to keep options in.
12682
12683         * http.c (http_loop,gethttp): Synched with proxy.
12684
12685         * retr.c (retrieve_url): Implemented proxy retrieval.
12686
12687         * main.c (main): Use retrieve_from_file.
12688
12689 1996-06-22  Hrvoje Niksic  <hniksic@srce.hr>
12690
12691         * retr.c (retrieve_from_file): New function.
12692
12693         * url.c (parseurl): Modified to return URLOK if all OK. Protocol
12694         can be found in u->proto.
12695
12696         * ftp.c (ftp_response): Fixed to accept multi-line responses as
12697         per RFC 959.
12698
12699         * recr.c (recursive_retrieve): Take newloc from retrieve_url.
12700
12701         * url.c (mymkdir): Removed the file of the same name, if one
12702         exists.
12703         (isfile): New function.
12704         (mkstruct): Fixed the '/' glitches.
12705         (path_simplify): Hacked to treat something/.. correctly.
12706
12707 1996-06-21  Hrvoje Niksic  <hniksic@srce.hr>
12708
12709         * http.c (gethttp): Close the socket after error in headers.
12710         (http_loop): HEOF no longer a fatal header.
12711
12712         * loop.c (retrieve_url): When dt is NULL, do not modify it. This
12713         simplifies the syntax of calling retrieve_url.
12714
12715         * recr.c (recursive_retrieve): Modified to use get_urls_html.
12716
12717         * url.c (get_urls_file): New function.
12718         (get_urls_html): New function.
12719
12720         * recr.c (recursive_retrieve): Patched up to conform to the
12721         standards.
12722
12723         * http.c (gethttp): Synched with the rest...
12724         (gethttp): Treat only CONREFUSED specially, with connection
12725         errors.
12726
12727         * init.c,geturl.1,http.c (http_loop): Removed kill_error.
12728
12729 1996-06-20  Hrvoje Niksic  <hniksic@srce.hr>
12730
12731         * http.c (http_loop): New function.
12732
12733         * loop.c: Removed *lots* of stuff from retrieve_url.
12734
12735         * url.c (parseurl): Changed to work with urlinfo. Integrated
12736         username finding and path parsing.
12737         (newurl): New function.
12738         (freeurl): New function.
12739         (mkstruct): Removed the old bogosities, made it urlinfo-compliant.
12740         (url_filename): Likewise.
12741         (path_simplify): Accept relative paths too.
12742         (opt_url): Made urlinfo-compliant, removed bogosities.
12743         (path_simplify): Expanded to accept relative paths.
12744         (str_url): A replacement for hide_url
12745         (decode_string): Fixed a bug that caused malfunctioning when
12746         encountering an illegal %.. combination.
12747         (opt_url): Removed the argument. Dot-optimizations are now default.
12748
12749         * nmalloc.c (strdupdelim): New function.
12750
12751         * url.h: Added the urlinfo structure
12752
12753 1996-06-19  Hrvoje Niksic  <hniksic@srce.hr>
12754
12755         * url.c (hide_url): Thrown out the protocol assertion. Do not
12756         change the URL if the protocol if not recognized.
12757         (findurl): Put continue instead of break.
12758
12759 1996-06-18  Hrvoje Niksic  <hniksic@srce.hr>
12760
12761         * sample.geturlrc: Changed the defaults to be commented out and
12762         harmless (previous defaults caused pains if copied to
12763         ~/.geturlrc).
12764
12765         * http.c (gethttp): Print the HTTP request in debug mode.
12766
12767         * connect.c (iread): Added EINTR check loop to select-ing
12768         too. EINTR is now correctly handled with select().
12769
12770         * TODO: new file
12771
12772 1996-05-07  Hrvoje Niksic  <hniksic@srce.hr>
12773
12774         * host.c (same_host): Made the function a little bit more
12775         intelligent regarding diversified URL syntaxes.
12776
12777         * url.c (skip_url): Spaces are now skipped after URL:
12778
12779         * Released 1.3.1 with the patch to prevent crashing when sending
12780         NULL to robot* functions and the patch to compile "out of the box"
12781         on AIX.
12782
12783         * recr.c (recursive_retrieve): Added checking whether this_url is
12784         NULL when calling the robot functions.
12785
12786         * ChangeLog: New file.