]> sjero.net Git - wget/blob - src/ChangeLog
Fix FTP list parsing & Fix cookies reject
[wget] / src / ChangeLog
1 2013-10-26  Bykov Aleksey <gnfalex@rambler.ru>
2
3         * utils.c (match_tail): Fix cookies reject
4
5         * ftp-ls.c (ftp_parse_unix_ls): Fix parsing month name in uppercase
6
7 2013-09-09  Tim Ruehsen  <tim.ruehsen@gmx.de>
8
9         * gnutls.c (ssl_connect_wget): changed checking of option "PFS"
10           to be better prepared for some kinds of backports.
11           Reported by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
12
13 2013-10-10  Giuseppe Scrivano  <gscrivan@redhat.com>
14
15         * url.c (url_parse): Try to convert UTF-8 URLs to IDN.
16         * html-url.c (append_url): Parse URLs specifying an IRI structure.
17
18 2013-09-13  Tim Ruehsen  <tim.ruehsen@gmx.de>
19
20         * recur.c (download_child_p): fix compile error when
21           configured using --without-ssl.
22
23 2013-09-07  Tim Ruehsen  <tim.ruehsen@gmx.de>
24
25         * gnutls.c (ssl_connect_wget): use gnutls_check_version()
26           to check if option "PFS" is available
27           Reported by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
28
29 2013-09-03  Tim Ruehsen  <tim.ruehsen@gmx.de>
30
31         * main.c: Add new value 'PFS' to --secure-protocol to
32           enforce the so-called Perfect Forward Security.
33         * init.c (cmd_spec_secure_protocol): added secure_protocol_pfs
34         * openssl.c, gnutls.c, options.h: likewise
35
36 2013-08-22  Tim Ruehsen  <tim.ruehsen@gmx.de>
37
38         * main.c: Add new option --https-only.
39         * options.h: Likewise.
40         * recur.c (download_child_p): add check for HTTPS.
41
42 2013-08-09  Tim Ruehsen  <tim.ruehsen@gmx.de>
43
44         * gnutls.c (ssl_init): Prevent CA files from being loaded twice
45           if possible.
46         * gnutls.c (ssl_check_certificate): Added some error messages
47         * gnutls.c: Fixed some compiler warnings
48
49 2013-08-08  Will Dietz  <w@wdtz.org> (tiny change):
50
51         * main.c (format_and_print_line): Wrap correctly long tokens.
52
53 2013-07-16  Darshit Shah  <darnir@gmail.com>
54
55         * wget.h (err_t): Added new errors, ATTRMISSING and UNKNOWNATTR to
56         handle missing attributes and Unknown attribute values respectively in
57         HTTP Headers.
58         * exits.c (get_status_for_err): ATTRMISSING is a Protocol Error while
59         UNKNOWNATTR is a general error, presumably because of a feature that
60         is not yet implemented.
61         * http.c (gethttp): Call create_authorization_line () separately. In
62         case the auth_err flag has been set with an error, handle it and exit.
63         * http.c (create_authorization_line): Pass a pointer, auth_err to set
64         the flag for different kinds of errors encountered.
65         * http.c (http_loop): Handle the errors raised by the authentication
66         handlers.
67         * http.c (digest_authentication_encode): Pass pointer auth_err to set
68         the error flags.
69         Set qop to NULL in case the value of the qop / algorithm attribute is
70         unknown to Wget. Set an appropriate error too.
71
72 2013-07-13  Tim Ruehsen  <tim.ruehsen@gmx.de>
73
74         * http.c (digest_authentication_encode): Fix a crash when the algorithm
75         is not specified in the server response.  Free dynamic memory used by
76         the function when the function exits.
77         * http-ntlm.c [HAVE_NETTLE]: Include <nettle/md4.h> and <nettle/des.h>.
78         (setup_des_key) [HAVE_NETTLE]: New function to deal with
79         libnettle.
80         (calc_resp) [HAVE_NETTLE]: Add support for libnettle.
81         (mkhash) [HAVE_NETTLE]: Likewise.
82         Reported by: Tim Ruehsen  <tim.ruehsen@gmx.de>.
83
84 2013-07-13  Steven M. Schweda <sms@antinode.info>
85
86         * warc.c (warc_tempfile): Fix a portability issue on VMS.
87
88 2013-07-10  Giuseppe Scrivano  <gscrivano@gnu.org>
89
90         * http.c (read_response_body) [ALLOW_CLOBBER]: Move definition to..
91         * options.h (struct options): Make `backups' an int.
92         * url.h [ALLOW_CLOBBER]: .. Here.  Do not clobber when backups are used.
93         * url.c (url_file_name): Use the ALLOW_CLOBBER macro instead of
94         repeating the code.
95
96 2013-07-08  Steven M. Schweda <sms@antinode.info>
97
98         * retr.c (rotate_backups): Support for VMS files.
99
100 2013-07-12  Giuseppe Scrivano  <gscrivano@gnu.org>
101
102         * http.c (digest_authentication_encode): Set default value of
103         `algorithm' to "MD5".  Check if `qop' is not-NULL before access it.
104
105 2013-07-11  Karsten Hopp  <karsten@redhat.com>
106
107         * openssl.c (struct openssl_read_args, struct scwt_context): New struct.
108         (openssl_read, ssl_connect_with_timeout_callback): New function.
109         (ssl_connect_wget): respect connect timeout.
110
111 2013-07-11  Tim Ruehsen  <tim.ruehsen@gmx.de>
112
113         * gnutls.c (ssl_connect_wget): respect connect timeout.
114
115 2013-07-11  Tomas Hozza  <thozza@redhat.com>
116
117         * ftp.c (ftp_loop): Use ftp_retrieve_glob() also in case
118         --preserve-permissions was specified.
119
120 2013-03-20  Tomas Hozza  <thozza@redhat.com>
121
122         * http.c (gethttp): Set "sock" to -1 if it's not and we have no
123         persistent connection
124
125 2013-04-26  Tomas Hozza  <thozza@redhat.com> (tiny change)
126
127         * log.c (redirect_output): Use DEFAULT_LOGFILE in diagnostic message
128         when `logfile' is NULL.
129         * utils.c (unique_create): Ensure `logfile' has always a value.
130
131 2013-06-26  Darshit Shah <darnir@gmail.com>
132
133         * http.c (gethttp): Reverse change by commit 90896 that prevented
134         downloading response body data to non-GET Request methods.
135
136 2013-06-19 Ciprian Vieru <devel.php@gmail.com> (tiny change)
137
138         * html-url.c: Define TAG_TD, TAG_TH, TAG_VIDEO, TAG_AUDIO, TAG_SOURCE.
139         (tag_url_attributes, known_tags): Likewise.
140
141 2013-06-22  Ángel González <keisial@gmail.com>
142
143         * init.c (cmd_string_uppercase): Rewrite function.
144
145 2013-06-19  Tim Ruehsen  <tim.ruehsen@gmx.de>
146
147         * connect.c (socket_ip_address): zero out ip address structure to
148         avoid access to uninitialized values by inet_ntop().
149         * ftp.c (ftp_loop_internal): fix segfault caused by warc_tmp NULL pointer.
150
151 2013-05-21  Ray Satiro  <raysatiro@yahoo.com>
152
153         * url.c (url_file_name): Use MAX_PATH in Windows.
154
155 2013-06-13  Darshit Shah  <darnir@gmail.com>
156
157         * http.c (gethttp): Follow RFC 2616 and httpbis specifications when
158         handling redirections. Do not suspend the method on 301/302 redirects.
159         (gethttp): If method if not GET, we do not intend to download
160         anything.
161         * main.c (main): Set spider mode when opt.method is HEAD. This will
162         prevent Wget from downloading any file.
163         * retr.c (SUSPEND_METHOD): Rename macro SUSPEND_POST_DATA to
164         SUSPEND_METHOD to more accurately reflect its use. Similarly rename
165         related variables.
166
167 2013-05-14 Bykov Aleksey <gnfalex@rambler.ru>
168
169         * warc.c (warc_tempfile): For fix "Could not open temporary WARC manifest
170         file." issue in Win system force to use `mkostemp(filename, O_TEMPORARY)'
171         instead  of `mkstemp(filename)'. Thank to Angel Gonzalez for help.
172
173 2013-05-14  Tim Ruehsen  <tim.ruehsen@gmx.de>
174
175         * cookies.c (cookie_jar_load): Replaced read_whole_file() by getline().
176         * init.c (run_wgetrc): Likewise.
177         * netrc.c (parse_netrc): Likewise.
178         * utils.c: Likewise.
179         * ftp.c (getftp): Likewise.
180         * ftp-ls.c (ftp_parse_unix_ls, ftp_parse_winnt_ls, ftp_parse_vms_ls): Likewise.
181         * ftp-ls.c (clean_line): Accept the string length as parameter.
182         * ftp-ls.c: Replaced indent tabs by spaces.
183         * ftp.c: Likewise.
184         * utils.c: Removed read_whole_file() definition.
185         * netrc.c: Removed read_whole_file() definition for STANDALONE.
186         * utils.h: Removed read_whole_file() declaration.
187
188 2013-05-09  Tim Ruehsen  <tim.ruehsen@gmx.de>
189
190         * utils.c (acceptable): use standard string functions instead of
191         self-written code.
192         (match_tail): Likewise.
193         (suffix): Likewise.
194         (has_wildcards_p): Likewise.
195         (test_subdir_p): Fix some warnings.
196         (test_dir_matches_p): Likewise.
197
198 2013-05-05  mancha  <mancha1@hush.com> (tiny change)
199
200         * gnutls.c (ssl_connect_wget): Don't abort on non-fatal alerts
201         received during handshake. For example, when connecting to servers
202         using TSL-SNI that send warning-level unrecognized_name alerts.
203
204 2013-05-04  Darshit Shah <darnir@gmail.com>
205
206         * init.c (cmd_string_uppercase): Fix issue that cased invalid headers
207         when converting to uppercase.
208
209 2013-05-01  Gijs van Tulder  <gvtulder@gmail.com>
210
211         * retr.c (retrieve_url): New variable `saved_method'.
212         (SUSPEND_POST_DATA): Save the method to `saved_method'.
213         (RESTORE_POST_DATA): Restore the method from `saved_method'.
214
215 2013-05-01  Giuseppe Scrivano  <gscrivano@gnu.org>
216
217         * init.c: Declare `cmd_string_uppercase'.
218         (commands): Now `method' uses cmd_string_uppercase.
219         (cmd_string_uppercase): New method
220         * http.c (gethttp): Do not transform opt.method to uppercase.
221         Reported by: Stefano Lattarini <stefano.lattarini@gmail.com>
222
223 2013-04-24  Darshit Shah <darnir@gmail.com>
224
225         * http.c (gethttp): Remove check for opt.post_data and
226         opt.post_file_name.
227         * main.c (main): Change location in code where --post-data and
228         --post-file options are converted to --body-data --body-file.
229
230 2013-04-21  Gijs van Tulder  <gvtulder@gmail.com>
231
232         * http.c: Copy opt.body_data to the WARC file, instead of
233         opt.post_data (the old option).
234
235 2013-04-12  Gijs van Tulder  <gvtulder@gmail.com>
236
237         * warc.c: Generate unique UUIDs for the manifest and the record
238         holding the command-line arguments.
239         Write the manifest to a "metadata" record to follow the WARC
240         implementation guidelines.
241         * warc.h: Declare new function warc_write_metadata_record.
242
243 2013-03-15  Darshit Shah <darnir@gmail.com>
244
245         * http.c (post_file): Rename function to body_file_send to more
246         accurately reflect its use.
247         * http.c (gethttp): Add support for --method, --body-data and
248         --body-file
249         * init.c (commands): Same.
250         * options.h (options): Same.
251         * main.c (option_data): Same.
252         * main.c (print_help): Add --method command.
253         * main.c (main): Make old --post-{data,file} commands aliases to
254         --method.
255         Add sanity checks for --method, --body-data and --body-file.
256         * retr.c (SUSPEND_POST_DATA): Edit Macro Definition to use body_data.
257         * retr.c (RESTORE_POST_DATA): Same.
258
259 2013-03-31  Gijs van Tulder  <gvtulder@gmail.com>
260
261         * warc.c: Correctly write the field length in the skip length field
262         of .warc.gz files. (Following the GZIP spec in RFC 1952.)
263
264 2013-03-12  Darshit Shah <darnir@gmail.com>
265
266         * http.c (gethttp): Make wget return FILEBADFILE error and abort if
267         post-file does not exist.
268
269         * http.c (http_loop): Handle FILEBADFILE as a valid err.
270
271         * exits.c (get_status_for_err): Mark FILEBADFILE as an IO error.
272
273 2013-02-15  Darshit Shah <darnir@gmail.com>
274
275         * cookies.c (cookie_handle_set_cookie): Set cookie->discard_requested
276         to true on domain mismatch.
277
278 2012-12-20  Tim Ruehsen  <tim.ruehsen@gmx.de>
279
280         * gnutls.c (ssl_connect_wget): added +VERS-SSL3.0 to fix
281         --secure-protocol=SSLv2/SSLv3.
282
283 2012-12-09  Giuseppe Scrivano  <gscrivano@gnu.org>
284
285         * main.c (main): Keep looking for "config" until there are
286         arguments to parse.
287         Reported by: Adrien Dumont <adr.dum@hotmail.fr>
288
289         * test.c: Include "wget.h".
290
291 2012-12-08  Michael Stapelberg <michael@stapelberg.de> (tiny change)
292
293         * retr.c (retrieve_url): Set iri->orig_url to NULL after it is
294         freed.
295
296 2012-11-26  Giuseppe Scrivano  <gscrivano@gnu.org>
297
298         * wget.h (MAX_INT_TO_STRING_LEN): Define macro.
299         * warc.c (warc_write_block_from_file): Use `MAX_INT_TO_STRING_LEN'
300         to find the buffer size.
301         (warc_write_cdx_record): Likewise.
302
303 2012-09-03  Tim Ruehsen  <tim.ruehsen@gmx.de>
304
305         * http.c (digest_authentication_encode): Add support for RFC 2617
306         MD5-sess authentication algorithm.
307         Feature request and testing by: Avinash <pavinash@gmail.com>
308
309 2012-11-14  Ángel González  <keisial@gmail.com>
310
311         * warc.c (warc_sha1_stream_with_payload): Fix compilation under
312         gcc -std=c89.
313
314 2012-11-24  Gijs van Tulder  <gvtulder@gmail.com>
315
316         * warc.c (warc_write_cdx_record): Use `number_to_string' to
317         convert the offset to a string.
318
319 2012-11-24  Giuseppe Scrivano  <gscrivano@gnu.org>
320
321         * warc.c (warc_write_block_from_file): Use `number_to_string' to
322         convert the content-length to a string.
323
324 2012-11-15  Giuseppe Scrivano  <gscrivano@gnu.org>
325
326         * retr.c (write_data): Fix comment.
327
328 2012-11-13  Giuseppe Scrivano  <gscrivano@gnu.org>
329
330         * retr.c (fd_read_body): Correctly check the return code from
331         write_data.
332         Reported by: Torsten Scheck <torsten.scheck@gmx.de>
333
334 2012-08-29  Rohit Mathulla <rohit_mathulla@yahoo.com> (tiny change)
335
336         * html-url.c (get_urls_file): Convert shorthand URLs.
337
338 2012-10-07  Ray Satiro <raysatiro@yahoo.com>
339
340         * url.c: Change the functions of a growable string object to null
341         terminate the string.
342         * url.c (append_null): New function to null terminate a growable
343         string object.
344         * url.c (shorten_length): New function to shorten the length of a
345         growable string object.
346
347 2012-10-03 Merinov Nikolay <kim.roader@gmail.com>
348
349         * ftp.c (ftp_loop_internal): Ignore --no-clobber option when
350         receiving directory listing.
351
352 2012-10-07  Tim Ruehsen  <tim.ruehsen@gmx.de>
353             Giuseppe Scrivano  <gscrivano@gnu.org>
354
355         * utils.c (get_max_length): If `pathconf' is not available
356         fallback to PATH_MAX.
357
358 2012-10-06  Giuseppe Scrivano  <gscrivano@gnu.org>
359
360         * http.c (http_loop): Send a HEAD request when -c and
361         --content-disposition are used together.
362
363 2012-09-29 Merinov Nikolay <kim.roader@gmail.com>
364
365         * ftp-ls.c (ftp_parse_winnt_ls): Support filename extracting with
366         new listing format.
367
368 2012-09-29  Tim Ruehsen  <tim.ruehsen@gmx.de>
369
370         * url.h (CHOMP_BUFFER): Add definition.
371         * url.c (url_file_name): New local variables `fname_len_check' and
372         `max_length'. Check that the length of the file name is acceptable.
373         * utils.h (get_max_length): Declare function.
374         * utils.c (get_max_length): New function.
375
376 2012-09-28  Steven Schubiger  <stsc@member.fsf.org>
377
378         * src/recur.c (retrieve_tree): Combine duplicated code.
379
380 2012-09-02  Nguyễn Thái Ngọc Duy  <pclouds@gmail.com> (tiny change)
381
382         * src/main.c (main): mark more strings for translation.
383         * src/mswindows.c (fork_to_background): Likewise.
384         * src/recur.c (download_child_p): Likewise.
385
386 2012-08-28  Tim Ruehsen  <tim.ruehsen@gmx.de>
387
388         * gnutls.c (ssl_check_certificate): deinit gnutls_x509_crt_t.
389         * gnutls.c (ssl_init): don't error if CA directory is empty.
390
391 2012-07-07  Giuseppe Scrivano  <gscrivano@gnu.org>
392
393         * html-url.c (cleanup_html_url): Remove "static" modifier.
394         * init.c (cleanup_html_url): Likewise.
395         Reported by: Mike Frysinger <vapier@gentoo.org>.
396
397 2012-08-25  Hrvoje Niksic  <hniksic@gmail.com>
398
399         * warc.c (warc_find_duplicate_cdx_record): Use hash_table_get
400         instead of hash_table_get_pair.
401
402 2012-08-21  <y-iida@secom.co.jp> (tiny change)
403
404         * connect.c (connect_to_ip) [ENABLE_IPV6]: Attempt to use IPv6.
405         * http.c (gethttp): Likewise.
406
407 2012-07-03  Steven Schubiger  <stsc@member.fsf.org>
408
409         * init.c: Include warc.h for warc_close in cleanup function.
410
411 2012-07-08  Steven Schubiger  <stsc@member.fsf.org>
412
413         * exits.h: Fix comment.
414         * exits.c: Likewise.
415
416 2012-07-07  Tim Ruehsen <tim.ruehsen@gmx.de>
417
418         (digest_authentication_encode): Add support for RFC 2617 Digest
419         Access Authentication.
420
421 2012-07-07  Giuseppe Scrivano  <gscrivano@gnu.org>
422
423         * http.c (http_loop): Fix log message.
424         * main.c (main): Likewise.
425         Reported by: Petr Pisar <petr.pisar@atlas.cz>
426
427 2012-06-17  Giuseppe Scrivano  <gscrivano@gnu.org>
428
429         * wget.h: Define `CLOSEFAILED'.
430         * init.c: Include "exits.h".
431         (cleanup): Check `fclose' failure.
432         * exits.c (get_status_for_err): Handle `CLOSEFAILED'.
433
434 2012-06-16  Giuseppe Scrivano  <gscrivano@gnu.org>
435
436         * main.c (main): Move some cleanup related function to...
437         * init.c (cleanup): ...here.
438
439         * main.c: Do not include "stdout.h".
440         (main): Do not register `close_stdout' at exit.
441         Reported by: Micah Cowan  <micah@cowan.name>.
442
443 2012-06-09  Giuseppe Scrivano  <gscrivano@gnu.org>
444
445         * main.c (print_help): Move --report-speed under the section
446         "Logging and input file".
447
448 2012-06-06  Giuseppe Scrivano  <gscrivano@gnu.org>
449
450         * main.c (print_help): Rename --bits to --report-bps.
451         (cmdline_options): Likewise.
452         * init.c (commands): Rename --report-bps to --report-speed.
453         (cmd_spec_report_speed): New function.
454
455         * options.h (struct options): Rename `bits_fmt' to `report_bps'.
456         * main.c (print_help): Rename --bits to --report-bps.
457         (cmdline_options): Likewise.
458         * init.c (commands): Likewise
459
460         * progress.c (create_image): Adjust caller.
461         * retr.c (retr_rate): Likewise.
462         * utils.c (convert_to_bits): Likewise.
463
464 2012-06-04  Tim Ruehsen  <tim.ruehsen@gmx.de>
465
466         * main.c (main): Check for filename != NULL.
467         * warc.c (warc_process_cdx_line): Fix memory leak.
468         * utils.c (match_posix_regex, compile_posix_regex): Remove dead
469    assignment.
470         * openssl.c (ssl_init): Fix old-style function definition.
471
472 2012-06-02  Giuseppe Scrivano  <gscrivano@gnu.org>
473
474         * connect.c: Include <sys/socket.h> and <sys/select.h>.
475
476 2012-05-30  Gijs van Tulder  <gvtulder@gmail.com>
477
478         * warc.c: Fix segfault if CDX record is not found.
479
480 2011-05-26  Steven Schweda  <sms@antinode.info>
481         * connect.c [HAVE_SYS_SOCKET_H]: Include <sys/socket.h>.
482         [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
483
484 2012-05-26  Mike Frysinger <vapier@gentoo.org>
485
486         * warc.c: Change type of `warc_current_gzfile' to gzFile.
487
488 2012-05-26  Giuseppe Scrivano  <gscrivano@gnu.org>
489
490         * warc.c (warc_load_cdx_dedup_file): Change type of `line_length' to
491         ssize_t.
492         Suggested by: Ángel González <keisial@gmail.com>
493
494 2012-05-18  Tim Ruehsen  <tim.ruehsen@gmx.de>
495
496         * gnutls.c (wgnutls_poll): Honor the specified `timeout' value.
497         (wgnutls_peek): Likewise.
498
499 2012-05-19  illusionoflife  <illusion.of.life92@gmail.com> (tiny change)
500
501         * convert.c (register_html,register_css): Fixed functions signature to
502         not accept unused argument
503         * retr.c (retrieve_url): Changed register_{css,html} usage according
504         new signature.
505
506 2012-05-16  Giuseppe Scrivano  <gscrivano@gnu.org>
507
508         * warc.h: Cut length lines to 80 columns.
509         * warc.c: Likewise.
510
511 2012-05-14  Tim Ruehsen  <tim.ruehsen@gmx.de>
512
513         * gnutls.c (wgnutls_read_timeout): removed warnings, moved fcntl stuff
514         outside loop.
515
516         * hash.h (hash_table_put): Make argument "value" const.
517         * hash.c (hash_table_put): Make argument value const.  Cast `value' to
518         void.
519         * http.c (request_set_header): Make argument `name' const.  Cast `value'
520         and `name' to void*.
521         (request_remove_header): Make argument `name' const.
522         * url.c (url_file_name): Make `index_filename' static.
523         * warc.h (warc_write_cdx_record): Make `url', `timestamp', `mime_type',
524         `payload_digest', `redirect_location', `warc_filename', response_uuid'
525         arguments const. Make `checksum' const.
526         * warc.c (warc_write_date_header): Make the `timestamp' argument const.
527         Make `extension' const.
528         (warc_write_cdx_record): Make `url', `timestamp', `mime_type',
529         `payload_digest', `redirect_location', `warc_filename', response_uuid'
530         arguments const. Make `checksum' const.
531
532 2012-05-13  Tim Ruehsen  <tim.ruehsen@gmx.de>
533
534         * gnutls.c (credentials): Change type to
535         gnutls_certificate_credentials_t.
536         (ssl_init): Do not use deprecated types.
537         (ssl_connect_wget): Likewise.
538
539 2012-04-11  Gijs van Tulder  <gvtulder@gmail.com>
540
541         * init.c: Add --accept-regex, --reject-regex and --regex-type.
542         * main.c: Likewise.
543         * options.c: Likewise.
544         * recur.c: Likewise.
545         * utils.c: Add regex-related functions.
546         * utils.h: Add regex-related functions.
547
548 2012-03-30  Tim Ruehsen  <tim.ruehsen@gmx.de>
549
550         * convert.c (convert_links_in_hashtable): Mmake it static.
551         * cookies.c (parse_set_cookie): Remove empty else branches.
552         * css-url.c: Include "css-url.h".
553         (get_uri_string): Make it static.
554         * css-url.h (get_urls_css): Add protoype.
555         * gnutls.c (ssl_init): Add prototype.
556         * html-parse.c (tagstack_push): Make it static.
557         * html-parse.c (tagstack_pop): Make it static.
558         * html-parse.c (tagstack_find): Make it static.
559         * html-url.c (cleanup_html_url): Make it static.
560         * progress.c (count_cols): Make it static.
561         * progress.c (get_eta): Make it static.
562         * retr.h (convert_to_bits): Remove prototype.
563         * util.h (convert_to_bits): Add prototype.
564         * spider.c (spider_cleanup): Make it static.
565         * warc.c (warc_write_start_record): Add prototype.
566         * warc.c (warc_write_end_record): Add prototype.
567         * warc.c (warc_start_cdx_file): Add prototype.
568         * warc.c (warc_init): Add prototype.
569         * warc.c (warc_load_cdx_dedup_file): Add prototype.
570         * warc.c (warc_write_metadata): Add prototype.
571         * warc.c (warc_close): Add prototype.
572         * warc.c (warc_tempfile): Add prototype.
573         * warc.c (warc_write_warcinfo_record): Make it static.
574         * warc.c (warc_load_cdx_dedup_file): Make it static.
575         * warc.c (warc_write_metadata): Make it static.
576         * warc.h (warc_init): Fix prototype.
577         * warc.h (warc_close): Fix prototype.
578         * warc.h (warc_tempfile): Fix prototype.
579
580 2012-03-30  Tim Ruehsen  <tim.ruehsen@gmx.de>
581
582         * url.c: Use empty query in local filenames.
583
584 2012-04-22  Tim Ruehsen <tim.ruehsen@gmx.de>
585
586         * main.c (main): Dynamically allocate `opt.progress_type'.
587
588 2012-04-21  Tim Ruehsen  <tim.ruehsen@gmx.de>
589
590         * ftp-basic.c (ftp_pasv): Fix memory leak.
591
592         * http.c (gethttp): Fix memory leak.
593
594         * ftp.c (getftp): Silent compiler warning.
595
596 2009-06-14  Phil Pennock  <mutt-dev@spodhuis.org> (tiny change)
597         * host.h: Declare `is_valid_ip_address'.
598         * host.c (is_valid_ip_address): New function.
599         * http.c (gethttp): Specify the hostname to ssl_connect_wget.
600         * gnutls.c (ssl_connect_wget): Specify the server name.
601         * openssl.c (ssl_connect_wget): Likewise.
602         * ssl.h: Change method signature for ssl_connect_wget.
603
604 2012-04-13  Tim Ruehsen  <tim.ruehsen@gmx.de> (tiny change)
605
606         * warc.c (warc_load_cdx_dedup_file): Fix a memory leak by freeing
607         `lineptr'.
608
609 2012-04-07  Daniel Kahn Gillmor <dkg@fifthhorseman.net> (tiny change)
610
611         * gnutls.c (key_type_to_gnutls_type): New function.
612         (ssl_init): Use correctly the specified gnutls certificate.
613
614 2012-04-01  Gijs van Tulder  <gvtulder@gmail.com>
615
616         * html-url.c: Prevent crash on incomplete STYLE tag.
617
618 2012-04-01  Giuseppe Scrivano  <gscrivano@gnu.org>
619
620         * gnutls.c (wgnutls_read_timeout): Ensure timer is freed.
621
622         * gnutls.c (wgnutls_read_timeout): Do not use timer if it is not
623         allocated.
624         Reported by: Xu Zhongxing <xu_zhong_xing@163.com>
625
626 2012-03-30  Tim Ruehsen  <tim.ruehsen@gmx.de> (tiny change)
627
628         * warc.c: make warc_uuid_str() implementation depend on HAVE_LIBUUID.
629
630 2012-03-29  Tim Ruehsen <tim.ruehsen@gmx.de> (tiny change)
631
632         * utils.c (library): Include <sys/time.h>.
633
634 2012-03-25  Giuseppe Scrivano  <gscrivano@gnu.org>
635
636         * utils.c: Include <sys/ioctl.h>.
637
638         * ptimer.c: Include <sys/time.h>.
639
640         * connect.c: Include <sys/socket.h>, <sys/select.h>, <sys/time.h>.
641         Reported by: Ray Satiro <raysatiro@yahoo.com>.
642
643 2012-03-25 Ray Satiro <raysatiro@yahoo.com>
644
645         * build_info.c.in: Check that HAVE_LIBSSL32 is defined when OpenSSL
646         is used.
647
648 2012-03-07  Steven Schubiger  <stsc@member.fsf.org>
649
650         * init.c (wgetrc_user_file_name): Correct typo.
651
652 2012-03-06   Sasikantha Babu   <sasikanth.v19@gmail.com>
653
654         * utils.c (convert_to_bits): Added new function convert_to_bits to
655         convert bytes to bits.
656         * retr.c (calc_rate): Modified the function to handle --bits
657         option and download rate calculated as bits per sec (SI-prefix)
658         for --bits otherwise bytes (IEC-prefix).
659         (retr_rate): Rates will display in bits per sec for --bits.
660         * options.h (struct opt): Added --bit option bool variable bits_fmt.
661         * main.c (print_help) : Added help for --bit.
662         * init.c: Defined command for --bit option.
663         * retr.h: Added function prototype.
664
665 2012-02-26  Giuseppe Scrivano  <gscrivano@gnu.org>
666
667         * main.c: Include "closeout.h"
668         (main): Register close_stdout at exit.
669
670 2012-02-01  Gijs van Tulder  <gvtulder@gmail.com>
671
672         * warc.c: Fix large file support with ftello, fseeko.
673         * warc.h: Fix large file support.
674         * http.c: Fix large file support.
675
676 2012-02-23  Giuseppe Scrivano  <giuseppe@southpole.se>
677
678         * main.c (main): Write diagnostic messages to `stderr' not to `stdout'.
679
680         * main.c (main): Fail gracefully if `malloc' fails.
681
682         * gnutls.c (wgnutls_read): Remove unused variables `timer' and `flags'.
683
684 2012-02-17  Steven Schubiger  <stsc@member.fsf.org>
685
686         * warc.c: Add license header.
687
688 2012-01-27  Gijs van Tulder  <gvtulder@gmail.com>
689
690         * retr.c (fd_read_body): If the response is chunked, the chunk
691         headers are now written to the WARC file, making the WARC file
692         an exact copy of the HTTP response.
693
694 2012-01-27  Gijs van Tulder  <gvtulder@gmail.com>
695
696         * retr.c (fd_read_body): Fix a memory leak with chunked responses.
697         * http.c (skip_short_body): Fix the same memory leak.
698
699 2012-01-09  Gijs van Tulder  <gvtulder@gmail.com>
700
701         * init.c: Disable WARC compression if zlib is disabled.
702         * main.c: Do not show the 'no-warc-compression' option if zlib is
703         disabled.
704         * warc.c: Do not compress WARC files if zlib is disabled.
705
706 2012-01-09  Sasikantha Babu   <sasikanth.v19@gmail.com> (tiny change)
707         * connect.c (connect_to_ip): properly formatted ipv6 address display.
708         (socket_family): New function - returns socket family type.
709         * http.c (gethttp): properly formatted ipv6 address display.
710
711 2011-11-09  Gijs van Tulder  <address@hidden>
712
713         * warc.c: Call gzdopen() with wb9 instead of wb+9, which fails on
714         zlib version >= 1.2.4.
715
716 2011-11-04  Steven Schweda  <address@hidden>
717
718         * warc.c [! WINDOWS]: Include <libgen.h>.
719         (warc_write_warcinfo_record): Assign a new allocated buffer and
720         free it on errors.
721
722 2011-11-01  Steven Schweda  <address@hidden>
723
724         * gnutls.c (ssl_init): Ensure GNU TLS is loaded only once.
725
726 2011-10-07  Steven Schweda  <address@hidden>
727
728         * connect.c: Add HAVE_SYS_SELECT_H and HAVE_SYS_SOCKET_H conditions
729         on includes of <sys/select.h> and <sys/socket.h>, respectively.
730         * ftp.c (getftp): Move BIN_TYPE_TRANSFER macro into VMS-specific
731         section.  On VMS, use Stream_LF attributes for listing files.  Pass
732         BIN_TYPE_FILE to fopen_excl() instead of constant-everywhere "true".
733         * ftp.c (ftp_retrieve_list): Restore lost test of opt.preserve_perm
734         (--preserve-permissions) on the chmod() operation.
735         * init.c, main.c: Remove "deprecated" from opt.preserve_perm
736         (--preserve-permissions).
737         * init.c (initialize): Use distinct messages for errors in C macro
738         SYSTEM_WGETRC and environment-variable SYSTEM_WGETRC.  Avoid use of
739         C macro SYSTEM_WGETRC when it's not defined.
740         * log.c (log_close): Avoid closing logfp when it's stderr.
741         * main.c (print_help):  Restore --preserve-permissions.
742         * main.c (main): Avoid using a negative value of longindex as a
743         subscript (for long_options[]) when searching for "--config".
744         * main.c (main): Exit the program using exit() instead of "return".
745         (VMS handles these differently, and exit() is better.)
746         * openssl.c (ssl_init): Add type cast (SSL_METHOD *) to newly "const"
747         "meth" argument to accommodate OpenSSL version 0.9.8, where that
748         argument is not "const" in the OpenSSL function (SSL_CTX_new).
749         * test.c: Declare "program_argstring".
750         * utils.c (fopen_excl): Comment typography.
751         * warc.h: New file.
752         * warc.c: New file.
753
754 2011-10-02  Henrik Holst <henrik.holst@millistream.com> (tiny change)
755         * http.c (gethttp): If 'contentonerror' is used then do not
756         skip the http body on 4xx and 5xx errors.
757
758         * init.c (commands): Add 'contentonerror'.
759
760         * main.c (print_help, option_data): Add new option 'contentonerror'
761         to make wget not skip the http content on 4xx and 5xx errors.
762
763         * options.h: New variable 'content_on_error'.
764
765 2011-09-19  Giuseppe Scrivano  <gscrivano@gnu.org>
766
767         * main.c (print_version): Update copyright year.
768         (print_version): Fix typo.
769
770 2011-09-13  Giuseppe Scrivano  <gscrivano@gnu.org>
771
772         * ftp.c (ftp_retrieve_glob): Propagate correctly the `res' error
773         code.
774
775 2011-09-07  Giuseppe Scrivano  <gscrivano@gnu.org>
776
777         * http.c (gethttp): Don't inhibit arest request if opt.timestamping is
778         set.
779         Reported by <natrio@list.ru>
780
781 2011-09-06  Jakob Matthes <jakob.matthes@gmail.com> (tiny change)
782
783         * main.c (print_version): Do not exit prematurely when --help is passed.
784
785 2011-09-04  Christian Jullien <eligis@orange.fr> (tiny change)
786
787         * gnutls.c: Include <sys/fcntl.h>.
788
789 2011-09-02  Mojca Miklavec <mojca.miklavec.lists@gmail.com> (tiny change)
790
791         * main.c (print_version): Do not exit prematurely when --version is passed.
792
793 2011-08-30  Giuseppe Scrivano  <gscrivano@gnu.org>
794
795         * gnutls.c (wgnutls_read_timeout): Use the non blocking socket only for
796         `gnutls_record_recv'.  Set errno to ETIMEDOUT on a read timeout.
797
798 2011-08-29  Giuseppe Scrivano  <gscrivano@gnu.org>
799
800         * gnutls.c (wgnutls_read_timeout): New function.
801         (wgnutls_read): Use wgnutls_read_timeout.
802         (wgnutls_peek): Likewise.
803
804 2011-08-27  Giuseppe Scrivano  <gscrivano@gnu.org>
805
806         * main.c (print_help): Exit with an error status if print to stdout
807         fails.
808         (print_usage): Change method signature and return a status code.
809         (print_version): Likewise.
810
811 2011-08-26  Giuseppe Scrivano  <gscrivano@gnu.org>
812
813         * gnutls.c: Include "ptimer.h".
814         (wgnutls_read): Honor read timeout.
815
816         * openssl.c (ssl_init): Make `meth' const.
817
818 2011-08-25  Giuseppe Scrivano  <gscrivano@gnu.org>
819
820         * utils.c [HAVE_UTIME && HAVE_UTIME_H]: Include <utime.h>.
821         [HAVE_UTIME && HAVE_SYS_UTIME_H]: Include <sys/utime.h>.
822         (touch) [HAVE_UTIME: Prefers utime over futimens when it is available.
823         It was reported that Cygwin has a not working futimens.
824
825 2011-08-19  Giuseppe Scrivano  <gscrivano@gnu.org>
826
827         * init.c (home_dir) [MSDOS]: Move local variable `len' here.
828
829 2011-08-18  Giuseppe Scrivano  <giuseppe@southpole.se>
830
831         * http.c (gethttp): Fix a memory leak on some errors.  Free the head
832         buffer.
833
834         * Makefile.am: Use an additional file "css_.c" which in turn includes
835         "wget.h" and immediately "css.c".
836
837         * http.c (gethttp): Reset chunked_transfer_encoding on redirections.
838
839 2011-08-13  Giuseppe Scrivano  <gscrivano@gnu.org>
840
841         * retr.c (fd_read_body): Ensure max is not already defined.
842
843         * mswindows.h (snprintf): Remove definition.
844         (vsnprintf): Likewise.
845
846 2011-08-12  Giuseppe Scrivano  <gscrivano@gnu.org>
847
848         * css.l: Remove include "wget.h".
849         Reported by: Perry Smith <pedzsan@gmail.com>.
850
851 2011-08-11  Giuseppe Scrivano  <gscrivano@gnu.org>
852
853         * utils.c (abort_run_with_timeout): Use sigprocmask instead of
854         sigsetmask.
855
856         * gnutls.c (ssl_connect_wget): Remove call to deprecated function
857         `gnutls_certificate_type_set_priority'.
858
859         * Makefile.am (version.c): Don't invoke hg to set version string.
860
861 2011-08-10  Giuseppe Scrivano  <gscrivano@gnu.org>
862
863         Fix a linker error on systems with an older gnutls version.
864         * gnutls.c (ssl_connect_wget)
865         [HAVE_GNUTLS_PRIORITY_SET_DIRECT]:  Use gnutls_priority_set_direct.
866         [! HAVE_GNUTLS_PRIORITY_SET_DIRECT]:  Use gnutls_protocol_set_priority.
867         Reported by: Karl Berry <karl@freefriends.org>
868
869 2011-08-06  Jochen Roderburg <Roderburg@Uni-Koeln.DE>
870
871         * host.c (lookup_host): Ensure it doesn't print more IPs than available
872         ones.
873
874 2011-08-06  Giuseppe Scrivano  <gscrivano@gnu.org>
875
876         * init.c (defaults): Set default value for show_all_dns_entries.
877
878         * host.c (lookup_host): If `showalldnsentries' is used then print all
879         the IP corresponding to a DNS entry.
880         * init.c (commands): Add `showalldnsentries'.
881         Suggested by: Witold Baryluk <baryluk@smp.if.uj.edu.pl>
882
883         * http.c (gethttp): Add the Cache-Control HTTP header when --no-cache
884         is specified.
885         Reported by: Коренберг Марк <socketpair@gmail.com>.
886
887 2011-08-05  Giuseppe Scrivano  <gscrivano@gnu.org>
888
889         * utils.c (acceptable): Accept always the file if it is the specified
890         output destination.
891         Reported by: Shai Berger <shai@platonix.com>
892
893 2011-08-05  Giuseppe Scrivano  <giuseppe@southpole.se>
894
895         * gnutls.c (ssl_connect_wget): Use `gnutls_priority_set_direct' instead
896         of the deprecated `gnutls_protocol_set_priority'.
897
898 2011-08-02  Giuseppe Scrivano  <giuseppe@southpole.se>
899
900         * cookies.c (parse_set_cookie): If the value is quoted, do not modify
901         it.
902         Reported by: Nirgal Vourgère <jmv_deb@nirgal.com>
903
904 2011-07-29  Giuseppe Scrivano  <giuseppe@southpole.se>
905
906         * log.c (logprintf): Exit immediately on a SIGPIPE error.
907         Reported by: Noèl Köthe  <noel@debian.org>.
908
909 2011-07-26  Carlos Martín Nieto  <carlos@cmartin.tk>  (tiny change)
910
911         * init.c (home_dir): Allocate path buffer dinamically.
912
913 2011-07-26  Giuseppe Scrivano  <giuseppe@southpole.se>
914
915         * retr.c (retrieve_url): Do not register redirects when in spider mode.
916
917 2011-07-20 Merinov Nikolay <kim.roader@gmail.com>
918
919         * iri.c (remote_to_utf8): Add test for non-ASCII symbols with
920         UTF-8 URI encoding.
921         * res.c (res_retrieve_file): Fix url_parse call.
922
923 2011-06-08  Giuseppe Scrivano  <giuseppe@southpole.se>
924
925         * retr.c (retrieve_from_file): Parse the url careless if IRI is enabled.
926         Reported by: Volker Kuhlmann <list0570@paradise.net.nz>.
927
928 2011-05-24  Giuseppe Scrivano  <gscrivano@gnu.org>
929
930         * retr.c (fd_read_body): Define max.
931
932 2010-12-28  Adrien Nader  <adrien@notk.org> (tiny change)
933
934         * main.c [WINDOWS]: Include <io.h> and <fcntl.h>.
935         (main) [WINDOWS]: Set the stdout file mode to binary.
936         Submitted also by: Martin Panter <vadmium@gmail.com>
937
938 2011-05-23  Giuseppe Scrivano  <gscrivano@gnu.org>
939
940         * retr.c (fd_read_body): Be sure the buffer size is at least 8Kb.
941         BUFSIZ may assume very small values with a negative impact on the
942         performances.
943
944         * mswindows.h [NEED_GAI_STRERROR]: remove definition for gai_strerror.
945
946 2011-05-15  Ray Satiro <raysatiro@yahoo.com>
947
948         * connect.c (select_fd) [WINDOWS]: Ensure the socket is blocking.
949         * mswindows.h: Add declaration for set_windows_fd_as_blocking_socket.
950         * mswindows.c (set_windows_fd_as_blocking_socket): New function.
951
952         * openssl.c (openssl_read): Prevent loops on read errors.
953
954 2011-04-24  Giuseppe Scrivano  <gscrivano@gnu.org>
955
956         * html-url.c: Include "exists.h".
957         * gnutls.c (wgnutls_peek): Remove local variable `ret'.
958
959 2011-04-21  Daniel Manrique <roadmr@tomechangosubanana.com> (tiny change)
960         * main.c (main): Set exit status when invalid host name given in
961         command line.
962         * html-url.c (get_urls_file): Set exit status when invalid host
963         name given in input file.
964
965 2011-04-19  Giuseppe Scrivano  <gscrivano@gnu.org>
966
967         * gnutls.c: Do not include <fcntl.h>.
968         * gnutls.c (wgnutls_peek): Ensure there is data available before attempt
969         a read on the blocking socket.
970
971         * Makefile.am (LIBS): Add $(LIB_CLOCK_GETTIME)
972         * utils.c: Include <sys/stat.h>.  Do not include <sys/time.h>.
973         (touch): Use `futimens' instead of `utimes'.
974
975         * mswindows.h: Do not include <direct.h>.  Remove macro definition for
976         mkdir.
977
978 2011-04-18  Giuseppe Scrivano  <gscrivano@gnu.org>
979
980         * utils.c: Include <sys/time.h>.  Do not include <sys/utime.h>.
981         (touch): Use `utimes' instead of `utime'.
982
983         * openssl.c (openssl_read): Fix build error.
984
985 2011-04-17  Giuseppe Scrivano  <gscrivano@gnu.org>
986
987         * wget.h [HAVE_LIBSSL32]: Define HAVE_SSL.
988
989         * gnutls.c (wgnutls_peek): Use correctly FIONBIO codes under Mingw32.
990         Reported by: Ray Satiro <raysatiro@yahoo.com>
991
992 2011-04-13  Giuseppe Scrivano  <gscrivano@gnu.org>
993
994         * openssl.c (openssl_poll): Check if the specified timeout is zero after
995         SSL_pending.
996         (openssl_peek): Make the call non-blocking.
997
998 2011-04-11  Cristian Rodríguez  <crrodriguez@opensuse.org> (tiny change)
999
1000         * openssl.c (ssl_init) [! OPENSSL_NO_SSL2]: Use SSLv2 only when
1001         available.
1002
1003 2011-04-07  Giuseppe Scrivano  <gscrivano@gnu.org>
1004
1005         * gnutls.c (ssl_init): Allow X509 v1 certificates.
1006         Suggested by: Ray Satiro <raysatiro@yahoo.com>
1007
1008         (wgnutls_peek): Remove tight loop around gnutls_record_recv.
1009
1010 2011-04-07  Ray Satiro  <raysatiro@yahoo.com> (tiny change)
1011
1012         (wgnutls_read): Check for the GNUTLS_E_AGAIN return code in the recv
1013         tight loop.
1014         (wgnutls_write): Likewise.
1015         (wgnutls_peek): Likewise.
1016
1017 2011-04-07  Giuseppe Scrivano  <gscrivano@gnu.org>
1018
1019         * gnutls.c (wgnutls_peek): New local variable `read'.
1020         Use `read' instead of `ret' to store the number of read bytes.
1021         Reported by: Ray Satiro <raysatiro@yahoo.com>
1022
1023 2011-04-04  Giuseppe Scrivano  <gscrivano@gnu.org>
1024
1025         * openssl.c [WINDOWS]: Include <w32sock.h>.
1026         (openssl_read): Retry the read on SSL_ERROR_WANT_READ.
1027
1028         * host.c [WINDOWS]: Include <winsock2.h> and <ws2tcpip.h>.
1029         Suggested by: Ray Satiro <raysatiro@yahoo.com>.
1030
1031         * Makefile.am (LIBS): Remove  @LIBSSL@ @W32LIBS@
1032
1033 2011-04-03  Giuseppe Scrivano  <gscrivano@gnu.org>
1034
1035         * gnutls.c: Include <fcntl.h>.
1036         (wgnutls_peek): Make the socket non blocking before attempt a read.
1037
1038         * gnutls.c: Include <sys/ioctl.h>.
1039         (wgnutls_peek) [F_GETFL]: Use fcntl.
1040         (wgnutls_peek) [! F_GETFL]: Use ioctl.
1041
1042
1043 2011-03-31  Giuseppe Scrivano  <gscrivano@gnu.org>
1044
1045         * recur.c (download_child_p): When --no-parent is used, check that the
1046         ports are the same only in case the same protocol is used.
1047         Reported by: Karl Berry <karl@freefriends.org>
1048
1049         * res.c (res_parse): Add new line to debug messages.
1050
1051 2011-03-21  Giuseppe Scrivano  <gscrivano@gnu.org>
1052
1053         * iri.h (parse_charset) [!ENABLE_IRI]: Use the parameter to avoid a
1054         compiler warning.
1055
1056         * iri.h: Declare `dummy_iri' as extern not static.
1057         * main.c [!ENABLE_IRI]: Define `dummy_iri'.
1058         (main) [!ENABLE_IRI]: Initialize `dummy_iri'.
1059
1060 2011-03-11  Giuseppe Scrivano  <gscrivano@gnu.org>
1061
1062         * ftp.c (getftp): Fix some memory leaks.
1063         * ftp-ls.c (ftp_parse_winnt_ls): Likewise.
1064         Reported by: Zhenbo Xu <zhenbo1987@gmail.com>.
1065
1066 2010-11-20  Filipe Brandenburger <filbranden@gmail.com> (tiny change)
1067
1068         * http.c (gethttp): Repeat a POST request on a 307 response.
1069         * retr.c (retrieve_url): Use NEWLOCATION_KEEP_POST.
1070         * wget.h: Define NEWLOCATION_KEEP_POST.
1071
1072 2011-03-02  Tomasz Buchert <tomek.buchert@gmail.com> (tiny change)
1073
1074         * http.c (ensure_extension): Do not adjust the extension if the file
1075         ends in .htm.
1076
1077 2011-02-22  Gilles Carry  <gilles.carry@st.com>
1078
1079         * main.c (prompt_for_password): Use stderr instead of stdout
1080         to prompt password. This allows to use --output-document=- and
1081         --ask-password simultaneously. Without this, redirecting stdout
1082         makes password prompt invisible and mucks up payload such as in
1083         this example:
1084         wget --output-document=- --ask-password -user=foo \
1085                 http://foo.com/tarball.tgz | tar zxf -
1086
1087 2011-02-22  Steven Schubiger  <stsc@member.fsf.org>
1088
1089         * http.c (gethttp, http_loop): Move duplicated code which is run
1090         when an existing file is not to be clobbered to a function.
1091         (get_file_flags): New static function.
1092
1093 2010-12-10  Evgeniy Philippov <egphilippov@googlemail.com> (tiny change)
1094
1095         * main.c (main): Initialize `total_downloaded_bytes'.
1096
1097 2010-12-09  Giuseppe Scrivano  <gscrivano@gnu.org>
1098
1099         * main.c (main): If --no-clobber and --convert-links are used at the
1100         same time, use only the latter.
1101         Reported by: Romain Vimont <rom@rom1v.com>
1102
1103 2010-12-07  Jessica McKellar <jesstess@mit.edu> (tiny change)
1104
1105         * main.c: Make help message clearer.
1106
1107 2010-12-02  Giuseppe Scrivano  <gscrivano@gnu.org>
1108
1109         * build_info.c.in: Do not list md5.
1110
1111 2010-12-01  Giuseppe Scrivano  <gscrivano@gnu.org>
1112
1113         * cmpt.c: Include <unistd.h> inconditionally.
1114         * connect.c: Likewise.
1115         * convert.c: Likewise.
1116         * ftp-basic.c: Likewise.
1117         * ftp-ls.c: Likewise.
1118         * ftp.c: Likewise.
1119         * gnutls.c: Likewise.
1120         * http.c: Likewise.
1121         * init.c: Likewise.
1122         * log.c: Likewise.
1123         * main.c: Likewise.
1124         * openssl.c: Likewise.
1125         * progress.c: Likewise.
1126         * ptimer.c: Likewise.
1127         * recur.c: Likewise.
1128         * retr.c: Likewise.
1129         * url.c: Likewise.
1130         * utils.c: Likewise.
1131
1132         * retr.c (fd_read_body): Dinamically allocate `dlbuf'.
1133
1134 2010-11-27  Reza Snowdon  <vivi@mage.me.uk>
1135
1136         * init.c (initialize): If 'ok' is not zero; exit, as this
1137         indicates there was a problem parsing 'SYSTEM_WGETRC'.
1138         Fixes bug #20370.
1139
1140 2010-11-22  Giuseppe Scrivano  <gscrivano@gnu.org>
1141
1142         Revert last commit.
1143         * ftp.c (getftp): When count > 0, don't append to the existing file.
1144         * http.c (gethttp): Likewise.
1145
1146 2010-11-21  Giuseppe Scrivano  <gscrivano@gnu.org>
1147
1148         * ftp.c (getftp): If `count' is bigger than zero, try to resume the
1149         download, not restart it.
1150         * http.c (gethttp): Likewise.
1151         Suggested by: Evgeny Kapun <abacabadabacaba@gmail.com>.
1152
1153 2010-11-19  Giuseppe Scrivano  <gscrivano@gnu.org>
1154
1155         * ftp.c (getftp): Accept new argument `count'.  When `count' is
1156         bigger than zero, assume the file can be overwritten.
1157         (ftp_loop_internal): Pass new argument `count' to `getftp'.
1158
1159         * http.c (gethttp): Accept new argument `count'.  When `count' is
1160         bigger than zero, assume the file can be overwritten.
1161         (http_loop): Pass new argument `count' to `gethttp'.
1162         Reported by: Evgeny Kapun <abacabadabacaba@gmail.com>.
1163
1164 2010-08-08  Reza Snowdon <vivi@mage.me.uk>
1165
1166         * main.c (main): inserted 'defaults'.
1167           Added additional 'getopt_long' while loop to search and apply a
1168           user specified config file before any other options.
1169           New variables 'retconf', 'use_userconfig',
1170           'confval', 'userrc_ret', 'config_opt'.
1171         * init.c: Include stdbool.h.
1172           (commands): Added config details.
1173           (defaults): Removed static.
1174           (wgetrc): Removed static.
1175           (initialize): Removed 'defaults ()',
1176           changed 'int ok' to 'bool ok'.
1177         * options.h: New variable 'choose_config'.
1178         * init.h (defaults): exported function.
1179           (run_wgetrc): exported function.
1180
1181 2010-10-24  Jessica McKellar <jesstess@mit.edu> (tiny change)
1182
1183         * main.c (main): Print the total download time as part of the
1184         summary for downloads using the recursive or page requisites
1185         options. Fixes bug #21359.
1186
1187 2010-10-24  Giuseppe Scrivano  <gscrivano@gnu.org>
1188
1189         * gnutls.c (wgnutls_peek): Do not return an error when
1190         `gnutls_record_recv' fails but some data is already available.
1191
1192 2010-10-23  Giuseppe Scrivano  <gscrivano@gnu.org>
1193
1194         * Makefile.am (LIBS): Remove @LIBGNUTLS@ and use @W32LIBS@ as last
1195         component.
1196
1197         * gnutls.c (wgnutls_peek): Block until data is available.
1198
1199 2010-10-21  Giuseppe Scrivano  <gscrivano@gnu.org>
1200
1201         * retr.c (retrieve_url): Do not register HTML files twice.
1202         Reported by: Manfred Koizar <mkoi-pg@aon.at>.
1203
1204 2010-10-18  Manfred Koizar <mkoi-pg@aon.at> (tiny change)
1205
1206         * html-url.c (tag_handle_link): Do not assume external links type
1207         to be always "text/html".
1208
1209 2010-10-16  Giuseppe Scrivano  <gscrivano@gnu.org>
1210
1211         * connect.c (socket_ip_address): Initialize `sockaddr' to zero.
1212         * ftp-basic.c (ftp_epsv): Remove dead assignment to `s'.
1213         * ftp-ls.c (ftp_parse_vms_ls): Remove dead assignment to `len'.
1214         * http.c (skip_short_body): Remove dead assignment to `ret'.
1215         * init.c (wgetrc_user_file_name): Remove dead assignment to `home'.
1216         * main.c (main): Silent warning reported by clang.
1217         (http_loop): Silent warning reported by clang.
1218         * retr.c (retrieve_url): Likewise.
1219         * url.c (init_seps): Remove dead assignment to `p'.
1220
1221 2010-10-11  Giuseppe Scrivano  <gscrivano@gnu.org>
1222
1223         * ftp.c (getftp): Fix indentation.
1224
1225 2010-10-11  Steven Schubiger <stsc@member.fsf.org>
1226
1227         * ftp.c (getftp): Initialize `targ'.
1228
1229 2010-10-08  Ivanov Anton <x86mail@gmail.com> (tiny change)
1230
1231     * src/html-url.c (check_style_attr): Skip quotes when they are present.
1232
1233 2010-10-06  Giuseppe Scrivano  <gscrivano@gnu.org>
1234
1235         * main.c (main): Remove unused variable `status'.
1236
1237 2010-09-25  Merinov Nikolay  <kim.roader@gmail.com>
1238
1239         * init.c: Add "unlink" command into command list.
1240         * main.c: Add "unlink" option into option_data list.
1241         * options.h: Adding unlink field into struct options.
1242         * wget.h: Addind UNLINKERR error into uerr_t enum.
1243         * exits.c (get_status_for_err): define status for UNLINKERR.
1244         * ftp.c (getftp): unlink file if exists, instead clobbering.
1245         (ftp_loop_internal): processing UNLINKERR.
1246         * http.c (gethttp): unlink file if exists, instead clobbering.
1247         (http_loop): processing UNLINKERR.
1248
1249 2010-09-24  Dennis, CHENG Renquan <crquan@fedoraproject.org>
1250
1251         Fix problem when content-disposition is used with recursive downloading.
1252         * url.h (url_file_name): Add a new argument `replaced_filename'.
1253         * url.c (url_file_name): Likewise.
1254         * http.c (parse_content_disposition): Do not add a prefix to the return
1255         value.
1256         (test_parse_content_disposition): Adjust tests.
1257         (gethttp): Pass additional parameter to `url_file_name'.
1258         (http_loop): Likewise.
1259         * ftp.c (ftp_loop_internal, ftp_get_listing, ftp_retrieve_list)
1260         (ftp_loop): Likewise.
1261
1262 2010-09-14  Giuseppe Scrivano  <gscrivano@gnu.org>
1263
1264         * convert.c (local_quote_string): Accept new parameter `no_html_quote'.
1265         Inhibit HTML quoting when `no_html_quote'.
1266         (convert_links): Disable HTML quoting in CSS files.
1267         Reported by: Manuel Reinhardt <reinhardt@syslab.com>.
1268
1269 2010-09-12  Giuseppe Scrivano  <gscrivano@gnu.org>
1270
1271         * main.c (print_help): Align --trust-server-names help text with
1272         the rest of the text.
1273         Suggested by: Mike Frysinger  <vapier@gentoo.org>.
1274
1275 2010-08-20  Giuseppe Scrivano  <gscrivano@gnu.org>
1276
1277         * convert.c: Include "iri.h".
1278         (convert_links_in_hashtable): Parse the url, if
1279         necessary, before check if it is present in the dowloaded url
1280         map.
1281         Reported by: <sk.random@gmail.com>.
1282
1283 2010-08-09  Giuseppe Scrivano  <gscrivano@gnu.org>
1284
1285         Fix a problem with HTTP/1.0 proxies.
1286         * http.c (gethttp): Specify the connection header when keep alive
1287         connections are not used.
1288
1289         Use persistent connections with proxies supporting them.
1290         * http.c (gethttp): Specify Proxy-Connection to the HTTP proxy.
1291
1292 2010-08-06  Giuseppe Scrivano  <gscrivano@gnu.org>
1293
1294         * css-url.c (get_uri_string): Skip empty urls.
1295
1296 2010-07-25  John Trengrove  <jtrengrove@gmail.com> (tiny change)
1297
1298         * ftp.h: Added enum `parsetype'.  Modified struct to hold parsetype.
1299
1300         * ftp-ls.c (ftp_parse_unix_ls): Default to TT_DAY. Change to TT_HOUR_MIN
1301         if hours/minutes parsed.
1302         (ftp_parse_winnt_ls): Default to TT_HOUR_MIN.
1303         (ftp_parse_vms_ls): Default to TT_HOUR_MIN.
1304         (ftp_index): Print only if fileinfo struct value ttype set to TT_HOUR_MIN.
1305
1306 2010-07-30  Giuseppe Scrivano  <gscrivano@gnu.org>
1307
1308         * html-url.h (struct map_context): Remove member `tail'.
1309
1310         * html-url.c (append_url): Append the new url ordered by `position'.
1311         (get_urls_html): Do not initialize `ctx.tail'.
1312
1313         * css-url.c (get_urls_css_file): Do not initialize `ctx.tail'.
1314
1315 2010-07-29  Giuseppe Scrivano  <gscrivano@gnu.org>
1316
1317         * gnutls.c (wgnutls_peek): Don't read more data if the buffered peek
1318         data is sufficient.
1319
1320 2010-07-28  Giuseppe Scrivano  <gscrivano@gnu.org>
1321
1322         * http.h (http_loop): Add new argument `original_url'
1323         * http.c (http_loop): Add new argument `original_url'.  Use
1324         `original_url' to get a filename if `trustservernames' is false.
1325
1326         * init.c (commands): Add "trustservernames".
1327
1328         * options.h (library): Add variable `trustservernames'.
1329
1330         * main.c (option_data): Add trust-server-names.
1331         (print_help): Describe --trust-server-names.
1332
1333         * retr.c (retrieve_url): Pass new argument to `http_loop'.
1334
1335 2010-07-20  Alan Jenkins <alan-jenkins@tuffmail.co.uk> (tiny change)
1336
1337         * http.c (gethttp): Check content-length was set before trying to
1338         compare it with the already downloded filesize.
1339
1340 2010-07-20  Leonid Petrov <nouser@lpetrov.net>
1341
1342         * ftp.c (getftp): Don't attempt to retrieve the file if it is already
1343         completely.
1344         (ftp_loop_internal): Force the length to be zero for symlinks.
1345
1346 2010-07-18  Giuseppe Scrivano  <gscrivano@gnu.org>
1347
1348         * http.c (gethttp): If -N is used, don't exit immediately if the content
1349         length is less or equal than the existing file size.  Specify "Range"
1350         only if -N is not used.
1351         Reported by: Caleb Cushing <xenoterracide@gmail.com>.
1352
1353 2010-07-14  Giuseppe Scrivano  <gscrivano@gnu.org>
1354
1355         * ftp.c (max): Remove definition.
1356         (getftp): New variable `got_expected_bytes'.  Let `expected_bytes' be
1357         the value SIZE returns, otherwise use the bytes count returned by RETR.
1358         Suggested by Daniel Stenberg <daniel@haxx.se>.
1359
1360 2010-07-14  Giuseppe Scrivano  <gscrivano@gnu.org>
1361
1362         * ftp.c (max): Add definition.
1363         (getftp): Consider for `expected_bytes' the greatest value between the
1364         bytes count returned by SIZE and the bytes count returned by RETR.
1365         Reported by: Jozua <jozua@sparky.za.net>.
1366
1367 2010-07-11  Giuseppe Scrivano  <gscrivano@gnu.org>
1368
1369         * http.c (http_loop): New variable `force_full_retrieve'.  If the remote
1370         file is newer that the local one then inhibit -c.
1371         Reported by: Caleb Cushing <xenoterracide@gmail.com>.
1372
1373 2010-07-09  Giuseppe Scrivano  <gscrivano@gnu.org>
1374
1375         * css-url.c (get_urls_css_file): Use `wget_read_file' instead of
1376         `read_file'.  Use `wget_read_file_free' instead of `read_file_free'.
1377         * convert.c (convert_links): Likewise.
1378         * html-url.c (get_urls_html, get_urls_file): Likewise.
1379         * res.c (res_parse_from_file): Likewise.
1380
1381         * utils.h: Rename `read_file' to `wget_read_file'.  Rename
1382         `read_file_free' to `wget_read_file_free'.
1383
1384         * utils.c (wget_read_file): Renamed from `read_file'.
1385         (wget_read_file_free): Renamed from `read_file_free'.
1386
1387 2010-07-05  Giuseppe Scrivano  <gscrivano@gnu.org>
1388
1389         * gnutls.c (ssl_init): New local variables `ca_directory' and `dir'.
1390         Load default root certificates under the `ca_directory' directory.
1391
1392 2010-07-03  Giuseppe Scrivano  <gscrivano@gnu.org>
1393
1394         * gnutls.c (ssl_connect_wget): New local variable `allowed_protocols'.
1395         Honor the --secure-protocol flag.
1396
1397 2010-06-20  Giuseppe Scrivano  <gscrivano@gnu.org>
1398
1399         * main.c (print_help): Fix help string for --random-wait.  Its range is
1400         [0.5*wait, 1.5*wait) not [0, 2*wait).
1401         Reported by: Tom Mizutani <gombei1970@gmail.com>.
1402
1403 2010-06-15  Giuseppe Scrivano  <gscrivano@gnu.org>
1404
1405         * gnutls.c [WIN32]: Include "w32sock.h".
1406         (FD_TO_SOCKET): Add definition.
1407         (ssl_connect_wget): Get the real socket handle by FD_TO_SOCKET.
1408         Define FD_TO_SOCKET if it is not yet defined.
1409
1410 2010-06-14  Giuseppe Scrivano  <gscrivano@gnu.org>
1411
1412         * gnutls.c: Include <stdlib.h>.
1413         (struct wgnutls_transport_context): Remove `peekstart'.
1414         (ssl_connect_wget): Renamed from `ssl_connect'.
1415         (wgnutls_poll): New variable `ctx'.
1416         (wgnutls_read): Don't use `ctx->peekstart'.
1417         (wgnutls_peek): Likewise.  Don't attempt to read if there is not
1418         ready data.
1419
1420 2010-06-14  Giuseppe Scrivano  <gscrivano@gnu.org>
1421         * http.c (http_loop): Always send a HEAD request when -N is used
1422         together with --content-disposition.
1423         Reported by: Jochen Roderburg <Roderburg@Uni-Koeln.DE>.
1424
1425 2010-06-10  Muthu Subramanian K <muthusuba@gmail.com> (tiny change)
1426
1427         * http.c (http_loop): Increase `total_downloaded_bytes' by
1428         `hstat.rd_size', not `hstat.len'.
1429
1430 2010-06-10  Giuseppe Scrivano  <gscrivano@gnu.org>
1431
1432         * main.c (print_version): Drop the current maintainer line.
1433
1434 2010-06-10  Giuseppe Scrivano  <gscrivano@gnu.org>
1435
1436         * Makefile.am (build_info.c): Generate the `build_info.c' file under
1437         the build directory.
1438         Patch by: Daniel Stenberg <daniel@haxx.se>.
1439
1440 2010-06-03  Giuseppe Scrivano  <gscrivano@gnu.org>
1441
1442         * http.c (http_loop): Do not send a HEAD request before the GET request
1443         when --content-disposition is used.
1444         Reported by: alex_wh@mail.ru.
1445
1446 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
1447
1448         * css.l: Use option "nounput".
1449         (YY_NO_INPUT): Add macro definition.
1450
1451 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
1452
1453         * html-parse.c (map_html_tags): Fix condition for closed tag.  Handle
1454         the case '>' is not specified after '/'.
1455
1456 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
1457
1458         * sysdep.h (_SVID_SOURCE): Remove definition.
1459         (_BSD_SOURCE): Remove definition.
1460
1461 2010-05-31  Giuseppe Scrivano  <gscrivano@gnu.org>
1462
1463         * recur.c (retrieve_tree): Remove variable `up_error_code'.
1464
1465         * iri.c (open_locale_to_utf8): Remove function.
1466
1467 2010-05-30  Giuseppe Scrivano  <gscrivano@gnu.org>
1468
1469         * html-parse.c (NAME_CHAR_P): Consider '<' an invalid character.
1470         (advance_declaration): Close the tag if '<' is found.
1471         (map_html_tags): Likewise.
1472
1473 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
1474
1475         * main.c (print_usage): Accept a new parameter `error'.
1476         (main): Print diagnostic messages to stderr, not stdout.
1477
1478 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
1479
1480         * Makefile.am (wget_SOURCES): Remove `snprintf.c'.
1481
1482         * snprintf.c: Remove file.
1483
1484 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
1485
1486         * main.c (main): Exit with failure when -k is specified and -O is not
1487         a regular file.
1488
1489 2010-05-27  Giuseppe Scrivano  <gscrivano@gnu.org>
1490
1491         * http.c (gethttp): Consider new cookies retrieved when the
1492         authorization fails.
1493
1494 2010-05-25  Giuseppe Scrivano  <gscrivano@gnu.org>
1495
1496         * host.c (sufmatch): Do not consider zero length entries.
1497
1498         * http.c (H_10X): New macro.
1499         (gethttp): Silently ignore 1xx responses.
1500
1501 2010-05-24  Giuseppe Scrivano  <gscrivano@gnu.org>
1502
1503         * iri.h (dummy_iri): Define static.
1504
1505         * css-tokens.h (css_tokens): Remove variable.
1506
1507 2010-05-23  Giuseppe Scrivano  <gscrivano@gnu.org>
1508
1509         * http.c (http_atotm): Count the NUL character when copying the locale
1510         string.
1511         Reported by: Florian Weimer <fw@deneb.enyo.de>
1512
1513 2010-05-16  Giuseppe Scrivano  <gscrivano@gnu.org>
1514
1515         * Makefile.am (LDADD): Remove MD5_LDADD.
1516         (MD5_LDADD): Remove definition.
1517         (AM_CPPFLAGS): Remove MD5_CPPFLAGS.
1518         (version.c): Remove dependency from MD5_LDADD.
1519         (../md5/libmd5.a): Remove rule.
1520
1521         * ftp-opie.c: Include "md5.h".  Do not include "gen-md5.h".
1522         (skey_response): New variable ctx.  Use md5 functions from the gnulib
1523         module instead of functions defined previously in the "gen-md5.h" file.
1524
1525         * gen-md5.h: Remove file.
1526         * gen-md5.c: Likewise.
1527
1528         * http.c: Include "md5.h".  Do not include "gen-md5.h".
1529         (digest_authentication_encode): New variable ctx.  Use md5 functions
1530         from the gnulib module instead of functions defined previously in the
1531         "gen-md5.h" file.
1532
1533 2010-05-15  Giuseppe Scrivano  <gscrivano@gnu.org>
1534
1535         * Makefile.am: Quote any path using $(top_srcdir) or $(top_builddir).
1536         (version.c): Remove dependency from configure.ac and Makefile.am.
1537
1538         * css.l: Include "wget.h".
1539
1540 2010-05-08  Giuseppe Scrivano  <gscrivano@gnu.org>
1541
1542         * Makefile.am: Update copyright years.
1543         * cmpt.c: Likewise.
1544         * connect.h: Likewise.
1545         * convert.c: Likewise.
1546         * convert.h: Likewise.
1547         * cookies.c: Likewise.
1548         * cookies.h: Likewise.
1549         * css-tokens.h: Likewise.
1550         * css-url.c: Likewise.
1551         * css-url.h: Likewise.
1552         * css.l: Likewise.
1553         * exits.c: Likewise.
1554         * exits.h: Likewise.
1555         * ftp-basic.c: Likewise.
1556         * ftp-ls.c: Likewise.
1557         * ftp-opie.c: Likewise.
1558         * ftp.c: Likewise.
1559         * ftp.h: Likewise.
1560         * gen-md5.c: Likewise.
1561         * gen-md5.h: Likewise.
1562         * gettext.h: Likewise.
1563         * gnutls.c: Likewise.
1564         * hash.c: Likewise.
1565         * hash.h: Likewise.
1566         * host.c: Likewise.
1567         * host.h: Likewise.
1568         * html-parse.c: Likewise.
1569         * html-parse.h: Likewise.
1570         * html-url.c: Likewise.
1571         * html-url.h: Likewise.
1572         * http-ntlm.c: Likewise.
1573         * http-ntlm.h: Likewise.
1574         * http.c: Likewise.
1575         * http.h: Likewise.
1576         * init.c: Likewise.
1577         * init.h: Likewise.
1578         * iri.c: Likewise.
1579         * iri.h: Likewise.
1580         * log.c: Likewise.
1581         * log.h: Likewise.
1582         * main.c: Likewise.
1583         * mswindows.c: Likewise.
1584         * mswindows.h: Likewise.
1585         * netrc.c: Likewise.
1586         * netrc.h: Likewise.
1587         * openssl.c: Likewise.
1588         * options.h: Likewise.
1589         * progress.c: Likewise.
1590         * progress.h: Likewise.
1591         * ptimer.c: Likewise.
1592         * ptimer.h: Likewise.
1593         * recur.c: Likewise.
1594         * recur.h: Likewise.
1595         * res.c: Likewise.
1596         * res.h: Likewise.
1597         * retr.c: Likewise.
1598         * retr.h: Likewise.
1599         * spider.c: Likewise.
1600         * spider.h: Likewise.
1601         * ssl.h: Likewise.
1602         * sysdep.h: Likewise.
1603         * test.c: Likewise.
1604         * test.h: Likewise.
1605         * url.c: Likewise.
1606         * url.h: Likewise.
1607         * utils.c: Likewise.
1608         * utils.h: Likewise.
1609         * wget.h: Likewise.
1610
1611 2010-05-07  Giuseppe Scrivano  <gscrivano@gnu.org>
1612
1613         * gnutls.c (wgnutls_close): Use always `close', not `closesocket'.
1614         * openssl.c (openssl_close): Use always `close', not `closesocket'.
1615         (ssl_connect_wget): Get the real socket handle by FD_TO_SOCKET.
1616         Define FD_TO_SOCKET if it is not yet defined.
1617         * Makefile.am (libunittest_a_CPPFLAGS): Add -I$(top_builddir)/lib.
1618         * mswindows.h: Always include <winsock2.h> and <ws2tcpip.h>.  Do not
1619         include <winsock.h>.
1620         [! INHIBIT_WRAP]: Remove macro's socket, bind, connect, accept, recv,
1621         send, select, getsockname, getpeername, setsockopt, closesocket.
1622         Remove wrapped_socket, wrapped_bind, wrapped_connect, wrapped_listen,
1623         wrapped_accept, wrapped_recv, wrapped_send, wrapped_select,
1624         wrapped_getsockname, wrapped_getpeername, wrapped_setsockopt,
1625         wrapped_closesocket prototypes.
1626         * mswindows.c:  Remove wrapped_socket, wrapped_bind, wrapped_connect,
1627         wrapped_listen, wrapped_accept, wrapped_recv, wrapped_send,
1628         wrapped_select, wrapped_getsockname, wrapped_getpeername,
1629         wrapped_setsockopt, wrapped_closesocket functions.  Remove WRAP macro.
1630         * host.h [WINDOWS]: Include <winsock2.h> not <winsock.h>.
1631         * connect.c: Include <sys/socket.h> and <sys/select.h> on any platform,
1632         gnulib ensures they exist.  Remove `read', `write', `close' macros.
1633         * Makefile.am: Copy build_info.c.in only if we are working in a VPATH.
1634         (AM_CPPFLAGS): Add directory with generated gnulib files.
1635
1636 2010-05-06  Giuseppe Scrivano  <gscrivano@gnu.org>
1637
1638         * Makefile.am (build_info.c): Generate build_info.c in the builddir,
1639         not srcdir.
1640
1641 2010-05-05  Giuseppe Scrivano  <gscrivano@gnu.org>
1642
1643         * http.c (gethttp): Give a nicer message on a malformed status line.
1644
1645 2010-05-04  Giuseppe Scrivano  <gscrivano@gnu.org>
1646
1647         * http.c (gethttp): Check `resp_status' return code and handle
1648         errors.
1649
1650 2010-05-01  Giuseppe Scrivano <gscrivano@gnu.org>
1651
1652         * http.c (request_send): Specify 1.1 as HTTP version for requests.
1653         (skip_short_body): Accept new parameter `chunked'.  New variable
1654         `remaining_chunk_size'.  Handle the chunked transfer encoding.
1655         (gethttp): New variable `chunked_transfer_encoding`.  Set `keepalive'
1656         by default to true.  Check if the server is using the chunked transfer
1657         encoding.
1658
1659         * retr.h: Define `rb_chunked_transfer_encoding'.
1660
1661         * retr.c (fd_read_body): New variable `chunked'.  New variable
1662         `remaining_chunk_size'.  Handle the chunked transfer encoding.
1663
1664 2010-03-04  Steven Schubiger  <stsc@member.fsf.org>
1665
1666         * ftp.c (ftp_loop_internal): Omit input file from being
1667         deleted after retrieval.
1668
1669         * retr.c (input_file_url): New function.
1670
1671         * retr.h: Add declaration for input_file_url.
1672
1673 2010-03-02  Steven Schubiger  <stsc@member.fsf.org>
1674
1675         * retr.c (retrieve_from_file): Improve checking for a URL
1676         by invoking url_valid_scheme instead of url_has_scheme.
1677
1678         * url.c (url_valid_scheme): New function.
1679
1680         * url.h: Add declaration for url_valid_scheme.
1681
1682 2010-03-02  Steven Schubiger  <stsc@member.fsf.org>
1683
1684         * retr.c (retrieve_from_file): Free memory of input file.
1685
1686 2010-03-01  Steven Schubiger  <stsc@member.fsf.org>
1687
1688         * retr.c (retrieve_url): Retrieve the local filename from ftp_loop.
1689         (retrieve_from_file): Return if there's no input file.
1690
1691         * ftp.c (ftp_loop_internal): Duplicate the local filename into
1692         retrieve_url's scope when a valid reference is being passed.
1693         (ftp_loop): Call ftp_loop_internal here with passing a
1694         reference to the local filename, elsewhere with NULL.
1695
1696         * ftp.h: Adjust declaration of ftp_loop.
1697
1698 2010-01-27  Paul Townsend  <aab@purdue.edu>  (tiny change)
1699
1700         * retr.c (fd_read_body): Be sure to measure timer when time has
1701         elapsed, too, not just when we've made progress.
1702
1703 2010-01-13  Micah Cowan  <micah@cowan.name>
1704
1705         * openssl.c: Fixed some mixed declarations-and-code.
1706
1707 2010-01-09  Micah Cowan  <micah@cowan.name>
1708
1709         * init.c, main.c, http.c, ftp.c, options.h: Renamed
1710         --no-match-server-timestamps to --no-use-server-timestamps, and
1711         add it to print_help.
1712
1713 2010-01-09  David Holman  <holman.david@gmail.com>  (tiny change)
1714
1715         * init.c, main.c, http.c, ftp.c, options.h: Added support for
1716         --no-match-server-timestamps.
1717
1718 2009-12-03  Peter Rosin  <peda@lysator.liu.se>
1719
1720         * snprintf.c (dopr): Output %p as unsigned.
1721
1722 2010-01-09  Jeremy Olexa  <darkside@gentoo.org>  (tiny change)
1723
1724         * init.c: Deal with systems which provide PATH_MAX in
1725         sys/param.h rather than limits.h.
1726
1727 2009-10-09  Steven Schweda  <sms@antinode.info>
1728
1729         * utils.c: Added characters " : \ | to the list of normal
1730         caret-escaped (ODS5) characters in the char_prop[] table.
1731
1732 2009-09-22  Arvind Jamuna Dixit  <ardsrk@gmail.com>
1733
1734         * http.c (extract_param, parse_content_disposition): Support
1735         RFC 2231 while parsing Content-Disposition header
1736
1737 2009-10-24  Petr Pisar  <petr.pisar@atlas.cz>
1738
1739         * openssl.c: Implement support for (multiple) subjectAltNames in
1740         X509 certificates, not just the commonName.
1741
1742 2009-10-09  Micah Cowan  <micah@cowan.name>
1743
1744         * main.c: Fix declaration of compiled_features.
1745
1746         * build_info.c.in: Adapt to new input format. Added a check for
1747         large-file support. Replaced the "openssl" and "gnutls"
1748         advertisements with a single "ssl/foo" advertisement.
1749
1750 2009-09-30  Micah Cowan  <micah@cowan.name>
1751
1752         * sysdep.h: Unconditionally include stdbool.h (gnulib has it for
1753         systems that don't supply it.)
1754
1755         * vms.c: Added functions vms_basename(), used to extract the
1756         bare executable name from argv[0], and vms_getpass(), a
1757         VMS-specific replacement for GNU getpass().
1758
1759          vms.c: Added global string constants: compilation_string
1760         (NULL), link_string (NULL), and version_string (real).
1761
1762 2009-09-24  Micah Cowan  <micah@cowan.name>
1763
1764         * vms.c: Moved from vms/vms.c.
1765
1766         * sysdep.h: Use proper prototypes for snprintf, vsnprintf (thanks
1767         to Steven Schweda).
1768
1769 2009-09-24  Steven Schweda  <sms@antinode.info>
1770
1771         * main.c (print_version): Remove VMS-conditional build info
1772         string; the new VMS builders use OS_TYPE.
1773
1774         * ftp.c (getftp): Fix accidental use of target -> targ.
1775
1776 2009-09-24  Micah Cowan  <micah@cowan.name>
1777
1778         * host.c (host_errstr): host_errstr should return const char *.
1779
1780 2009-09-22  Micah Cowan  <micah@cowan.name>
1781
1782         * Makefile.am (version.c): Explicitly tell Mercurial where the
1783         top-source repository should be, so it doesn't accidentally use
1784         the repository for a containing directory (for instance, if the
1785         user's home directory is managed by a Mercurial repo). Also
1786         ensures we find the repository, even if the build directory is
1787         outside the source directory.
1788
1789         * wget.h: define WINDOWS if _WIN32 or __WIN32__ is defined, but
1790         not __CYGWIN__.
1791
1792         * mswindows.c (xsleep): Check for availability of the sleep
1793         function, in addition to the usleep function.
1794         (get_winsock_error, windows_strerror): Removed (gnulib already
1795         supplies this functionality).
1796
1797         * mswindows.h [NEED_GAI_STRERROR]: define gai_strerror
1798         to (gnulib's) strerror, rather than windows_strerror. Removed
1799         error macro definitions provided by gnulib.
1800         (windows_strerror): Removed (gnulib already supplies this
1801         functionality).
1802
1803         * host.c: Don't declare h_errno when building on Windows.
1804
1805         * Makefile.am (LIBS): Added @W32LIBS@.
1806         (EXTRA_wget_SOURCES): Removed (it's in LIBOBJ now).
1807         (version.c): Removed dependency on $(LDADD), since it may include
1808         dependencies that are not part of the Wget sources (-lwsock32, for
1809         instance).
1810
1811         * openssl.c (ssl_check_certificate): Avoid reusing the same buffer
1812         space for successive quoted arguments. Thanks to Steven Schweda
1813         for pointing out the problem.
1814
1815 2009-09-21  Micah Cowan  <micah@cowan.name>
1816
1817         * progress.c (update_speed_ring): "the the" -> "the".
1818
1819         * css-url.c, iri.c, mswindows.c: Removed assert.h inclusion (not
1820         using it).
1821
1822 2009-09-11  Steven Schweda  <sms@antinode.info>
1823
1824         * utils.c, utils.h (fopen_excl): Make second argument an int,
1825         rather than a bool (so it can handle the appropriate VMS version
1826         of the flag).
1827
1828         * main.c (print_version): Don't print LOCALEDIR unless NLS is
1829         enabled.
1830
1831         * http.c (gethttp): Pass FOPEN_BIN_FLAG, instead of true.
1832
1833         * ftp.c (ftp_retrieve_glob): Cast strcmp to assign to cmp, for a
1834         silly HP build environment.
1835
1836 2009-09-08  Steven Schubiger  <stsc@member.fsf.org>
1837
1838         * main.c, init.c: Mark the --preserve-permissions and
1839         --html-extension option as deprecated.
1840
1841 2009-09-06  Micah Cowan  <micah@cowan.name>
1842
1843         * ftp.c (getftp, ftp_loop_internal): Separate "len" input/output
1844         parameter (with different meanings for input and output), into two
1845         separate parameters, one input (passed_expected_bytes) and one
1846         output (qtyread). Fixes bug #26870.
1847
1848 2009-09-05  Steven Schubiger  <stsc@member.fsf.org>
1849
1850         * retr.h: Declare set_local_file() to avoid build warnings.
1851
1852 2009-09-05  Gisle Vanem  <gvanem@broadpark.no>
1853
1854         * connect.c, init.c, main.c, openssl.c, options.h:  Replace
1855         "ifdef MSDOS" with "ifdef USE_WATT32" since DOS-targets in fact
1856         use the Watt-32 tcp/ip stack.
1857
1858 2009-09-04  Micah Cowan  <micah@cowan.name>
1859
1860         * Makefile.am: Move build_info.c to wget_SOURCES from
1861         nodist_wget_SOURCES, reduce dependencies, and invoke build_info.pl
1862         in its new home, $(top_srcdir)/build-aux.
1863
1864 2009-09-03  Micah Cowan  <micah@cowan.name>
1865
1866         * ftp-ls.c (ftp_parse_vms_ls): Replace use of localtime_r with
1867         localtime, as not all platforms have localtime_r.
1868
1869         * Makefile.am (wget_SOURCES): Rearranged some of the file order,
1870         so .c files and .h files are apart. Added gettext.h, so that it
1871         shows up in the dist.
1872
1873 2009-09-02  Micah Cowan  <micah@cowan.name>
1874
1875         * gettext.h: Refreshed from gettext 0.17.
1876
1877         * test.c: Added definition of program_name variable, required by
1878         lib/error.c (libgnu.a). Doesn't cause problems until you try to
1879         build on a non-GNU system...
1880
1881         * build_info.c.in: Removed useless "+gettext" feature ad.
1882
1883 2009-08-29  Steven Schubiger  <stsc@member.fsf.org>
1884
1885         * convert.c (local_quote_string): Percent-encode semicolons
1886         in local file strings.
1887
1888 2009-08-27  Micah Cowan  <micah@cowan.name>
1889
1890         * wget.h (uerr_t): added new VERIFCERTERR code for SSL certificate
1891         problems. Marked exit codes that are defined but never used (at
1892         least, the ones I could find).
1893
1894         * retr.c, retr.h (retrieve_url): Added a new boolean argument to
1895         determine whether an exit status should be recorded.
1896         (retrieve_from_file): Adjust to new retrieve_url signature.
1897
1898         * res.c (res_retrieve_file): Don't have retrieve_url record an
1899         exit status for robots.txt.
1900
1901         * recur.c (retrieve_tree): Adjust to new retrieve_url signature.
1902
1903         * main.c (main): Use the exit status stored by retrieve_url.
1904
1905         * http.c (gethttp): Distinguish certificate verification problems
1906         from SSL connection issues.
1907         (http_loop): Handle newly-created VERIFCERTERR error code.
1908
1909         * exits.c, exits.h: Newly added.
1910
1911         * Makefile.am (wget_SOURCES): Add exits.c and exits.h.
1912
1913 2009-08-27  Micah Cowan  <micah@cowan.name>
1914
1915         * http.c (gethttp): Make sure Wget heeds cookies when they
1916         are sent with a 401 response; or any other sort of response for
1917         that matter (#26775).
1918
1919 2009-08-19  Micah Cowan  <micah@cowan.name>
1920
1921         * openssl.c (ssl_check_certificate): Only warn about an attack if
1922         the hostname would otherwise have matched. Also some formatting
1923         cleanup.
1924
1925 2009-08-19  Joao Ferreira  <joao@joaoff.com>
1926
1927         * openssl.c (ssl_check_certificate): Detect embedded NUL
1928         characters in the SSL certificate common name.
1929
1930 2009-08-17  Tony Lewis  <tlewis@exelana.com>
1931
1932         * http.c (gethttp): Ensure that we parse Content-Length before we
1933         attempt to refer to its value. Without this fix, NTLM support was
1934         completely buggered. #27192
1935
1936 2009-08-09  Michael Baeuerle  <michael.baeuerle@gmx.net>
1937
1938         * ftp.c: #include <strings.h> for strcasecmp.
1939
1940 2009-07-28  Micah Cowan  <micah@cowan.name>
1941
1942         * main.c (option_data): Rename --html-extension to
1943         --adjust-extension.
1944         (print_help): Ditto.
1945
1946         * options.h (struct option): Rename html_extension to
1947         adjust_extension.
1948         * http.c (gethttp): Ditto.
1949         * convert.c (local_quote_string): Ditto.
1950
1951         * init.c (commands): Add "adjustextension", and reflect rename
1952         change for opt.adjust_extension, for both "adjustextension" and
1953         "htmlextension".
1954
1955 2009-07-27  Micah Cowan  <micah@cowan.name>
1956
1957         * options.h (struct options): Added restrict_files_nonascii
1958         boolean field.
1959
1960         * url.c (FILE_CHAR_TEST): Add check for chars outside the ASCII
1961         range.
1962
1963         * init.c (defaults): Add restrict_files_nonascii to initialization.
1964         (cmd_spec_restrict_file_names): Allow parsing of "ascii" keyword.
1965
1966 2009-07-27  Marcel Telka  <marcel@telka.sk>
1967
1968         * iri.c (do_conversion): Typo: invalide -> invalid
1969
1970 2009-07-27  Petr Pisar  <petr.pisar@atlas.cz>
1971
1972         * main.c (print_help): Fixed a couple typos.
1973
1974 2009-07-26  Micah Cowan  <micah@cowan.name>
1975
1976         * main.c (option_data): Rename --locale option to --local-encoding
1977         (print_help): Document --no-iri, --local-encoding, and
1978         --remote-encoding, within usage message. Remove defunct
1979         --preserve-permissions.
1980
1981 2009-07-23  Micah Cowan  <micah@cowan.name>
1982
1983         * progress.c (get_eta): Change "Translation note" in comment to
1984         "TRANSLATORS", so it actually appears in wget.pot.
1985
1986 2009-07-06  Micah Cowan  <micah@cowan.name>
1987
1988         * main.c (print_help): Improve documentation of --base.
1989
1990 2009-07-05  Micah Cowan  <micah@cowan.name>
1991
1992         * html-url.c (tag_handle_meta): Handle meta name="robots"
1993         properly: deal with whitespace, commas after...
1994
1995         * netrc.c (parse_netrc): Rename local-scope variable "quote" to
1996         "qmark", to avoid conflict with the function name.
1997
1998 2009-07-05  Petr Pisar  <petr.pisar@atlas.cz>
1999
2000         * main.c (print_version): Mark initial line for translation, along
2001         with (env), (user), and (system). Change copyright year to 2009.
2002
2003         * http.c (http_loop): Space after colon.
2004
2005         * gnutls.c (ssl_check_certificate): Use quote function, rather
2006         than explicit quotes.
2007
2008 2009-07-05  Micah Cowan  <micah@cowan.name>
2009
2010         * Makefile.am (version.c): Add dependency on configure.ac.
2011
2012         * iri.c: Mark some strings for translation.
2013
2014 2009-07-04  Steven Schweda  <sms@antinode.info>
2015
2016         * wget.h (ORIG_SFX): Macro added, to supply an alternative "_orig"
2017         suffix on VMS.
2018
2019         * connect.c, host.c, host.h, main.c: Include "vms_ip.h" rather
2020         than <netdb.h> on VMS systems.
2021
2022         * convert.c (write_backup_file): Use "_orig" rather than ".orig"
2023         on VMS.
2024
2025         * ftp-basic.c (ftp_list): Don't use LIST -a on VMS servers.
2026
2027         * ftp.c [__VMS]: Include "vms.h"
2028         * ftp.c (getftp): Disable some unhelpful "for VMS" code. Pass the
2029         OS type to ftp_list.
2030         (getftp) [__VMS]: Alter the filename as required, and invoke fopen
2031         with extra optional arguments.
2032         (ftp_retrieve_list): Set permissions before setting the times.
2033
2034         * ftp-ls.c [__VMS]: Various improvements.
2035
2036         * http.c (SET_USER_AGENT): Added. Include operating-system info in
2037         the User-Agent header.
2038         (gethttp): Use ORIG_SFX macro.
2039         (gethttp) [__VMS]: invoke fopen with extra arguments to
2040         communicate file type.
2041         (http_loop): Add cast to time_t.
2042
2043         * init.c (wgetrc_user_file_name) [__VMS]: Adjustments for where to
2044         find the .wgetrc.
2045
2046         * log.c: Adjustments to improve handling of log files on VMS.
2047
2048         * main.c [__VMS]: Added --ftp-stmlf option (and associated
2049         documentation). Adjust description of backup-suffixes, as they now
2050         differ for VMS.
2051         (print_help, print_version): Include OS type in version
2052         information.
2053         (main) [__VMS]: Invoke fopen with extra options, to specify file
2054         type information.
2055
2056         * netrc.c (search_netrc) [__VMS]: Fix .netrc-finding.
2057
2058         * openssl.c, openssl.h (ssl_connect_wget): Renamed from ssl_connect.
2059
2060         * options.h (struct options): Add ftp_stmlf field.
2061
2062         * retr.c (write_data) [__VMS]: Avoid fflush.
2063
2064         * url.c [__VMS]: Include vms.h.
2065         * url.c (url_file_name) [__VMS]: Handle naming as required for VMS.
2066
2067         * utils.c [__VMS]: Include vms.h. Various added facilities for VMS
2068         needs.
2069
2070 2009-07-04  Micah Cowan  <micah@cowan.name>
2071
2072         * main.c (print_version): Allow localization of the version-info
2073         labels, eschew attempts at alignment (which is complicated when
2074         handling translated strings), and avoid using printf() with
2075         variable-stored format strings that lack conversion
2076         specifications.
2077         (format_and_print_line): For similar reasons, don't calculate
2078         line-continuation tabulation based on the number of bytes in a
2079         string.
2080
2081 2009-07-04  Steven Schubiger  <stsc@member.fsf.org>
2082
2083         * url.c (url_parse): If an URL scheme is invalid, distinguish
2084         between an unsupported or missing scheme.
2085
2086         * url.c: Add a "missing scheme" entry to parse_errors.
2087
2088 2009-07-03  Micah Cowan  <micah@cowan.name>
2089
2090         * iri.h (iri_dup): Provide macro definition for when IRIs are
2091         disabled.
2092
2093         * Makefile.am (LIBS): Added @LIBICONV@.
2094         (wget_SOURCES): Added iri.h.
2095         (EXTRA_wget_SOURCES): Added iri.c, so it gets packaged even if IRI
2096         support was disabled.
2097
2098 2009-07-02  Micah Cowan  <micah@cowan.name>
2099
2100         * recur.c (url_enqueue): Quote enqueue/dequeue debug messages.
2101
2102         * html-url.c (append_url): Change "merge()" quoting style from
2103         locale_quoting_style to escape_quoting_style.
2104
2105 2009-07-01  Micah Cowan  <micah@cowan.name>
2106
2107         * retr.c (retrieve_url): Use the existing "redirect" label,
2108         instead of superfluous "second_try". Removed no-longer-accurate
2109         debug statement. Use the "newloc" parameter to store the fallback
2110         URL, when IRI version was rejected.
2111
2112         * recur.c (retrieve_tree): Always use the parsed URL for tracking
2113         the Referer, since that's the one we actually requested (if
2114         there's a difference in terms of percent-encodings and such).
2115
2116 2009-07-01  Steven Schubiger  <stsc@member.fsf.org>
2117
2118         * Makefile.am: Add a rule to generate build_info.c and list
2119         the build_info.c.in file in EXTRA_DIST. Adjust elsewhere
2120         where needed.
2121
2122         * build_info.c: Remove this static source file.
2123
2124         * build_info.c.in: Data for generation of build_info.c.
2125
2126 2009-06-29  Micah Cowan  <micah@cowan.name>
2127
2128         * html-url.c (append_url): Quote some more arguments that might
2129         contain characters that are inappropriate to display for the
2130         current locale.
2131
2132         * retr.c (retrieve_from_file): Be sure to pass iri information
2133         when parsing an input-fle url, and be sure to hand a clean iri
2134         struct, off to retrieve_tree and retrieve_url.
2135
2136         * iri.c, iri.h (iri_dup): Added.
2137
2138         * retr.c (retrieve_url): Re-parse for IRI fallback.
2139
2140         * main.c (main): Set up iri before the url_parse invocation (so we
2141         can use it).
2142
2143 2009-06-20  Jay Krell  <jay.krell@cornell.edu>
2144
2145         * sysdep.h (_ALL_SOURCE): (small change) Define the _ALL_SOURCE
2146         macro on INTERIX systems. (I switched the location from ftp.c to
2147         sysdep.h --mjc)
2148
2149 2009-06-15  Micah Cowan  <micah@cowan.name>
2150
2151         * ftp.c (getftp): If we can't accept the connection, return
2152         CONERROR, not whatever the contents of err happens to be. Fixes
2153         bug #25015.
2154
2155         * retr.c (fd_read_body): Make both args to progress_create
2156         consistent, resulting in an accurate progress display. Fixes bug
2157         #24948.
2158
2159 2009-06-14  Micah Cowan  <micah@cowan.name>
2160
2161         * Makefile.am (wget_SOURCES): css-tokens.h needs to ship with
2162         dist, too.
2163
2164 2009-06-13  Micah Cowan  <micah@cowan.name>
2165
2166         * init.c: Rename setval_internal_wrapper to setval_internal_tilde,
2167         ensure we don't "replace" the tilde unless it's actually
2168         present. Clean up some minor GNU style issues.
2169
2170 2009-06-13  Julien Pichon  <julienpichon7@gmail.com>
2171
2172         * init.c: Handle tilde-expansion in wgetrc commands, without
2173         resorting to setting/unsetting globals to change behavior in one
2174         call location.
2175
2176 2009-06-12  Micah Cowan  <micah@cowan.name>
2177
2178         * host.c: Include <sys/types.h> before <sys/socket.h>. Not
2179         required by POSIX any more, but some older systems (such as
2180         FreeBSD 4.1) still need it, and it doesn't seem like it could
2181         hurt...
2182
2183         * build_info.c (library): Handle "https" as a feature in its own
2184         right, apart from "gnutls" and "openssl".
2185
2186         * host.c: Declare h_errno if no declaration is provided. Idea
2187         thanks to Maciej W. Rozycki.
2188
2189 2009-06-11  Xin Zou  <zouxin2008@gmail.com>
2190
2191         * http.c (gethttp): Fix some memory leaks.
2192
2193 2009-06-11  Micah Cowan  <micah@cowan.name>
2194
2195         * http.c (http_atotm): Handle potential for setlocale's return
2196         value to be static storage. Thanks to Benjamin Wolsey
2197         <bwy@benjaminwolsey.de>.
2198
2199         * sysdep.h: Need NAMESPACE_TWEAKS on non-Linux glibc-based
2200         systems, too. Thanks to Robert Millan.
2201
2202 2009-05-28  Steven Schubiger  <stsc@member.fsf.org>
2203
2204         * ftp.c (ftp_get_listing): Update the "listing file"
2205         string after calling ftp_loop_internal().
2206
2207 2009-05-27  Steven Schubiger  <stsc@member.fsf.org>
2208
2209         * ftp.c (ftp_get_listing): Duplicate the "listing file"
2210         string to avoid memory corruption when FOPEN_EXCL_ERR is
2211         encountered.
2212
2213 2009-05-17  Steven Schubiger  <stsc@member.fsf.org>
2214
2215         * progress.c (eta_to_human_short): Fix the remaining hours
2216         to be displayed. Spotted by Tadeu Martins (#26411).
2217
2218 2009-04-24  Micah Cowan  <micah@cowan.name>
2219
2220         * hash.c: Change stdint.h inclusion to use HAVE_STDINT_H, not C99
2221         check.
2222
2223         * connect.c: stdint.h inclusion added.
2224
2225         Thanks to Markus Duft <mduft@gentoo.org> for a similar patch.
2226
2227 2009-04-20  Micah Cowan  <micah@cowan.name>
2228
2229         * Makefile.am (version.c): Fix unportable use of "echo -n".
2230
2231 2009-04-13  Steven Schubiger  <stsc@member.fsf.org>
2232
2233         * ftp.c (ftp_retrieve_list): Move the duplicated code that
2234         determines the local file to a function.
2235
2236         * http.c (http_loop): Likewise.
2237
2238         * retr.c (set_local_file): New function.
2239
2240 2009-04-11  Steven Schubiger  <stsc@member.fsf.org>
2241
2242         * init.c (initialize): Run a custom SYSTEM_WGETRC when
2243         provided as an environment variable.
2244
2245 2009-02-27  Gisle Vanem  <gvanem@broadpark.no>
2246
2247         * main.c (main): "freopen (NULL,.." causes an assertion in MSVC
2248         debug-mode.  I.e. NULL isn't legal. But the "CONOUT$" device works
2249         fine.
2250
2251 2009-02-27  Steven Schubiger  <stsc@member.fsf.org>
2252
2253         * ftp.c (ftp_loop_internal): Don't claim for FTP retrievals
2254         when writing to standard output either that the document
2255         has been saved. Addresses bug #20520 again.
2256
2257 2009-02-21  Steven Schubiger  <stsc@member.fsf.org>
2258
2259         * http.c (http_loop): When a document is written to
2260         standard output, don't claim it has been saved to a file.
2261         Addresses bug #20520.
2262
2263 2009-02-18  Steven Schubiger  <stsc@members.fsf.org>
2264
2265         * recur.h: Remove the dangling declaration for recursive_cleanup().
2266
2267 2009-02-01  Gerardo E. Gidoni  <gerel@gnu.org>
2268
2269         * main.c, recur.c, recur.h, res.c, retr.c, retr.h: restructured code to
2270         avoid multiple 'url_parse' calls.
2271
2272 2008-11-13  Micah Cowan  <micah@cowan.name>
2273
2274         * http.c (gethttp): Don't do anything when content-length >= our
2275         requested range.
2276
2277 2008-11-27  Saint Xavier  <wget@sxav.eu>
2278
2279         * http.c (gethttp): Move authentication code before filename
2280         allocation avoiding fallbacking on default filename because
2281         "Content-Disposition" header wasn't present before authentcation
2282         has been completed. Fixes bug #24862.
2283
2284 2008-11-16  Steven Schubiger  <stsc@members.fsf.org>
2285
2286         * main.c: Declare and initialize the numurls counter.
2287
2288         * ftp.c, http.c: Make the counter visible here and use it.
2289
2290         * options.h: Remove old declaration from options struct.
2291
2292 2008-11-15  Steven Schubiger  <stsc@members.fsf.org>
2293
2294         * init.c (defaults): Set default waitretry value.
2295
2296 2008-11-14  Steven Schubiger  <stsc@members.fsf.org>
2297
2298         * main.c (format_and_print_line): Use a custom format
2299         string for printing leading spaces.
2300
2301 2008-11-12  Micah Cowan  <micah@cowan.name>
2302
2303         * ftp-ls.c (ftp_index): HTML-escape dir name in title, h1, a:href.
2304
2305 2008-11-12  Alexander Belopolsky  <alexander.belopolsky@gmail.com>
2306
2307         * url.c, url.h (url_escape_unsafe_and_reserved): Added.
2308
2309         * ftp-ls.c (ftp_index): URL-escape, rather than HTML-escape, the
2310         filename appearing in the link.
2311
2312 2008-11-12  Steven Schubiger  <stsc@members.fsf.org>
2313
2314         * main.c (print_version): Hand the relevant
2315         xstrdup/xfree calls back to format_and_print_line().
2316
2317 2008-11-11  Steven Schubiger  <stsc@members.fsf.org>
2318
2319         * main.c (format_and_print_line): Move both the memory
2320         allocating and freeing bits upwards to print_version().
2321
2322 2008-11-10  Saint Xavier  <wget@sxav.eu>
2323
2324         * http.c: Make --auth-no-challenge works with user:pass@ in URLs.
2325
2326 2008-11-05  Micah Cowan  <micah@cowan.name>
2327
2328         * ftp.c (print_length): Should print humanized "size remaining"
2329         only when it's at least 1k.
2330
2331 2008-10-31  Micah Cowan  <micah@cowan.name>
2332
2333         * main.c (print_version): Add information about the mailing list.
2334
2335 2008-10-31  Alexander Drozdov  <dzal_mail@mtu-net.ru>
2336
2337         * retr.c (fd_read_hunk): Make assert deal with maxsize == 0.
2338
2339         * ftp-ls.c (clean_line): Prevent underflow on empty lines.
2340
2341 2008-10-26  Gisle Vanem  <gvanem@broadpark.no>
2342
2343         * main.c (format_and_print_line): Put variables on top of
2344         blocks (not all compilers are C99). Add an extra '\n' if
2345         SYSTEM_WGETRC isn't defined and printed.
2346
2347 2008-09-09  Gisle Vanem  <gvanem@broadpark.no>
2348
2349         * url.c (url_error): Use aprintf, not asprintf.
2350
2351 2008-09-09  Micah Cowan  <micah@cowan.name>
2352
2353         * init.c (home_dir): Save the calculated value for home,
2354         to avoid duplicated work on repeated calls.
2355         (wgetrc_file_name) [WINDOWS]: Define and initialize home var.
2356
2357         * build_info.c, main.c: Remove unnecessary extern vars
2358         system_wgetrc and locale_dir.
2359
2360         * main.c: Define program_name for lib/error.c.
2361
2362 2008-09-02  Gisle Vanem  <gvanem@broadpark.no>
2363
2364         * mswindows.h: Must ensure <stdio.h> is included before
2365         we redefine ?vsnprintf().
2366
2367 2008-08-08  Steven Schubiger  <stsc@members.fsf.org>
2368
2369         * main.c, utils.h: Removed some dead conditional DEBUG_MALLOC code.
2370
2371 2008-08-03  Micah Cowan  <micah@cowan.name>
2372
2373         * main.c (print_help): Added --default-page.
2374
2375 2008-08-01  Joao Ferreira  <joao@joaoff.com>
2376
2377         * init.c, main.c, options.h, url.c: Added option --default-page
2378         to support alternative default names for index.html
2379
2380 2008-08-03  Micah Cowan  <micah@cowan.name>
2381
2382         * build_info.c, css-url.c: #include wget.h, not config.h.
2383
2384 2008-08-03  Steven Schubiger  <stsc@members.fsf.org>
2385
2386         * url.c, url.h (url_error): Better messages for unsupported
2387         schemes, especially https.
2388
2389         * html-url.c, recur.c, retr.c: Adjust to new url_error
2390         invocation, and free result.
2391
2392 2008-07-17  Steven Schubiger  <stsc@members.fsf.org>
2393
2394         * retr.c (retrieve_from_file): When given an URL as input file,
2395         use it as baseref if none was specified and treat the input file
2396         as HTML if its content type is text/html.
2397
2398         * init.c (cleanup): Free the memory associated with the base
2399         option (when DEBUG_MALLOC is defined).
2400
2401 2008-07-02  Xavier Saint  <wget@sxav.eu>
2402
2403         * iri.c, iri.h  : New function idn_decode() to decode ASCII
2404         encoded hostname to the locale.
2405
2406         * host.c : Show hostname to be resolved both in locale and
2407         ASCII encoded.
2408
2409 2008-06-28  Steven Schubiger  <stsc@members.fsf.org>
2410
2411         * retr.c (retrieve_from_file): Allow for reading the links from
2412         an external file (HTTP/FTP).
2413
2414 2008-06-26  Xavier Saint  <wget@sxav.eu>
2415
2416         * iri.c, iri.h : New functions locale_to_utf8() and
2417         idn_encode() adding basic capabilities of IRI/IDN.
2418
2419         * url.c : Convert URLs from locale to UTF-8 allowing a basic
2420         support of IRI/IDN
2421
2422 2008-06-25  Steven Schubiger  <stsc@members.fsf.org>
2423
2424         * ftp.c (getftp): When spidering a FTP URL, emit a diagnostic
2425         message if the remote file exists.
2426
2427 2008-06-24  Steven Schubiger  <stsc@members.fsf.org>
2428
2429         * http.c (http_loop): Replace escnonprint() occurence with
2430         a quotearg_style() call.
2431
2432 2008-06-24  Micah Cowan  <micah@cowan.name>
2433
2434         * ftp-ls.c (ftp_index): Don't assume time_t* is compatible with
2435         long*. Fixes crash on Windows, and probably other systems.
2436
2437 2008-06-22  Steven Schubiger  <stsc@members.fsf.org>
2438
2439         * http.c: Explicitly initialize and deallocate the message
2440         string used by the -nv --spider functionality.
2441
2442 2008-06-22  Steven Schubiger  <schubiger@gmail.com>
2443
2444         * http.c: Make -nv --spider include the file's name when it
2445         exists.
2446
2447 2008-06-22  Micah Cowan  <micah@cowan.name>
2448
2449         * Makefile.am (version.c): Fixed version string invocation so it
2450         once again can't result in unterminated strings, made all the
2451         string vars pointers-to-const, and moved line lengths
2452         below 80 (in Makefile.am, not in version.c).
2453
2454 2008-06-19  Xavier Saint  <wget@sxav.eu>
2455
2456         * iri.c, iri.h : New function check_encoding_name() as
2457         a preliminary encoding name check.
2458
2459         * main.c, iri.c : Make use of check_encoding_name().
2460
2461 2008-06-19  Xavier Saint  <wget@sxav.eu>
2462
2463         * iri.c : Include missing stringprep.h file and add a
2464         cast.
2465
2466         * init.c : set a default initial value for opt.enable_iri,
2467         opt.locale and opt.encoding_remote.
2468
2469 2008-06-19  Xavier Saint  <wget@sxav.eu>
2470
2471         * iri.c, iri.h : Add a new function find_locale() to find
2472         out the local system encoding.
2473
2474         * main.c : Make use of find_locale().
2475
2476 2008-06-19  Xavier Saint  <wget@sxav.eu>
2477
2478         * html-url.c : Add "content-type" meta tag parsing for
2479         retrieving page encoding.
2480
2481         * iri.h : Make no-op version of parse_charset() return
2482         NULL.
2483
2484 2008-06-16  Micah Cowan  <micah@cowan.name>
2485
2486         * http.c (http_loop): When hstat.len is higher than the
2487         successfully completed content's length, but it's because we
2488         _set_ it that way, don't abort.
2489
2490 2008-06-14  Xavier Saint  <wget@sxav.eu>
2491
2492         * iri.c, iri.h : New files.
2493
2494         * Makefile.am : Add files iri.h and conditional iri.c.
2495
2496         * build_info.c : Add compiled feature "iri".
2497
2498         * http.c : include iri.h and parse charset from Content-Type
2499         header.
2500
2501         * init.c, main.c, options.h : if an options isn't supported
2502         at compiled time, don't get rid off it and show a dummy
2503         message instead if they are used.
2504
2505 2008-06-13  Micah Cowan  <micah@cowan.name>
2506
2507         * build_info.c: ENABLE_NTLM, not HAVE_NTLM; distinguish OpenSSL
2508         from "ssl".
2509
2510 2008-06-13  Madhusudan Hosaagrahara <com.gmail.hrmadhu>
2511
2512         * Makefile.am, main.c, init.c, init.h, build_info.c: Adds build
2513         information to the --version command line option. Fixes bug
2514         #20636.
2515
2516 2008-06-01  Micah Cowan  <micah@cowan.name>
2517
2518         * main.c [WINDOWS]: Reopen stdout in binary mode, when -O - is
2519         given.
2520
2521 2008-05-31 Micah Cowan  <micah@cowan.name>
2522
2523         * html-url.c, http.c: Avoid casts in a couple spots.
2524
2525 2008-05-30 Henri Häkkinen  <henux@users.sourceforge.net>
2526
2527         * cookies.c, ftp-basic.c, hash.c, html-url.c, http-ntlm.c, http.c,
2528         init.c, log.c, main.c, progress.c, ptimer.c, spider.c, url.c,
2529         utils.c: Minor changes to silence warnings when using -Wall.
2530
2531 2008-05-26  Steven Schubiger  <schubiger@gmail.com>
2532
2533         * ftp.c (getftp): Replace last remaining invocation of escnonprint
2534         with gnulib quote.
2535
2536 2008-05-19  Micah Cowan  <micah@cowan.name>
2537
2538         * main.c (main): Password prompt should be done only once (not
2539         once per argument), and should be done prior to the background
2540         fork.
2541
2542 2008-05-17  Steven Schubiger  <schubiger@gmail.com>
2543
2544         * init.c (defaults): Set the preferred IP family to `none' by
2545         default.
2546
2547 2008-05-17  Kenny Parnell  <k.parnell@gmail.com>
2548
2549         (cmd_spec_prefer_family): Initialize prefer_family to prefer_none.
2550
2551 2008-05-17  Micah Cowan  <micah@cowan.name>
2552
2553         * main.c (main): Handle Ctrl-D on command-line.
2554
2555 2008-05-15  Steven Schubiger  <schubiger@gmail.com>
2556
2557         * ftp.c (getftp): Verify that the file actually exists in FTP, by
2558         checking it against the listing.
2559
2560 2008-05-15  Micah Cowan  <micah@cowan.name>
2561
2562         * main.c (prompt_for_password): Use the quote module.
2563
2564 2008-05-14  Micah Cowan  <micah@cowan.name>
2565
2566         * ftp.c (ftp_retrieve_list): Symlinks and other filenames
2567         should be fully quoted.
2568
2569 2008-05-12  Micah Cowan  <micah@cowan.name>
2570
2571         * main.c (main): Downgrade "-N with -O" to a warning, and switch
2572         it off to avoid confusing messages.
2573
2574 2008-04-30  Micah Cowan  <micah@cowan.name>
2575
2576         * progress.c (create_image): Fix glitch where too many spaces are
2577         printed on lines that don't display the ETA, in multibyte
2578         locales.
2579
2580 2008-04-30  Steven Schubiger  <stsc@members.fsf.org>
2581
2582         * main.c (main): New code that handles prompting for passwords
2583         when specified explicitly via command-line option (using gnulib's
2584         getpass-gnu module).
2585         (main): Include the getpass header.
2586
2587         * init.c: Add "ask-password" to the list of recognized commands.
2588
2589         * options.h: Add an according boolean member to the options
2590         struct.
2591
2592         * sysdep.h: Comment the defines __EXTENSIONS__ and _GNU_SOURCE
2593         out, because they're now defined independently by config.h.
2594
2595 2008-04-27  Rabin Vincent  <rabin@rab.in>
2596
2597         * http.c (http_loop): Fix return for the case where we don't
2598         download a file because of -nc.
2599
2600 2008-04-27  Micah Cowan  <micah@cowan.name>
2601
2602         * url.c (path_simplify): Go back to allowing leading ".." in
2603         paths, but only for FTP URLs.
2604         (test_path_simplify): Add scheme-specificness to tests, adapt for
2605         mu_run_test.
2606
2607         * test.c (all_tests): Add test_path_simplify.
2608
2609         * main.c (main): Downgrade -r, -p with -O to a warning rather than
2610         an error; elaborate just a bit more for other -O combination
2611         cases.
2612
2613 2008-04-26  Micah Cowan  <micah@cowan.name>
2614
2615         * http.c (gethttp): Move proxy CONNECT handling to below the
2616         retry_with_auth label, to deal with properly reconnecting to
2617         proxies when we need to authenticate.
2618
2619 2008-04-25  Micah Cowan  <micah@cowan.name>
2620
2621         * Makefile.am: -I foo -> -Ifoo.
2622
2623 2008-04-24  Micah Cowan  <micah@cowan.name>
2624
2625         * main.c: Revised usage description of --convert-links to apply
2626         to CSS as well as to HTML.
2627
2628 2008-04-23  Micah Cowan  <micah@cowan.name>
2629
2630         * utils.c (test_dir_matches_p): Added a test for the case
2631         described in issue #20518.
2632
2633 2008-04-22  Micah Cowan  <micah@cowan.name>
2634
2635         * Makefile.am, css.lex, css.l: Renamed css.lex to css.l.
2636         * recur.c (retrieve_tree): Fix typo to allow text/css files to
2637         be parsed.
2638
2639 2008-04-22  Ted Mielczarek  <ted.mielczarek@gmail.com>
2640
2641         * css.lex, css-url.c, css-url.h: Added to implement support for
2642         parsing CSS in Wget.
2643         * convert.c: Convert links in CSS files, too.
2644         * convert.h (convert_options): Added for options link_css_p,
2645         link_expect_css.
2646         * convert.h: Added prototype for new register_css function.
2647         * html-parse.c: Added support for parsing element content, in
2648         addition to tag starts and ends.
2649         * html-parse.h (taginfo): Added delimiter fields for element
2650         content.
2651         * html-url.h: Added.
2652         * html-url.c (append_url): No longer internal-linkage only. Now
2653         takes position and size as explicit parameters.
2654         * html-url.c: Use new html-url.h header, add support for
2655         handling of "style" HTML attributes. Mark URIs obtained from
2656         link tags with rel="stylesheet" with link_expect_css. Adapt
2657         uses of append_url to supply the newly-added parameters for
2658         position and size.
2659         * http.c: Add detection for when the content-type is text/css;
2660         and ensure that such files have the ".css" filename extension,
2661         when --convert-links is active.
2662         * recur.h: Remove declarations for functions found in
2663         html-url.c (moved to html-url.h).
2664         * recur.c: Add support for culling links from CSS files, too,
2665         and tracking for when we're expecting the file to be CSS (even
2666         when its content type isn't text/css).
2667         * retr.c (retrieve_url): Add registration of CSS files.
2668         * wget.h: Added TEXTCSS to dt flags enum.
2669         * Makefile.am: Added css.lex, css-url.c, css-url.h, html-url.h
2670         to wget_SOURCES.
2671
2672 2008-04-22  Jim Paris  <jim@jtan.com>
2673
2674         * openssl.c (ssl_init): Enable combined certificate/key in
2675         single file (apparent regression from ~1.9). Resolves issue
2676         #22767.
2677
2678 2008-04-22  Steven Schubiger  <schubiger@gmail.com>
2679
2680         * http.c (print_response_line): Changed to make responses always
2681         be logged, even in --quiet mode, if --server-response was
2682         specified. This is to bring http.c's handling of the situation
2683         in line with ftp.c's.
2684
2685 2008-04-22  Pranab Shenoy  <pranab.loosinit.shenoy@gmail.com>
2686
2687         * init.c: Added test_commands_sorted unit test to check is
2688         commands are sorted.  Fixes bug #21245.
2689
2690         * test.c: Added test_commands_sorted to the test suite.
2691
2692 2008-04-22  Rabin Vincent  <rabin@rab.in>
2693
2694         * ftp.c (ftp_get_listing): Only remove .listing if it has been
2695         created.
2696
2697 2008-04-22  Alain Guibert  <alguibert+bts@free.fr>
2698
2699         * test.h (mu_run_test): Move declaration before statements, for
2700         C90 conformance. Fixes bug #22789.
2701
2702 2008-04-22  Mike Frysinger  <vapier@gentoo.org>
2703
2704         * Makefile.am: Move @LIBS@ after other libraries, for better
2705         static-linking support. Fixes bug #22143.
2706
2707 2008-04-16  Steven Schubiger  <schubiger@gmail.com>
2708
2709         * ftp.c: Use Gnulib's quote function for printing filenames and
2710         such.
2711         * connect.c: Likewise.
2712         * convert.c: Likewise.
2713         * cookies.c: Likewise.
2714         * ftp-opie.c: Likewise.
2715         * gnutls.c: Likewise.
2716         * init.c: Likewise.
2717         * log.c: Likewise.
2718         * mswindows.c: Likewise.
2719         * openssl.c: Likewise.
2720         * progress.c: Likewise.
2721         * recur.c: Likewise.
2722         * res.c: Likewise.
2723         * utils.c: Likewise.
2724
2725 2008-04-16  Steven Schubiger  <schubiger@gmail.com>
2726
2727         * sysdep.h: Comment the defines __EXTENSIONS__ and _GNU_SOURCE
2728         out, because they're now defined independently by config.h.
2729
2730 2008-04-14  Steven Schubiger  <schubiger@gmail.com>
2731
2732         * http.c: Use Gnulib's quote function for printing filenames and
2733         such.
2734         * wget.h: #include "quote.h".
2735
2736 2008-04-12  Rabin Vincent  <rabin@rab.in>
2737
2738         * mswindows.c (fake_fork_child): Don't create a logfile for
2739         --background when --quiet is used, but not --server-response.
2740         Fixes bug #20917.
2741
2742         * utils.c (fork_to_background): Likewise.
2743
2744 2008-04-12  Micah Cowan  <micah@cowan.name>
2745
2746         * utils.c (aprintf): Minor formatting changes to Alex's code (80-
2747         column limit, concatenated string literals, avoiding nesting
2748         levels), and removed invocation of free (since we're aborting
2749         anyway).
2750
2751 2008-04-11  Alexander Dergachev  <cy6erbr4in@gmail.com>
2752
2753         * utils.c (aprintf): Now we are setting limits (1 Mb) for text
2754         buffer when we use non-C99 vsnprintf.
2755
2756 2008-04-11  Micah Cowan  <micah@cowan.name>
2757
2758         * ftp.c (getftp, ftp_loop_internal): Don't append to an existing
2759         .listing when --continue is used.  Fixes bug #22825. Thanks to
2760         Rabin Vincent <rabin@rab.in> for pointing the way with a
2761         suggested fix!
2762
2763 2008-04-10  Alexander Dergachev  <cy6erbr4in@gmail.com>
2764
2765         * xmalloc.c, xmalloc.h (memfatal): Now exported; accepts an
2766         "unknown" value for the attempted allocation size.
2767         * utils.c (aprintf): Now calls memfatal, instead of aborting.
2768
2769 2008-03-19  Micah Cowan  <micah@cowan.name>
2770
2771         * utils.c (test_dir_matches_p): More tests related for
2772         dir_matches_p.
2773
2774 2008-03-17  Micah Cowan  <micah@cowan.name>
2775
2776         * connect.c: Include sys/time.h to support use of the select
2777         function on older systems.
2778
2779 2008-02-11  Benno Schulenberg  <bensberg@justemail.net>
2780
2781         * http.c: More accurate and descriptive messages for when a file
2782         won't be retrieved during spider-mode.
2783
2784 2008-02-10  Micah Cowan  <micah@cowan.name>
2785
2786         * http.c: Added existence_checked member to the http_stat
2787         struct.
2788         (gethttp): Mark hs->existence_checked when we've checked whether
2789         a file-to-download exists; so we don't check it again if the
2790         connection gets lost (and potentially pick a new "unique" name).
2791         This fixes bug 22251.
2792         * progress.c (create_image): Add space for an extra column in
2793         the "eta" portion of the progress bar image; to deal with
2794         too-long Czech translation.
2795         * main.c, http.c, init.c: Added --auth-no-challenge option, to
2796         bring back 1.10.2 unsafe auth behavior when needed. This fixes
2797         bug #22242.
2798
2799 2008-02-07  Micah Cowan  <micah@cowan.name>
2800
2801         * progress.c (create_image): Remove assertion on exceeding
2802         screen width, which given the less-than-robust code there, can
2803         be broken by a number of factors (such as large file downloads).
2804
2805 2008-02-06  Micah Cowan  <micah@cowan.name>
2806
2807         * progress.c (countcols): Use strlen() when mbtowc or wcwidth
2808         not available (or not using NLS).
2809         * utils.c: Ensure we use single-byte separators when not doing
2810         NLS progress-bars.
2811         * wget.h: Determine whether to use NLS for progress-bars, based
2812         on whether wcwidth and mbtowc are available.
2813
2814 2008-02-03  Micah Cowan  <micah@cowan.name>
2815
2816         * progress.c (create_image): Use number of characters/columns
2817         consumed, rather than number of bytes, to determine how much of
2818         a line we've used. Fixes assertion errors and field alignment
2819         bugs (#22161, #20481)
2820         (get_eta, count_cols): Added to support the changes for
2821         create_image.
2822         * http.c (http_loop): Put no-clobber logic back into http_loop,
2823         before starting to fetch, for when we're not doing
2824         content-disposition.
2825
2826 2008-01-31  Micah Cowan  <micah@cowan.name>
2827
2828         * http.c (gethttp): Don't derive hs->contlen from possibly
2829         invalid/missing Content-Length; instead, get the appropriate
2830         value from the Content-Range header values.
2831         (parse_content_range): Handle '*' instance-length field.
2832
2833 2008-01-25  Micah Cowan  <micah@cowan.name>
2834
2835         * main.c: Added notes to translators regarding (C), diacritics
2836         in names.
2837         * Makefile.am, cmpt.c, connect.c, connect.h, convert.c,
2838         cookies.c, cookies.h, ftp-basic.c, ftp-ls.c, ftp-opie.c, ftp.c,
2839         ftp.h, gen-md5.c, gen-md5.h, gnutls.c, hash.c, hash.h, host.c,
2840         host.h, html-parse.c, html-parse.h, html-url.c, http-ntlm.c,
2841         http-ntlm.h, http.c, http.h, init.c, init.h, log.c, log.h,
2842         main.c, mswindows.c, mswindows.h, netrc.c, netrc.h, openssl.c,
2843         options.h, progress.c, progress.h, ptimer.c, ptimer.h, recur.c,
2844         recur.h, res.c, res.h, retr.c, retr.h, spider.c, spider.h,
2845         ssl.h, sysdep.h, test.c, test.h, url.c, url.h, utils.c,
2846         utils.h, wget.h, xmalloc.c, xmalloc.h: Updated copyright year.
2847
2848 2007-12-10  Micah Cowan  <micah@cowan.name>
2849
2850         * main.c: The option is --content-disposition, not
2851         --no-content-disposition (at the moment).
2852
2853 2007-12-08  Hrvoje Niksic  <hniksic@xemacs.org>
2854
2855         * ftp.c (ftp_retrieve_glob): Print both arguments of fnmatch in
2856         fnmatch error message.
2857         (ftp_retrieve_glob): Don't match with fnmatch if we're only
2858         supposed to get one file.
2859
2860 2007-12-07  Micah Cowan  <micah@cowan.name>
2861
2862         * Makefile.am: Plug in vars to include stuff from
2863         $(top_srcdir)/md5 when appropriate.
2864
2865 2007-12-05  Micah Cowan  <micah@cowan.name>
2866
2867         * utils.c (subdir_p): Handle the case where d1 is "".
2868         * convert.c (convert_all_links): Don't return without
2869         deallocating timer.
2870
2871 2007-11-28  Micah Cowan  <micah@cowan.name>
2872
2873         * Makefile.am, cmpt.c, connect.c, connect.h, convert.c,
2874         convert.h, cookies.c, cookies.h, ftp-basic.c, ftp-ls.c,
2875         ftp-opie.c, ftp.c, ftp.h, gen-md5.c, gen-md5.h, gnutls.c,
2876         hash.c, hash.h, host.c, host.h, html-parse.c, html-parse.h,
2877         html-url.c, http-ntlm.c, http-ntlm.h, http.c, http.h, init.c,
2878         init.h, log.c, log.h, main.c, mswindows.c, mswindows.h,
2879         netrc.c, netrc.h, openssl.c, options.h, progress.c, progress.h,
2880         ptimer.c, ptimer.h, recur.c, recur.h, res.c, res.h, retr.c,
2881         retr.h, safe-ctype.c, safe-ctype.h, spider.c, spider.h, ssl.h,
2882         sysdep.h, test.c, test.h, url.c, url.h, utils.c, utils.h,
2883         wget.h, xmalloc.c, xmalloc.h: Updated license exception for
2884         OpenSSL, per the SFLC.
2885
2886 2007-10-30  Micah Cowan  <micah@cowan.name>
2887
2888         * main.c (main): Declare argv parameter as char **argv, rather
2889         than char *const *argv. This fixes usage of getopt_long,
2890         regardless of whether getopt_long has a constified argv or not.
2891
2892 2007-10-22  Gisle Vanem  <gvanem@broadpark.no>
2893
2894         * mswindows.c: Move INHIBIT_WRAP macro definition up with wget.h
2895         inclusion.
2896
2897 2007-10-18  Steven Schweda  <sms@antinode.org>
2898
2899         * sysdep.h: #include <stdint.h> as well as <inttypes.h>, to work
2900         around a glitch on Tru64 systems.
2901
2902 2007-10-18  Micah Cowan  <micah@cowan.name>
2903
2904         * Makefile.am: version.c should not be distributed. Removed
2905         config-post.h. Add version.c dependency and gnulib include path
2906         for libunittest.a.
2907         * sysdep.h: Got contents of config-post.h
2908         * config-post.h: Removed.
2909         * wget.h: #include "config.h".
2910         * alloca.c, cmpt.c, connect.c, convert.c, cookies.c,
2911         ftp-basic.c, ftp-ls.c, ftp-opie.c, ftp.c, gen-md5.c, gnutls.c,
2912         hash.c, host.c, html-parse.c, html-url.c, http-ntlm.c, http.c,
2913         init.c, log.c, main.c, mswindows.c, netrc.c, openssl.c,
2914         progress.c, ptimer.c, recur.c, res.c, retr.c, spider.c, url.c,
2915         utils.c, xmalloc.c: Use wget.h at very top, and instead of
2916         config.h.
2917
2918 2007-10-15  Micah Cowan  <micah@cowan.name>
2919
2920         * Makefile.am: Remove intermediary hg-id file generation, make
2921         version.c-generation more portable.
2922
2923 2007-10-14  Micah Cowan  <micah@cowan.name>
2924
2925         * cmpt.c, cookies.c, ftp-basic.c, ftp-ls.c, ftp.c, hash.c,
2926         host.c, html-parse.c, html-url.c, http-ntlm.c, http.c, init.c,
2927         log.c, main.c, netrc.c, openssl.c, res.c, url.c, utils.c,
2928         wget.h: Replace uses of ISSPACE, etc with c_isspace, etc.
2929         * gnu-md5.c, gnu-md5.h: Removed, in deference to gnulib.
2930         * Makefile.am: Removed gnu-md5.h from wget_SOURCES.
2931         * gen-md5.c: Changed #inclusion of gnu-md5.h to md5.h (gnulib's).
2932         * recur.c (download_child_p): Print error if unlink of
2933         robots.txt fails.
2934         * main.c (main): --spider or --delete-after now implies
2935         --no-directories (thanks, Josh Williams).
2936
2937 2007-10-14  Joshua David Williams  <yurimxpxman@gmail.com>
2938
2939         * recur.c (download_child_p): Remove robots.txt if
2940         --delete-after or --spider is on.
2941
2942 2007-10-13  Micah Cowan  <micah@cowan.name>
2943
2944         * Makefile.am: Make version.c depend on Wget dependencies (source
2945         files, plus such things as LIBOBJS so we get things like
2946         http-ntlm.c). Removed getopt.[ch], as we're now using gnulib for
2947         these.
2948
2949 2007-10-10  Micah Cowan  <micah@cowan.name>
2950
2951         * http-ntlm.c: Include openssl/opensslv.h explicitly, instead of
2952         hoping it'll be included by accident in openssl/des.h.
2953
2954 2007-10-09  Gisle Vanem  <gvanem@broadpark.no>
2955
2956         * mswindows.c: 'argc' and 'argv' in 'windows_main()' are no longer
2957         needed.  Hence simply the prototype. Free 'exec_name' at exit.
2958
2959 2007-10-09  Micah Cowan  <micah@cowan.name>
2960
2961         * gettext.h: Imported from /usr/share/gettext, fuller handling
2962         of --disable-nls.
2963         * wget.h: Remove logic for handling lack of NLS (now in
2964         gettext.h).
2965         * main.c: Use gettext's ENABLE_NLS rather than HAVE_NLS.
2966         * Makefile.am: added @LIBINTL@ to LIBS (though it probably
2967         belongs in LDADD, along with everything else currently assigned
2968         to LIBS).
2969
2970 2007-10-08  Micah Cowan  <micah@cowan.name>
2971
2972         * http.c (http_loop): Add send_head_first conditional back
2973         around code that needs it, but not around the last-modified
2974         header-parsing stuff this time. Removed no-longer-useful (was it
2975         ever?) restart_loop boolean, continuing unconditionally at end
2976         of send_head_first conditional block (if we haven't jumped out).
2977
2978 2007-10-04  Micah Cowan  <micah@cowan.name>
2979
2980         * http.c (http_loop): We've got_name if content_disposition
2981         support isn't on; make sure we continue properly in that case,
2982         even though we're not sending HEAD.
2983         * Makefile.in: Removed, replaced by Makefile.am.
2984         * Makefile.am: Converted from Makefile.in.
2985
2986 2007-10-02  Gisle Vanem  <gvanem@broadpark.no>
2987
2988         * ftp.c: Use "_listing" for MSDOS (".listing" is illegal).
2989
2990         * url.c: Update comment for 'filechr_not_windows'.
2991
2992         * utils.c: Include <process.h> for 'getpid()' on Watcom.
2993
2994 2007-10-02  Micah Cowan  <micah@cowan.name>
2995
2996         * ftp.c (getftp, ftp_loop_internal), http.c (http_loop), main
2997         (main): Use datetime_str instead of time_str, for those who have
2998         potentially long-running sessions. Based on suggestions by Saso
2999         Tomat <miskox@hotmail.com> and Steven M. Schweda
3000         <sms@antinode.org>.
3001         * http.c (gethttp): Warn about host lookup failures. Adjusted
3002         from Stephen Gildea's patch.
3003
3004 2007-10-02  Stephen Gildea  <stepheng+wget@gildea.com>
3005
3006         * connect.c (connect_to_host): Warn about host lookup failures.
3007
3008 2007-09-25  Micah Cowan  <micah@cowan.name>
3009
3010         * Makefile.in: Use EXEEXT instead of exeext.
3011
3012 2007-09-24  Gisle Vanem  <giva@bgnett.no>
3013
3014         * connect.c, init.c, main.c, openssl.c, options.h, sysdep.h,
3015         url.c, utils.c: Added support for building on MS-DOS.
3016
3017 2007-09-24  Jochen Roderburg  <roderburg@uni-koeln.de>
3018
3019         * http.c (http_zero): Remove no-longer-used local_size variable.
3020         Fixes bug #21057.
3021
3022 2007-09-12  Micah Cowan  <micah@cowan.name>
3023
3024         * http.c (http_loop): Remove send_head_first from condition for
3025         parsing timestamp.
3026
3027 2007-08-29  Micah Cowan  <micah@cowan.name>
3028
3029         * openssl.c (ssl_init): Re un-const-ified the meth local
3030         variable, to match current versions of openssl.
3031         * spider.c: Removed visited_url function, as it may be very
3032         inefficient.
3033         (print_broken_links): Removed traversal of referrers, until such
3034         time as a more efficient implementation can be written.
3035         * spider.h: Replaced declaration of visited_url with an
3036         empty-bodied, function-like macro.
3037
3038 2007-08-27  Gisle Vanem  <giva@bgnett.no>
3039
3040         * mswindows.c (run_with_timeout): Ensure that the correct
3041         conversion specification is used for the return result of
3042         the GetLastError function.
3043         * getopt.c: Fix missing (but, accidentally, legal) comment
3044         delimiter after licensing text.
3045         * recur.c (retrieve_tree): Inserted missing cast for strip_auth.
3046         Includes adjustment by Ralf Wildenhues.
3047         * openssl.c (ssl_init): const-ified the meth local variable.
3048         * main.c: Include all the static function definitions in the
3049         "#ifndef TESTING" clause, leaving just the definitions for
3050         exec_name (not set), and opt.
3051         * utils.c (run_with_timeout): Now returns bool, to align with
3052         declaration in utils.h.
3053
3054 2007-08-27  Micah Cowan  <micah@cowan.name>
3055
3056         * wget.h: Added macro replacement for ngettext, for environs
3057         that lack NLS.
3058
3059 2007-08-26  Micah Cowan  <micah@cowan.name>
3060
3061         * spider.c (print_broken_links): Fixed incorrect plurals msgid
3062         usage, switched to use ngettext function.
3063
3064 2007-08-24  Micah Cowan  <micah@cowan.name>
3065
3066         * http.c (http_loop): Introduced time_came_from_head boolean
3067         flag, to help avoid parsing the same Last-Modified header twice.
3068         Replaced spidering returns of RETRUNNEEDED for some situations,
3069         to RETROK, as otherwise it will be interpreted as an error.
3070         RETRUNNEEDED appears never to be referenced outside of
3071         http.c (and wget.h), and, when returned by gethttp, is
3072         translated by http_loop to RETROK.
3073         * url.c (are_urls_equal): Don't call getchar_from_escaped_string
3074         if u2 is shorter than u1.
3075         (getchar_from_escaped_string): Don't decode reserved characters.
3076         Handle illegally appearing '%'s as literal '%'s. Ensure hex
3077         digits before attempting to decode.
3078         (test_are_urls_equal): Added tests to handle u2 shorter than u1,
3079         and %2f not treated the same as /.
3080         * spider.c (in_url_list_p): Don't call are_urls_equal if one of
3081         them is NULL.
3082
3083 2007-08-23  Joshua David Williams  <yurimxpxman@gmail.com>
3084
3085         * spider.c (in_url_list_p): Removed the bool verbose argument
3086
3087 2007-08-22  Mauro Tortonesi  <mauro@ferrara.linux.it>
3088
3089         * http.c (http_loop): Fall back to GET if HEAD fails with a 500 or 501
3090         error code.
3091
3092 2007-08-21  Mauro Tortonesi  <mauro@ferrara.linux.it>
3093
3094         * http.c (http_loop): Send preliminary HEAD request if -N is given and
3095         the destination file exists already.
3096
3097 2007-08-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
3098
3099         * http.c (http_loop): Fixed HTTP HEAD requests logic when --spider is
3100         given.
3101
3102 2007-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3103
3104         * url.c (append_uri_pathel): Do not assume dest string to be
3105         zero-terminated.
3106         (test_append_uri_pathel): Terminate string to fix test failure.
3107
3108 2007-08-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3109
3110         * url.c (url_string): Use comparison, not assignment, in
3111         check for auth_mode == URL_AUTH_HIDE_PASSWD.
3112
3113 2007-08-09  Micah Cowan  <micah@cowan.name>
3114
3115         * http.c (http_loop): If we got a HEAD and then a GET, and the
3116         GET had a timestamp, use that one, not any we may have gotten
3117         from the HEAD.
3118
3119 2007-08-08  Micah Cowan  <micah@cowan.name>
3120
3121         * init.c (defaults): Content disposition will not be default,
3122         since it currently results in extra round-trips.
3123
3124 2007-07-31  Micah Cowan  <micah@cowan.name>
3125
3126         * http.c (gethttp): Set contlen = -1 when we encounter a
3127         negative-valued Content-Length header, so we don't consider it
3128         an internal error later on and call abort().
3129
3130 2007-07-29  Micah Cowan  <micah@cowan.name>
3131
3132         * url.h, url.c (url_string): Replaced bool arg of the url_string
3133         function with enum url_auth_mode, with added option to
3134         completely remove user/pass auth information.
3135         * http.c, ftp.c, url.c, recur.c: Adapted call to url_string
3136         function to fit new usage.
3137         * recur.c (retrieve_tree): Remove auth info from Referer header.
3138
3139 2007-07-28  Micah Cowan  <micah@cowan.name>
3140
3141         * options.h, init.c, retr.c, main.c: renamed opt maxredirect
3142         field to max_redirect, for improved consistency.
3143         * init.c: changed max_redirect parser from cmd_number_inf to
3144         cmd_number, as infinite redirects may not be appropriate.
3145         Alternatively, if cmd_number_inf should be used, then
3146         opt.max_redirect's value should be checked a bit differently in
3147         retr.c, to allow for the "infinite" meaning of zero.
3148
3149 2007-07-25  Micah Cowan  <micah@cowan.name>
3150
3151         * http.c (create_authorization_line)
3152         (basic_authentication_encode, known_authentication_scheme_p)
3153         (load_cookies): Moved declarations up.
3154         (basic_authed_hosts): Added. Tracks what hosts have issued Basic
3155         challenge and been given the global username, password.
3156         (maybe_send_basic_creds): Added. Sends Basic creds for hosts that
3157         have issued Basic challenges.
3158         (register_basic_auth_host): Added. Instantiates
3159         basic_authed_hosts if necessary, then registers the host that
3160         has issued a challenge.
3161         (gethttp) <auth>: Only send authentication credentials after
3162         we've received a challenge from that host. This is a stop-gap
3163         fix until a proper fix can be implemented; still isn't quite
3164         right, as we should only be sending credentials automatically
3165         for authenticated paths and below, and not for the entire host.
3166
3167 2007-07-16  Joshua David Williams  <yurimxpxman@gmail.com>
3168
3169         * options.h: added maxredirect to options struct
3170         * init.c: added maxredirect to list of variables
3171         * retr.c (retrieve_url): replaced MAX_REDIRECTIONS with opt.maxredirect
3172         * main.c: added option --max-redirect
3173
3174 2007-07-16  Joshua David Williams  <yurimxpxman@gmail.com>
3175
3176         * test.h: tests made more verbose; now displays the name
3177         of each test run.
3178
3179 2007-07-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
3180
3181         * http.c (http_loop): Fixed the HTTP requests logic. Now it skips the
3182         preliminary HEAD request if either -O or --no-content-disposition are
3183         given, and neither --spider and -N are given.
3184
3185 2007-07-05  Micah Cowan  <micah@cowan.name>
3186
3187         * cmpt.c, connect.c, connect.h, convert.c, convert.h:
3188         * cookies.c, cookies.h, ftp-basic.c, ftp.c, ftp.h, ftp-ls.c:
3189         * ftp-opie.c, gen-md5.c, gen-md5.h, getopt.c, getopt.h, gnu-md5.c:
3190         * gnu-md5.h, gnutls.c, hash.c, hash.h, host.c, host.h:
3191         * html-parse.c, html-parse.h, html-url.c, http.c, http.h:
3192         * http-ntlm.c, http-ntlm.h, init.c, init.h, log.c, log.h, main.c:
3193         * Makefile.in, mswindows.c, mswindows.h, netrc.c, netrc.h:
3194         * openssl.c, options.h, progress.c, progress.h, ptimer.c:
3195         * ptimer.h, recur.c, recur.h, res.c, res.h, retr.c, retr.h:
3196         * safe-ctype.c, safe-ctype.h, spider.c, spider.h, ssl.h, sysdep.h:
3197         * test.c, test.h, url.c, url.h, utils.c, utils.h, wget.h:
3198         * xmalloc.c, xmalloc.h:
3199         Updated GPL reference to version 3 or later, removed FSF
3200         address.
3201
3202 2007-07-04  Mauro Tortonesi  <mauro@ferrara.linux.it>
3203
3204         * http.c (http_loop): Skip HEAD request and start immediately with GET
3205         if -O is given.
3206
3207 2007-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
3208
3209         * http.c (print_server_response): Escape non-printable characters
3210         in server respone.
3211
3212 2007-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
3213
3214         * netrc.c: Don't make netrc_list static, as it prevents
3215         compilation with DEBUG_MALLOC.
3216
3217         * utils.c (aprintf): Don't use vasprintf when DEBUG_MALLOC is
3218         requested because, in that case, we want the calls to malloc to be
3219         coming from us.
3220
3221 2007-01-23  Hrvoje Niksic  <hniksic@xemacs.org>
3222
3223         * cookies.c (parse_set_cookie): Would erroneously discard cookies
3224         with unparsable expiry time.
3225
3226 2007-01-23  Hrvoje Niksic  <hniksic@xemacs.org>
3227
3228         * progress.c (create_image): Check for ETA overflow.
3229         (print_row_stats): Ditto.
3230
3231 2007-01-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
3232
3233         * init.c (cmd_spec_prefer_family): Small fix to get rid of a gcc
3234         warning about strict-aliasing violation.
3235
3236 2007-01-09  Steven M. Schweda  <sms@antinode.org>
3237
3238         * ftp-basic.c (ftp_syst): Fixed segfault if response text is missing.
3239
3240 2006-12-29  Gisle Vanem  <giva@bgnett.no>
3241
3242         * mswindows.c: Avoid a warning if 'ws_hangup()' is unused.
3243
3244 2006-12-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
3245
3246         * http.c (parse_content_disposition): Consider directory prefix, if
3247         specified.
3248
3249 2006-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
3250
3251         * retr.c (retrieve_from_file): Ditto.
3252         (url_uses_proxy): New function.
3253
3254         * main.c (main): Don't check for opt.use_proxy when deciding
3255         whether to call retrieve_url or retrieve_tree; check whether the
3256         proxy would be used for *this* URL.
3257
3258 2006-10-17  Mike Grant  <mggr@pml.ac.uk>
3259
3260         * ftp.c (ftp_loop_internal): Would incorrectly skip changing
3261         working directory when retrying after a failed FTP attempt.
3262         Originally reported by Nate Eldredge.
3263
3264 2006-10-12  Mauro Tortonesi  <mauro@ferrara.linux.it>
3265
3266         * convert.c (downloaded_file): Fixed bug which used to break -E -k -K
3267         mode.
3268
3269 2006-08-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
3270
3271         * http.c: #include'd spider.h to get rid of compiler warnings.
3272
3273         * main.c: Ditto.
3274
3275         * recur.c: Ditto.
3276
3277 2006-08-24  Mauro Tortonesi  <mauro@ferrara.linux.it>
3278
3279         * Makefile.in: Added spider.c to the list of files to compile and
3280         spider.h to the list of header files. Updated copyright information.
3281
3282         * http.c: Major changes to recursive spider mode. Now for every
3283         resource we are supposed to check, we send a HEAD request to find out
3284         if it exists. If the resource is a HTML file, we retrieve it and parse
3285         it to discover links to other resources.
3286
3287         * recur.c: Ditto.
3288
3289         * res.c (res_retrieve_file): Disable opt.timestamping and opt.spider
3290         when retrieving robots.txt. Updated copyright information.
3291
3292         * convert.c: Moved code tracking broken links to spider.c.
3293
3294         * convert.h: Ditto.
3295
3296         * spider.c: Created new file to keep track of visited URLs in spider
3297         mode.
3298
3299         * spider.h: Ditto.
3300
3301 2006-08-21  Mauro Tortonesi  <mauro@ferrara.linux.it>
3302
3303         * http.c: Fixed timestamping-related bug.
3304
3305 2006-08-16  Mauro Tortonesi  <mauro@ferrara.linux.it>
3306
3307         * http.c: Fixed bug which broke --continue feature. Now if -c is
3308         given, http_loop sends a HEAD request to find out the destination
3309         filename before resuming download.
3310
3311 2006-08-08  Hrvoje Niksic  <hniksic@xemacs.org>
3312
3313         * utils.c (datetime_str): Avoid code repetition with time_str.
3314
3315 2006-07-21  Hrvoje Niksic  <hniksic@xemacs.org>
3316
3317         * init.c (commands): Correctly place "contentdisposition".
3318
3319 2006-07-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
3320
3321         * sysdep.h: If intptr_t isn't defined, simply typedef it to long.
3322
3323         * http.c: Added explicit cast to int in logprintf call to remove
3324         compiler warnings on 64-bit platforms.
3325
3326         * connect.c: Added a few casts to intptr_t to remove compiler warnings
3327         on 64-bit platforms.
3328
3329         * main.c: Disable -r, -p and -N when -O is used. Disable -k when -O is
3330         used and multiple URLs are given. Update maintainer information.
3331
3332         * all: Update copyright information.
3333
3334 2006-07-10  KJKHyperion  <hackbunny@reactos.com>
3335
3336         * url.c (filechr_table): Mark DEL (0x7f) as a control character
3337         and | as a character Windows can't handle.
3338
3339 2006-06-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
3340
3341         * res.c: Implemented is_robots_txt_url function for detection of
3342         robots.txt URLs and related test routine.
3343
3344         * res.h: Ditto.
3345
3346         * url.c: Implemented are_urls_equal function for URL comparison and
3347         related testing routine.
3348
3349         * url.h: Ditto.
3350
3351         * convert.c: Fixes for recursive spider mode: don't consider
3352         non-existing robots.txt as a broken link, and use are_urls_equal
3353         instead of strcasecmp for referrer URLs comparison.
3354
3355         * test.c: Call tests routines for are_urls_equal and
3356         is_robots_txt_url.
3357
3358 2006-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
3359
3360         * wget.h (wgint): Typedef to any 64-bit (or larger) type we can
3361         find, not necessarily off_t or long.
3362
3363 2006-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
3364
3365         * cmpt.c (strtoll): Check for overflow and underflow without
3366         relying on (technically) undefined behavior.  Don't assume that
3367         strtoll_type is 64 bits wide.
3368
3369 2006-06-21  Hrvoje Niksic  <hniksic@xemacs.org>
3370
3371         * utils.c (base64_encode): Cast void pointer to char * before
3372         doing arithmetic.
3373
3374 2006-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
3375
3376         * utils.c (base64_encode): Made TBL const.
3377         (base64_decode): Made the base64_char_to_value table const.
3378
3379 2006-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
3380
3381         * utils.c (base64_encode): Made the DATA pointer void * so the
3382         callers can pass it any kind of pointer (including both signed and
3383         unsigned char pointers).
3384         (base64_decode): Ditto for DEST.
3385
3386 2006-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
3387
3388         * utils.c (base64_encode): Would read past end of STR.
3389         Reported by rick@eckle.org.
3390
3391 2006-06-13  Mauro Tortonesi  <mauro@ferrara.linux.it>
3392
3393         * options.h (struct options): Introduced member restrict_files_case to
3394         keep track of preferences on character case restrictions for
3395         filenames.
3396
3397         * init.c: Modified defaults and cmd_spec_restrict_file_names to
3398         support character case restrictions for filenames. Added
3399         test_cmd_spec_restrict_file_names unit test.
3400
3401         * url.c: Modified append_uri_pathel to support character case
3402         restrictions for filenames. Added test_append_uri_pathel unit test.
3403
3404         * test.c: Added test_cmd_spec_restrict_file_names and
3405         test_append_uri_pathel to the list of unit tests to run.
3406
3407 2006-06-12  Mauro Tortonesi  <mauro@ferrara.linux.it>
3408
3409         * retr.c (retrieve_from_file): Use retrieve_tree and automatically
3410         turn on opt.follow_ftp in case of recursive FTP retrieval through HTTP
3411         proxy.
3412
3413         * main.c: Automatically turn on opt.follow_ftp in case of recursive
3414         FTP retrieval through HTTP proxy.
3415
3416 2006-06-12  Tony Lewis  <tlewis@exelana.com>
3417
3418         * main.c: Improved CHEN Peng's patch by proposing a simpler logic.
3419
3420 2006-06-12  CHEN Peng  <chenpeng@alumni.nus.edu.sg>
3421
3422         * main.c: Use retrieve_tree in case of recursive FTP retrieval through
3423         HTTP proxy.
3424
3425 2006-05-25  Mauro Tortonesi  <mauro@ferrara.linux.it>
3426
3427         * convert.c: Added mechanisms to keep track broken links.
3428
3429         * convert.h: Ditto.
3430
3431         * wget.h: Reordered and enumerated uerr_t constants.
3432
3433         * recur.c: Fixes to support recursive spider mode.
3434
3435         * http.c: Ditto.
3436
3437         * main.c: Print broken links in case of recursive spider mode.
3438
3439         * retr.c: Changed interface of retrieve_url.
3440
3441         * retr.h: Ditto.
3442
3443         * ftp.c: Changed interface of ftp_loop.
3444
3445         * ftp.h: Ditto.
3446
3447         * res.c: Minor change to reflect changes in interface of retrieve_url.
3448
3449 2006-05-18  Lawrence Jones  <lawrence.jones@ugs.com>
3450
3451         * ftp-ls.c (ftp_parse_unix_ls): Correct size parsing, add size
3452         and filename debugging output.
3453
3454 2006-04-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
3455
3456         * http.c: If Content-Disposition header is present, allow unique
3457         filename generation unless -nc is given. Permit to disable parsing of
3458         Content-Disposition header.
3459
3460         * options.h: Added option --no-content-disposition to disable parsing
3461         of HTTP Content-Disposition header.
3462
3463         * init.c: Ditto.
3464
3465         * main.c: Ditto.
3466
3467 2006-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
3468
3469         * hash.c (TOLOWER): Wrap macro arg in parentheses.
3470
3471 2006-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
3472
3473         * http.c (parse_content_disposition): Doc fix.
3474
3475 2006-03-15  Mauro Tortonesi  <mauro@ferrara.linux.it>
3476
3477         * utils.c: Restricted operational semantics of frontcmp and proclist
3478         from generic strings to directory names and them to subdir_p and
3479         dir_matches_p respectively.  Applied George Ogata's one line patch to
3480         restrict algorithm of subdir_p to full directory name matching.  Added
3481         testcases for subdir_p and dir_matches_p.
3482
3483         * utils.h: Changed all frontcmp occurrences to subdir_p.
3484
3485         * recur.c: Ditto.
3486
3487         * test.c: Changed type returned by test functions from char * to const
3488         char *.  Added test_subdir_p and test_dir_matches_p to the list of
3489         tests to run.
3490
3491         * http.c (test_parse_content_disposition): Changed return type from
3492         char * to const char *.
3493
3494 2006-03-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
3495
3496         * recur.c (struct queue_element): Changed type of html_allowed member
3497         to bool.
3498
3499 2006-03-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
3500
3501         * ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST'
3502         in case of failure.
3503
3504 2006-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
3505
3506         * hash.c (TOLOWER): Fix definition when STANDALONE.
3507         Reported by Beni Serfaty.
3508
3509 2006-03-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
3510
3511         * http.c (http_loop): Fixed recursive HTTP retrieval.
3512
3513 2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
3514
3515         * http.c (extract_param): Declare extern so it can be used from
3516         other files.
3517         (extract_param): Return error for empty name.
3518
3519 2006-02-28  Hrvoje Niksic  <hniksic@xemacs.org>
3520
3521         * url.c (find_last_char): Define in terms of memrchr.
3522
3523         * cmpt.c (memrchr): Define it on systems that don't have it.
3524
3525         * http.c (extract_param): New function for parsing header values
3526         with parameters.
3527         (parse_content_disposition): Use it.  Don't allow slashes and
3528         backslashes in the file name.
3529
3530 2006-02-27  Hrvoje Niksic  <hniksic@xemacs.org>
3531
3532         * url.c (path_simplify): Don't preserve ".." at beginning of path.
3533         Suggested by Frank McCown.
3534
3535 2006-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
3536
3537         * http.c (gethttp): Only use FILE.N.html if FILE.html exists.
3538
3539 2006-02-09  Hrvoje Niksic  <hniksic@xemacs.org>
3540
3541         * mswindows.c (run_with_timeout): Made thread_hnd non-static.
3542
3543 2006-02-05  Hrvoje Niksic  <hniksic@xemacs.org>
3544
3545         * retr.c (sleep_between_retrievals): Sleep at a minimum of 1/2 of
3546         the specified wait period.
3547
3548 2006-02-03  Hrvoje Niksic  <hniksic@xemacs.org>
3549
3550         * utils.c (number_to_string): Don't use sprintf for printing
3551         WGINT_MIN; simply divide n by 10 and defer printing the last
3552         digit.
3553         (number_to_string): Removed the SPRINTF_WGINT macro.
3554
3555 2006-02-03  Mauro Tortonesi  <mauro@ferrara.linux.it>
3556
3557         * http.c: Fixed support for Content-Disposition header.
3558
3559         * test.c: Added test_parse_content_disposition to the list of unit
3560         tests to run.
3561
3562 2006-02-02  Hrvoje Niksic  <hniksic@xemacs.org>
3563
3564         * hash.c: Don't define countof if it's already defined.
3565
3566         * hash.c: Obtain the definition of uintptr_t when standalone.
3567
3568 2006-01-30  Mauro Tortonesi  <mauro@ferrara.linux.it>
3569
3570         * http.c: Changed output format. Removed excessively verbose debugging
3571         output.
3572
3573 2005-12-07  Mauro Tortonesi  <mauro@ferrara.linux.it>
3574
3575         * http.c: Fixed pre-download verbose output which was broken by
3576         HTTP code refactoring.
3577
3578 2005-11-23  Mauro Tortonesi  <mauro@ferrara.linux.it>
3579
3580         * http.c: Refactored HTTP code.  If -O is not used, the new code
3581         delays the choice of the file name where the downloaded resource
3582         will be saved until the HTTP headers have been retrieved.
3583         Added support for Content-Disposition header.
3584
3585 2005-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
3586
3587         * hash.c (INVALID_PTR): Use uintptr_t instead of unsigned long.
3588         (hash_pointer): Don't assume a pointer fits in `unsigned long'.
3589
3590 2005-11-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
3591
3592         * Makefile.in: Removed support for unit testing (now it is in
3593         tests/Makefile.in).
3594
3595 2005-10-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
3596
3597         * Makefile.in: Added basic support for unit testing.
3598
3599         * test.c: Ditto.
3600
3601         * test.h: Ditto.
3602
3603 2005-10-13  Daniel Stenberg  <daniel@haxx.se>
3604
3605         * http-ntlm.c (ntlm_output): Fixed buffer overflow vulnerability.
3606
3607 2005-10-09  Russ Allbery  <rra@stanford.edu>
3608
3609         * snprintf.c: Remove round to round_int and pow10 to pow10_int, to
3610         avoid warnings from GCC 4.0.
3611
3612 2005-10-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
3613
3614         * retr.c: Changed semantics of no_proxy_match.
3615
3616 2005-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
3617
3618         * main.c (main): Don't print the summary if nothing has been downloaded.
3619
3620 2005-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
3621
3622         * retr.c (retr_rate): Rename parameter from MSECS to SECS since it
3623         no longer holds milliseconds.
3624
3625 2005-09-01  Hrvoje Niksic  <hniksic@xemacs.org>
3626
3627         * progress.c: Introduce symbolic constants for "magic" values of
3628         0.2 and 0.9, REFRESH_INTERVAL and ETA_REFRESH_INTERVAL.
3629
3630 2005-08-27  Hrvoje Niksic  <hniksic@xemacs.org>
3631
3632         * cmpt.c (strtoll): Correctly handle strtoll("0x", ptr, 0) and
3633         strtoll("0x<nonhexchar>", ptr, 0) -- in both cases *ptr must be
3634         set to the position of 'x', not after it.
3635
3636 2005-08-27  Hrvoje Niksic  <hniksic@xemacs.org>
3637
3638         * hash.c (hash_table_map): Rename to hash_table_for_each and
3639         update callers.
3640         Document the meaning of the callback's return value.
3641         (hash_table_iterate): New function.
3642         (hash_table_iter_next): Likewise.
3643         Update most places that used hash_table_for_each to use the
3644         iteration, which doesn't require a temporary function with
3645         explicit state management.
3646
3647 2005-08-26  Albert Chin  <wget@mlists.thewrittenword.com>
3648
3649         * Makefile.in: Use @datadir@.  Define localedir as $(datadir)/locale.
3650
3651 2005-08-26  Jeremy Shapiro  <jnshapiro@gmail.com>
3652
3653         * openssl.c (ssl_init): Set SSL_MODE_AUTO_RETRY.
3654
3655 2005-08-23  Hrvoje Niksic  <hniksic@xemacs.org>
3656
3657         * host.c (address_list_from_ipv4_addresses): Use IP_INADDR_DATA.
3658
3659 2005-08-12  Hrvoje Niksic  <hniksic@xemacs.org>
3660
3661         * wget.h: Renamed strtoll_return to strtoll_type.
3662
3663 2005-08-11  Hrvoje Niksic  <hniksic@xemacs.org>
3664
3665         * progress.c (eta_to_human_short): Switch to days when printing
3666         more than 48h rather than 100h.  (It's not immediately apparent
3667         how many days there are in 83h.)
3668
3669 2005-08-11  Hrvoje Niksic  <hniksic@xemacs.org>
3670
3671         * cmpt.c (strtoll): Define it if missing on the system and if Wget
3672         needs it.
3673
3674         * mswindows.c (str_to_int64): Move to cmpt.c and rename to strtoll.
3675
3676 2005-08-10  Hrvoje Niksic  <hniksic@xemacs.org>
3677
3678         * host.c (print_address): Always use inet_ntop when IPv6 is
3679         enabled.
3680
3681         * host.h (ip_address): Simplify the data union.
3682
3683 2005-08-09  Hrvoje Niksic  <hniksic@xemacs.org>
3684
3685         * mswindows.c (inet_ntop): Also handle IPv4 addresses for
3686         completeness.
3687
3688 2005-08-09  Hrvoje Niksic  <hniksic@xemacs.org>
3689
3690         * http.c (gethttp): Don't read more than the amount of data
3691         specified by the content-length header.
3692
3693 2005-08-09  Vasil Dimov  <vd@datamax.bg>
3694
3695         * ftp.c (getftp): Don't free RESPLINE if ftp_response returns a
3696         status other than FTPOK.
3697
3698 2005-08-04  Giuseppe Bonacci  <g.bonacci@libero.it>
3699
3700         * ftp-ls.c (ftp_parse_unix_ls): Remember the position of the
3701         previous token instead of backtracking back to it.
3702
3703 2005-07-08  Gisle Vanem  <giva@bgnett.no>
3704
3705         * mswindows.h: Include process.h to get getpid() declaration.
3706
3707 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
3708
3709         * utils.c (aprintf): Use vasprintf where available.
3710
3711 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
3712
3713         * url.c (rewrite_shorthand_url): Simplify code using aprintf and
3714         strspn.
3715
3716 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
3717
3718         * gnutls.c (ssl_check_certificate): Check for the validity of the
3719         presented X509 certificate.
3720
3721 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
3722
3723         * openssl.c (ssl_check_certificate): Print custom error messages
3724         for frequent X509 certificate problems.
3725
3726 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
3727
3728         * mswindows.h: Define an alias for stat and fstat, as requested by
3729         config-compiler.h.
3730         (gai_strerror): Define to windows_strerror if NEED_GAI_STRERROR is
3731         defined.
3732
3733 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
3734
3735         * mswindows.h: Use strtoll where available.
3736
3737 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
3738
3739         * sysdep.h: Add a full declaration of fnmatch.h.
3740
3741 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
3742
3743         * utils.c: Unconditionally include <setjmp.h>.
3744
3745 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
3746
3747         * utils.c (fnmatch_nocase): New function.
3748         (proclist): Use it instead of fnmatch when opt.ignore_case is
3749         requested.
3750         (in_acclist): Respect opt.ignore_case.
3751         (frontcmp): Respect opt.ignore_case.
3752
3753         * options.h (struct options): New flag opt.ignore_case.
3754
3755 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
3756
3757         * ptimer.c: Measure time in seconds rather than milliseconds.
3758         Adjusted all callers.
3759
3760 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
3761
3762         * http.c (gethttp): When freeing MESSAGE, take into account that
3763         it can be NULL.
3764
3765 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
3766
3767         * cmpt.c (timegm): Handle years after 2099.
3768
3769 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
3770
3771         * cmpt.c (timegm): Remove unused variable.
3772
3773 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
3774
3775         * cmpt.c (timegm): Don't call mktime; simply count the seconds
3776         between 1970-01-01 and the specified date.
3777
3778 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
3779
3780         * wget.h (or): Define HAVE_SSL when either HAVE_OPENSSL or
3781         HAVE_GNUTLS are defined.
3782
3783         * gnutls.c: New file.
3784
3785 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
3786
3787         * http.c (gethttp): Don't print the request write error message
3788         twice.
3789
3790 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
3791
3792         * openssl.c (openssl_errstr): Instead of always using a large
3793         static buffer, only allocate the error string when there is an
3794         actual error.
3795
3796 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
3797
3798         * xmalloc.c (debugging_free): Prefix hex pointer value with "0x"
3799         when printing.
3800
3801 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
3802
3803         * utils.c (NEXT_BASE64_CHAR): Rename to NEXT_CHAR and simplify to
3804         get the next non-whitespace character.
3805
3806 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
3807
3808         * utils.c (base64_decode): Don't silently tolerate non-base64
3809         non-white-space characters in the base64 stream.
3810
3811 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
3812
3813         * connect.c (LAZY_RETRIEVE_INFO): Make last_tick unsigned to match
3814         transport_map_modified_tick.
3815
3816 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
3817
3818         * config-post.h (alloca): Updated declaration to not enumerate all
3819         Windows compilers.
3820
3821 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
3822
3823         * openssl.c (openssl_errstr): Separate error messages with "; ".
3824
3825 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
3826
3827         * ftp.c (getftp): Ditto.
3828
3829         * http.c (gethttp): Use fd_errstr.
3830
3831         * connect.c (fd_register_transport): Restructure parameters to
3832         include only a single structure that describes transport
3833         implementation.
3834
3835         * openssl.c (openssl_errstr): New function: dump SSL error strings
3836         into a static buffer and return a pointer to the buffer.
3837
3838         * connect.c (fd_errstr): New function; returns transport-specific
3839         error message, or strerror(errno) if transport doesn't supply one.
3840
3841 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
3842
3843         * mswindows.h: Also wrap accept() and listen().
3844
3845 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
3846
3847         * url.c (path_end): Skip separators appropriate for the scheme.
3848         (strpbrk_or_eos): Remove gcc-specific version, as the optimization
3849         it tried to perform no longer applies.
3850
3851 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
3852
3853         * host.c: Don't include "connect.h" now that we no longer have
3854         socket_has_inet6.
3855
3856 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
3857
3858         * host.c: Remove extraneous definition of netdb.h.
3859
3860 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
3861
3862         * http.c (gethttp): Skip error message body in the keep-alive
3863         case.
3864
3865 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
3866
3867         * url.c (url_parse): Would crash when parsing fragments.  Support
3868         fragments for FTP URLs too.
3869
3870 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
3871
3872         * version.c: Don't use "cvs" in version name, since we're not
3873         using CVS anymore.
3874
3875 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
3876
3877         * progress.c (create_image): Ditto.
3878
3879         * retr.c (retr_rate): Display smaller rate numbers with greater
3880         precision.
3881
3882 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
3883
3884         * http.c (response_head_terminator): Minor optimization.
3885
3886         * retr.c (fd_read_hunk): Call terminator with pointer to the start
3887         of the data and the pointer to the current data.  Changed all
3888         callers.
3889
3890 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
3891
3892         * url.c (url_parse): Make sure u->params is not initialized for
3893         http/https URLs.
3894         (url_parse): Don't crash on garbage following []-delimited IPv6
3895         addresses.
3896
3897 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
3898
3899         * main.c (print_help): Don't refer to the non-existent -nr in
3900         description of --mirror.
3901
3902 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
3903
3904         * host.c (pretty_print_address): Renamed to just print_address.
3905         Clarify documentation.
3906
3907 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
3908
3909         * http.c (gethttp): Explicitly document the different cases when
3910         generating the Host header.
3911
3912 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
3913
3914         * host.c (pretty_print_address): Handle error result from
3915         inet_ntop.
3916
3917 2005-06-30  Gisle Vanem  <giva@bgnett.no>
3918
3919         * mswindows.c (inet_ntop): New function.  Print IPv6 addresses
3920         using WSAAddressToString.
3921
3922 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
3923
3924         * progress.c (dot_update): Remove unused variable row_qty.
3925
3926 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
3927
3928         * main.c: Check for both SIGHUP and SIGUSR1 before using them.
3929
3930 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
3931
3932         * utils.c: Unconditionally include locale.h.
3933
3934 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
3935
3936         * ptimer.c: Include sys/time.h to get struct timeval.
3937
3938 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
3939
3940         * wget.h: Remove obsolete definition of with_thousand_seps_sum.
3941
3942 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
3943
3944         * gnu-md5.h: Unconditionally include limits.h.
3945
3946 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
3947
3948         * utils.c (random_number): Use lrand48 if available.
3949         (random_float): Use drand48 if available.
3950
3951 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
3952
3953         * main.c (secs_to_human_time): Use print_decimal when printing
3954         total download time in seconds.
3955
3956         * progress.c (print_row_stats): Use it to print total download
3957         time at the end of the download.
3958         (create_image): Ditto.
3959
3960         * utils.c (print_decimal): New function; print small decimal
3961         numbers with more precision than large ones.
3962
3963         * progress.c (print_row_stats): New function.  Print ETA after the
3964         download rate at the end of each row.
3965
3966 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
3967
3968         * init.c (parse_line): Check for alphanumerics.
3969
3970 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
3971
3972         * (dot_create): Remove unnecessary casts.
3973
3974 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
3975
3976         * ftp.c (getftp): Delete trailing newlines from LIST output so
3977         lines don't come out with trailing \015\012 with -S.
3978
3979 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
3980
3981         * mswindows.h: Remove superfluous includes.
3982
3983 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
3984
3985         * config-post.h (alloca): Amend alloca declaration to take care of
3986         all Win32 compilers, not just MSVC and MinGW.
3987
3988 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
3989
3990         * utils.c (get_grouping_data): Force separator to "." rather than
3991         " " when "," is taken.
3992
3993 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
3994
3995         * wget.h (PTR_FORMAT): Cast the result of sizeof to int before
3996         passing it to printf's %*.
3997
3998         * retr.h: Declare output_stream and output_stream_regular.
3999
4000         * ftp.h: Declare ftp_last_respline.
4001
4002         * convert.h: Declare dl_url_file_map.
4003
4004         * http.h: New file.
4005
4006 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4007
4008         * cookies.c: Make cookies_now static.
4009
4010 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4011
4012         * utils.c (human_readable): Remove intermediary cast to long; MSVC
4013         has problems casting *unsigned* __int64 to double.
4014
4015 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4016
4017         * sysdep.h: Use the system-provided fnmatch by default.
4018
4019 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4020
4021         * http.c (mktime_from_utc): Renamed to timegm and moved to cmpt.c.
4022         Don't compile it if GNU timegm is available.
4023         (http_atotm): Use timegm.
4024
4025 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4026
4027         * http.c (http_atotm): Correctly query the old locale value.
4028
4029 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4030
4031         * config-post.h (alloca): Don't #define alloca under MinGW32,
4032         which defines it in malloc.h, included from mswindows.h.
4033
4034 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4035
4036         * utils.c (get_grouping_data): Force the use of separators in C
4037         locale.
4038
4039 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4040
4041         * main.c (i18n_initialize): Set all locale categories.
4042
4043         * http.c (http_atotm): Temporarily set locale to "C".
4044
4045 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4046
4047         * http.c (gethttp): Improve "POST data file missing" error
4048         message.
4049
4050 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4051
4052         * progress.c (set_progress_implementation): Type COLON as const
4053         char *.
4054
4055 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
4056
4057         * utils.c (with_thousand_seps): Handle negative numbers.
4058
4059 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
4060
4061         * progress.c (create_image): Mark the "eta" string for translation.
4062
4063 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
4064
4065         * html-url.c (get_urls_file): Don't explicitly set entry->next to
4066         NULL since entry is already zeroed out.
4067
4068 2005-06-26  Gisle Vanem  <giva@bgnett.no>
4069
4070         * mswindows.h: Define gai_strerror under MinGW.
4071
4072 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
4073
4074         * utils.c (with_thousand_seps): Correctly implement thousand seps
4075         consisting of more than one character.
4076
4077 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
4078
4079         * main.c (secs_to_human_time): Ditto.
4080
4081         * progress.c (create_image): Print more exact duration of very
4082         short downloads.
4083
4084         * main.c (secs_to_human_time): Don't translate time suffixes "h",
4085         "m", and "s", which are not strictly SI, but are "accepted for use
4086         with SI".
4087         (secs_to_human_time): Print really small intervals as 0s, not
4088         0.00s.
4089
4090 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
4091
4092         * config-post.h: Replace the alloca declaration with the one from
4093         the latest Autoconf manual.  This should remove a warning with GCC
4094         on AIX.
4095
4096 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
4097
4098         * ftp.c (getftp): Always invoke SIZE, not only when continuing a
4099         download.
4100
4101         * main.c (main): Ditto here.
4102
4103         * progress.c (create_image): When the download is finished, print
4104         how long it took.
4105
4106 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
4107
4108         * main.c (main): Print the downloaded and quota amounts with the
4109         "human_readable" function.
4110
4111         * ftp.c (print_length): Ditto.
4112
4113         * http.c (gethttp): Don't display thousand separators.
4114
4115         * utils.c (with_thousand_seps): Rewritten to respect locale
4116         settings and to be type size agnostic.
4117
4118 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4119
4120         * utils.c (human_readable): Divide with 1024 instead of shifting
4121         so the operation can work with non-integer N.
4122
4123 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4124
4125         * progress.c (eta_to_human): New logic for more human-readable
4126         ETA.
4127
4128 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4129
4130         * utils.c (with_thousand_seps_sum): Decrease buffer size so it
4131         cannot overrun add_thousand_seps's buffer.
4132
4133 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4134
4135         * utils.c (SPRINTF_WGINT): The correct format is %I64d, not just
4136         %I64.
4137
4138 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4139
4140         * http.c (http_loop): Don't warn about wildcards in HTTP URLs if
4141         globbing isn't requested in the first place.
4142
4143         * retr.c (retrieve_url): Temporarily turn off globbing when
4144         processing HTTP->FTP redirects.
4145
4146 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4147
4148         * utils.c (with_thousand_seps_sum): Now defined only if
4149         SUM_SIZE_INT is double.
4150
4151         * wget.h (SUM_SIZE_INT): Instead of bothering with long, long
4152         long, __int64, and friends, simply either use wgint or double, end
4153         of story.  Since we know how to print either, we no longer need
4154         LARGE_INT_FMT.
4155
4156         * sysdeps.h (LARGE_INT): Renamed to SUM_SIZE_INT to better reflect
4157         its intent, and moved to wget.h.
4158
4159 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4160
4161         * Makefile.in: No need to clean .libs.
4162
4163 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
4164
4165         * cookies.c (parse_set_cookies): Cast pointer subtraction to int
4166         before using it with %d; AIX compiler warns on this.
4167         Reported by Jens Schleusener.
4168
4169 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
4170
4171         * http.c (gethttp): Don't prepend / here.
4172
4173         * cookies.c (cookie_handle_set_cookie): Prepend / to PATH.
4174         (cookie_header): Ditto.
4175
4176 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
4177
4178         * init.c: opt.verbose must be declared as int.
4179
4180 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
4181
4182         * cmpt.c (strpbrk): Removed.
4183         (mktime): Removed.
4184         Include <time.h>.
4185
4186 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
4187
4188         * utils.c (read_file): Ditto.
4189
4190         * main.c (main): Use struct_fstat.
4191
4192         * mswindows.h (struct_fstat): Define a struct_fstat to deal with
4193         the fact that Borland 5.5 has 64-bit stat, but not 64-bit fstat!
4194
4195 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
4196
4197         * sysdep.h: Remove code that deals with Watcom.
4198
4199 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4200
4201         * all: Use bool instead of int and false/true instead of 0/non-0
4202         for boolean variables and values.
4203
4204 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4205
4206         * sysdep.h: Include the stdbool.h/_Bool/bool blurb from Autoconf.
4207
4208 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4209
4210         * init.c (cmd_lockable_boolean): Removed.
4211
4212 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4213
4214         * cookies.c (struct cookie): Use 1-bit bitfields for booleans
4215         which makes the structure takes less space at no cost in
4216         complexity.
4217
4218 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4219
4220         * Makefile.in ($(OBJ)): Add the config.h dependency.
4221
4222 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4223
4224         * openssl.c, connect.c, host.c: Replace instances of #ifdef
4225         ENABLE_DEBUG if (opt.debug) {...} #endif with IF_DEBUG {...}.
4226
4227         * main.c: Rename the IF_DEBUG defined here to WHEN_DEBUG.
4228
4229         * wget.h (IF_DEBUG): New macro.
4230         (DEBUGP): Define in terms of IF_DEBUG.
4231
4232 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4233
4234         * http.c (gethttp): Only handle --set-cookies (and assert that
4235         cookie jar exists) if opt.cookies is true.  Failure to do so
4236         triggered the assert when --no-cookies was used and the server
4237         sent a Set-Cookie header.  Ouch!
4238
4239 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4240
4241         * connect.c (select_fd): Expect select() to exist.
4242
4243         * utils.c (xsleep): Always use select() as sleep fallback on
4244         non-Windows platforms.
4245
4246         * ptimer.c: Delete the implementation of PTIMER_TIME.
4247
4248         * main.c: Assume existence of signal(), test for different signal
4249         names instead.
4250
4251         * cmpt.c: Better document reasons why certain functions are
4252         included.
4253
4254 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
4255
4256         * Makefile.in: Remove the manually maintained dependency list;
4257         make all object files depend on every header.
4258
4259 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
4260
4261         * hash.c: Rename "mapping" to "cell" to avoid confusion with the
4262         term "mapping" (or "map") sometimes being used for the entire hash
4263         table.  Also rename "non-empty" to "occupied" for easier reading
4264         of if (!NON_EMPTY (...)) ... .
4265
4266 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
4267
4268         * main.c, ptimer.c, sysdep.h, utils.c: Use #elif to simplify reading of
4269         chained if-else-else-else-... statements.
4270
4271 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
4272
4273         * all: Return type of signal handlers is `void'.  Include signal.h
4274         unconditionally.
4275
4276         * all: Don't explicitly cast values returned by malloc.  We no
4277         longer support ancient compilers that don't declare malloc, and we
4278         never supported C++ builds.
4279
4280 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
4281
4282         * all: Don't declare errno.  Include both time.h and sys/time.h,
4283         as long as sys/time.h exists.  Don't dereference function pointers
4284         when invoking the functions they point to.
4285
4286         * cmpt.c (memmove): Remove function mandated by C89.
4287         (strerror): Ditto.
4288         (strstr): Ditto.
4289
4290         * all: Undo the K&R-ization changes from 2005-05-03.
4291
4292         * all: Remove support for K&R compilers: use C89 function
4293         declarations, remove definition of PARAMS, remove support for
4294         varargs, and remove ansi2knr.  Assume the presence of time.h,
4295         string.h, and other headers mandated by C89.
4296
4297 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
4298
4299         * init.c (cmd_lockable_boolean): Don't recognize literal "2" and
4300         "-1" values; unlike 0 and 1, those should never be exposed to the
4301         user.  Update the error message to be more self-consistent, as
4302         proposed by Benno Schulenberg.
4303
4304 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
4305
4306         * http.c (gethttp): Don't free "head" before using it to save
4307         headers.
4308
4309 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
4310
4311         * http.c (gethttp): When -E is in use, check for file existence
4312         after appending ".html" to the name and modify the file name if
4313         necessary.
4314
4315 2005-06-17  Hrvoje Niksic  <hniksic@xemacs.org>
4316
4317         * connect.c (socket_has_inet6): Removed.
4318
4319         * host.c (lookup_host): Don't use the AI_ADDRCONFIG getaddrinfo
4320         hint.
4321
4322 2005-06-16  Hrvoje Niksic  <hniksic@xemacs.org>
4323
4324         * init.c (cmd_lockable_boolean): Improve the error message so it
4325         lists the more useful values first.
4326
4327 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
4328
4329         * http.c (gethttp): Also report the system error when the POST
4330         data file is missing.
4331
4332 2005-06-15  Benno Schulenberg  <benno@nietvergeten.nl>
4333
4334         * ftp.c, http.c, connect.c, cookies.c, html-url.c, init.c, res.c:
4335         Gettext-ize messages that were previously missed.
4336
4337 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
4338
4339         * host.h (ip_address): Remove the trailing comma from the type
4340         enum in the no-IPv6 case.
4341
4342         * main.c (struct cmdline_option): Remove the trailing comma from
4343         the enum.
4344
4345         Reported by Jens Schleusener.
4346
4347 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
4348
4349         * url.c (strpbrk_or_eos): Check for a recent GCC version before
4350         using the statement-as-expression extension.
4351
4352 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
4353
4354         * http.c (gethttp): Don't attempt to "skip short body" if we're
4355         issuing a HEAD request (in which case the response head is not
4356         followed by a body).
4357
4358 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
4359
4360         * init.c (cmd_spec_header): Don't split the string along the
4361         commas using cmd_vector; just append the new value using
4362         vec_append instead.
4363
4364         * utils.c (vec_append): New function.
4365
4366 2005-05-27  Andreas Beckmann  <debian@abeckmann.de>
4367
4368         * html-url.c (tag_handle_link): Mark the content from the <link
4369         src="..."> tag as expecting HTML.
4370
4371 2005-05-24  Hrvoje Niksic  <hniksic@xemacs.org>
4372
4373         * http.c (http_atotm): Document the origin of the "cookie date"
4374         format.
4375
4376 2005-05-21  Hrvoje Niksic  <hniksic@xemacs.org>
4377
4378         * init.c (setval_internal): Report exact command name alongside
4379         the "display name".
4380
4381 2005-05-18  Hrvoje Niksic  <hniksic@xemacs.org>
4382
4383         * cookies.c (update_cookie_field): Explicitly cast -1 to time_t to
4384         cope with systems where time_t is unsigned.
4385
4386         * cookies.c: Remove unnecessary casts to time_t from values
4387         already of that type.
4388
4389 2005-05-17  Hrvoje Niksic  <hniksic@xemacs.org>
4390
4391         * ftp.c (ftp_loop_internal): Same here.
4392
4393         * http.c (http_loop): Don't clobber the file when -c is specified
4394         and the first attempt to retrieve the file fails.
4395
4396 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
4397
4398         * openssl.c (ssl_check_certificate): Print all issues with a
4399         certificate.
4400
4401 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
4402
4403         * ftp-basic.c: Don't xfree() the line returned by ftp_response if
4404         the returned code is not FTPOK.
4405
4406 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
4407
4408         * init.c (cleanup): Don't free the non-existent opt.ftp_acc.  Free
4409         the SSL-related stuff.
4410
4411 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
4412
4413         * ftp.c (print_length): Consistently print \n at end of the
4414         "Length" line.
4415
4416 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
4417
4418         * openssl.c (ssl_connect): Announce the beginning and the end of
4419         the SSL handshake when in debug mode.
4420
4421         * wget.h (PTR_FORMAT): New macro for easier printing of pointer
4422         values.  Use %0*lx along with PTR_FORMAT instead of %p.
4423
4424 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
4425
4426         * http.c (gethttp): Would forget to close the connection when
4427         keep_alive was not used.
4428
4429 2005-05-13  Hrvoje Niksic  <hniksic@xemacs.org>
4430
4431         * openssl.c (pattern_match): Document the code that decides
4432         whether "*" matches ".".
4433
4434 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
4435
4436         * ftp-ls.c (ftp_index): Use %d to print the port number, which is
4437         now int.
4438         From Steven M. Schweda's VMS patches.
4439
4440 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
4441
4442         * url.c (rewrite_shorthand_url): Don't rewrite "https://host" to
4443         "ftp://https//host" when SSL is not used.
4444
4445 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
4446
4447         * openssl.c (ssl_check_server_identity): Renamed to
4448         ssl_check_certificate because it does more than just checking the
4449         server's identity.
4450         (ssl_check_certificate): Tell the user about
4451         --no-check-certificate.
4452
4453 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
4454
4455         * openssl.c (ssl_init): Always use SSL_VERIFY_NONE, so that the
4456         handshake finishes even if the certificate is invalid.  That way
4457         ssl_check_server_identity can provide better diagnostics on why
4458         the verification failed.
4459
4460 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
4461
4462         * openssl.c (pattern_match): New function.
4463         (ssl_check_server_identity): Treat peer certificate common name as
4464         wildcard.
4465
4466 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
4467
4468         * openssl.c (ssl_check_server_identity): Print certificate subject
4469         and issuer.
4470
4471 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
4472
4473         * res.c (res_register_specs): Correctly pass pointers to
4474         hash_table_get_pair.
4475
4476 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
4477
4478         * http.c (gethttp): Call ssl_check_server_identity.
4479
4480         * openssl.c (ssl_check_server_identity): New function, verifies
4481         that the host name in the certificate matches the actual host
4482         name.
4483         (verify_cert_callback): Removed, since it didn't do anything
4484         except returning the preverify_ok argument.
4485
4486         * connect.c (fd_transport_context): Allow retrieval of the context
4487         pointer registered with fd_register_transport.
4488
4489 2005-05-09  Hrvoje Niksic  <hniksic@xemacs.org>
4490
4491         * openssl.c (verify_cert_callback): Renamed from verify_callback.
4492         Always return the received "ok" value.  Print the X509 name in
4493         debug mode.
4494         (ssl_init): Enable partial writes in SSL context.
4495
4496 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
4497
4498         * http.c (http_loop): Check for wildcards in the URL path
4499         component, not in the whole URL.
4500
4501         * ftp.c (ftp_loop): Check for wildcards in URL path before
4502         unescaping, so the users can escape globbing metacharacters with %
4503         escapes.
4504
4505 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
4506
4507         * init.c (run_command): Correctly interpret the return value of
4508         parse_line.
4509         (commands): Re-alphabetize.
4510
4511 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
4512
4513         * netrc.c (parse_netrc): Explicitly check for assignment != NULL
4514         to silence warning from Borland C.
4515
4516         * url.c (sync_path): Don't unnecessarily increment p.
4517         (url_parse): Don't unnecessarily set url_encode to NULL just
4518         prior to return from the function.
4519
4520 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
4521
4522         * log.c (escnonprint_internal): Place variable declarations
4523         before other statements.
4524
4525 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
4526
4527         * html-url.c: Include recur.h.
4528
4529         * http.c (request_new): Define as accepting no args.
4530
4531 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
4532
4533         * url.c (strpbrk_or_eos): Made inline.  Use strchr(s, '\0') for
4534         finding the NUL char position.
4535
4536 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
4537
4538         * url.c (decide_copy_method): Renamed to char_needs_escaping.
4539         Since it now returns only two possible values, change it to return
4540         boolean (int).
4541
4542 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
4543
4544         * ftp-basic.c (ftp_request): Prevent newlines in VALUE causing
4545         inadvertent sending of multiple FTP commands.
4546
4547 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
4548
4549         * url.c (decide_copy_method): Never cause reencode_escapes to
4550         decode % escapes; it is too intrusive and breaks some servers.
4551
4552 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
4553
4554         * http.c (gethttp): When tunnelling SSL traffic over proxy with
4555         CONNECT, we're really talking to the remote server directly.
4556         Because of this, the request-line argument must be the URL path
4557         rather than the whole URL, as it would be when using regular
4558         proxies.
4559         Reported by Charles Lane.
4560
4561 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
4562
4563         * init.c (cmd_spec_useragent): Allow empty User-Agent.
4564
4565         * http.c (gethttp): Don't print "unknown authentication scheme"
4566         for failed Basic authentication.
4567         (SET_USER_AGENT): Don't set user-agent if opt.useragent is empty.
4568         (gethttp): Use alloca for allocation of www_authenticate.
4569
4570 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
4571
4572         * main.c (print_help): Fix wording of --secure-protocol help text.
4573
4574 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
4575
4576         * cmpt.c (strstr): Updated from glibc 2.3.5.
4577
4578 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4579
4580         * http.c (http_atotm): Zero out the whole struct tm being passed
4581         to strptime.
4582
4583 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4584
4585         * main.c (main): Propagate option name to setoptval.
4586
4587         * init.c (setoptval): Accept another argument, OPTNAME.  Propagate
4588         that argument as the option name independently of the actual
4589         command, determined by command_by_name(com).
4590
4591 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4592
4593         * init.c (parse_line): Make the return value indicate whether
4594         there was a syntax error or a setter failed.
4595         (run_wgetrc): Return an indication on whether an error has been
4596         encountered.
4597         (initialize): Abort if there have been errors running either
4598         .wgetrc file.
4599
4600 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4601
4602         * log.c (copy_and_escape): Slightly reduce code repetition between
4603         the two loops.
4604
4605 2005-05-05  Charles C.Fu  <ccwf@bacchus.com>
4606
4607         * utils.c (proclist): Strip leading slash when calling fnmatch
4608         too, otherwise wildcard comparisons always fail.
4609
4610 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4611
4612         * utils.c (touch): Set access time to current time.
4613
4614 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4615
4616         * url.c (url_unescape): Don't unescape %00, it effectively
4617         truncates the string.
4618
4619 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4620
4621         * log.c (copy_and_escape): Replace the FOR_URI argument with a
4622         slightly more general mechanism for specifying different kinds of
4623         escape.
4624
4625 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4626
4627         * ftp-basic.c (ftp_response): Fix printing FTP server response.
4628
4629 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
4630
4631         * retr.c (limit_bandwidth_reset): Reset sleep_adjust.
4632         (limit_bandwidth): Don't allow huge "adjustment" values that
4633         result from being suspended for a while.
4634
4635 2005-05-04  Hrvoje Niksic  <hniksic@xemacs.org>
4636
4637         * wget.h: If gettext was found but libtintl.h wasn't, declare
4638         gettext's return type to avoid type mismatches.
4639
4640 2005-05-03  Hrvoje Niksic  <hniksic@xemacs.org>
4641
4642         * url.c (url_parse): Rename label `error' to avoid conflict with
4643         identifier.
4644
4645         * retr.c (fd_read_body): Rename label `out' to avoid conflict with
4646         identifier.
4647         (fd_read_hunk): Use explicit double constant.
4648         (retrieve_from_file): Don't use string concatenation.
4649         (sleep_between_retrievals): Make sure xsleep is called with a
4650         `double' argument.
4651         (no_proxy_match): Define as static, like it is declared.
4652
4653         * progress.c (bar_create): Use 0.0 instead of 0 because K&R
4654         compilers can't automatically promote it.
4655
4656         * http-ntlm.c (ntlm_output): Replace \xHH sequences with \OOO for
4657         the sake of old compilers.
4658
4659         * ftp.c (ftp_loop_internal): Don't use string concatenation.
4660
4661         * http.c (request_send): Use explicit double constants when
4662         calling fd_read and fd_write.
4663         (post_file): Ditto.
4664         (gethttp): Ditto.
4665         (skip_short_body): Ditto.
4666
4667         * ftp-basic.c: When calling fd_write, specify the last argument as
4668         a `double' constant for the sake of K&R compilers which don't see
4669         the prototype and therefore can't promote it to double
4670         automatically.
4671
4672         * cookies.c (cookie_jar_load): Rename abort label to abort_cookie
4673         to avoid name conflict in K&R compilers.
4674
4675 2005-04-29  Hrvoje Niksic  <hniksic@xemacs.org>
4676
4677         * ptimer.c (posix_init): Since we allow _POSIX_MONOTONIC_CLOCK==0,
4678         it is not enough to check for _POSIX_MONOTONIC_CLOCK-0, we must
4679         also check for defined(_POSIX_MONOTONIC_CLOCK).
4680
4681 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
4682
4683         * ftp.c, hash.c, connect.c, host.c, http.c: Remove unreached code,
4684         such as "break" following return or abort.
4685
4686 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
4687
4688         * init.c (commands): Wrap the use of opt.random_file in #ifdef
4689         HAVE_SSL.
4690
4691 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
4692
4693         * http.c (gethttp): Correctly set the user agent.
4694
4695 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
4696
4697         * init.c (cmd_spec_useragent): Free the old value of
4698         opt.useragent before setting the new one.
4699
4700 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
4701
4702         * main.c: Map --ftp-password, --http-password and --proxy-password to
4703         the new ftppassword, httppassword and proxypassword commands
4704         respectively.  Document the --user and --password options in the help
4705         string.
4706
4707 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
4708
4709         * ftp.c: Add support for --user and --password.
4710
4711         * http.c: Add support for --user and --password.
4712
4713         * init.c: Deprecated ftppasswd, httppasswd, login, passwd and
4714         proxypasswd commands.  Added ftppassword, ftpuser, httppassword,
4715         password, proxypassword and user commands.
4716
4717         * main.c: Renamed --ftp-passwd to --ftp-password.  Added --ftp-user,
4718         --http-password, --password, --proxy-password and --user.  Deprecated
4719         --http-passwd and --proxy-passwd.  Added documentation for new options
4720         and removed documentation for deprecated options in the help string.
4721
4722         * options.h (struct options): Added user and passwd members to handle
4723         --user and --password respectively.  Renamed ftp_acc and ftp_pass
4724         members to ftp_user and ftp_passwd for consistency.
4725
4726 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
4727
4728         * main.c (print_help): Advertise "DER", not "ASN1".
4729
4730 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
4731
4732         * openssl.c (init_prng): Disable the weak random seed by default.
4733
4734         * http.c (gethttp): Simplify SSL initialization; disable SSL when
4735         anything goes wrong with the initialization.
4736
4737         * options.h (struct options): New option opt.random_file.
4738
4739 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
4740
4741         * init.c: Wrap private key commands in IF_SSL.
4742
4743 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
4744
4745         * openssl.c (ssl_init): Ditto.
4746
4747         * options.h (struct options): Allow separate specification of key
4748         type and certificate type.
4749
4750         * init.c (cmd_spec_cert_type): Provide a "der" synonym for "asn1"
4751         certificate encoding.
4752
4753 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
4754
4755         * openssl.c: Renamed "gen_sslfunc.c" to "openssl.c" and
4756         "gen_sslfunc.h" to "openssl.h".  This reflects the intent of
4757         openssl.c encapsulating the OpenSSL-specific code.
4758
4759 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
4760
4761         * init.c: Renamed "closure" (a synonym for context in some
4762         cultures) to "place", which more accurately reflects the usage.
4763
4764 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
4765
4766         * gen_sslfunc.c (ssl_init): Use default locations for loading the
4767         certificate bundles.
4768         (ssl_init_prng): Disable the cryptographically weak PRNG
4769         initialization fallback.
4770
4771         * init.c: Renamed SSL command-line arguments and wgetrc commands.
4772         (defaults): Check the server certificate by default.
4773
4774 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
4775
4776         * cookies.c (cookie_handle_set_cookie): Delete the part of the
4777         path after the trailing slash.
4778
4779         * http.c (gethttp): Call cookie_handle_set_cookie with path that
4780         begins with '/'.
4781
4782 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
4783
4784         * http.c (gethttp): Call skip_short_body only if keep_alive is in
4785         use.
4786         (gethttp): Send the User-Agent header with the CONNECT request as
4787         well.
4788
4789 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
4790
4791         * main.c (option_data): Removed support for the undocumented flag
4792         --use-proxy.
4793
4794 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
4795
4796         * main.c (option_data): Don't treat -Y as a boolean switch; treat
4797         it as a value switch instead, so "-Y off" continues to work.
4798
4799 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
4800
4801         * utils.c (aprintf): Delete unreachable statement.
4802
4803 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
4804
4805         * host.c (cmp_prefer_ipv4): New function.
4806         (cmp_prefer_ipv6): New function.
4807         (lookup_host): Use the appropriate comparator according to
4808         opt.prefer_family.
4809
4810         * init.c: New option prefer_family.
4811
4812         * host.c (is_valid_ipv6_address): Spell NS_* constants in lower
4813         case to avoid clash with system headers.
4814         (lookup_host): Reorder the addresses so that IPv4 ones come first.
4815
4816         * utils.c (stable_sort): New function.
4817
4818 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
4819
4820         * connect.c (retryable_socket_connect_error): Return 0 for
4821         ENETUNREACH and EHOSTUNREACH.
4822
4823 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
4824
4825         * cmpt.c: Reenable the memmove implementation for systems that
4826         lack it.
4827
4828         * http.c (gethttp): Store the "authorized" state of the persistent
4829         connection.
4830         (request_remove_header): New function.
4831         (gethttp): Don't send the "Basic" authentication if the connection
4832         is already authorized.
4833
4834 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
4835
4836         * utils.c (base64_encode): Treat input as unsigned chars.
4837         Required for correct encoding of binary stuff.
4838
4839 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
4840
4841         * http-ntlm.c: Format the function definitions in an
4842         ansi2knr-friendly fashion.
4843
4844 2005-04-22  Hrvoje Niksic  <hniksic@xemacs.org>
4845
4846         * http.c (gethttp): Handle multiple WWW-Authentication headers,
4847         only one of which is recognized.  Those are sent by IIS with NTLM
4848         authorization.
4849         (create_authorization_line): Propagate information whether
4850         authorization is finished.
4851         (gethttp): Only stop authorization when it's really finished, not
4852         after fixed two steps.
4853
4854 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
4855
4856         * gen_sslfunc.c (ssl_init): Fix warning message text; mark the
4857         message as translatable.
4858
4859 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
4860
4861         * main.c (print_help): Print the EGD option outside the cluster of
4862         SSL options.
4863
4864 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
4865
4866         * http-ntlm.c (ntlm_output): Fix setting the domain.
4867         Suggested by Sami Krank.
4868
4869 2005-04-20  Mauro Tortonesi  <mauro@ferrara.linux.it>
4870
4871         * connect.c: Set IPV6_V6ONLY socket option when -6 switch is used.
4872
4873 2005-04-20  FUJISHIMA Satsuki  <sf@FreeBSD.org>
4874
4875         * http.c (request_set_header): Fix the check whether a new header
4876         needs to be allocated.
4877
4878 2005-04-18  Hrvoje Niksic  <hniksic@xemacs.org>
4879
4880         * utils.c (base64_encode): Use the parameter order that makes more
4881         sense.  Return the length of the base64 written.  Updated all
4882         callers.
4883
4884 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
4885
4886         * http.c (request_set_header): Free NAME when VALUE is NULL and
4887         freeing the header name is requested.
4888
4889 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
4890
4891         * snprintf.c (fmtstr): Declare VALUE as const char *.
4892         Based on patch by Russ Allbery.
4893
4894 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
4895
4896         * snprintf.c (fmtfp): More correct handling of significant digit
4897         count with %g -- 0.002 has one significant digit, not three.
4898
4899 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
4900
4901         * retr.c (fd_read_body): Respect read timeout with non-interactive
4902         or no progress gauge -- treat ETIMEDOUT specially only when
4903         progress_interactive.
4904         Reported by FUJISHIMA Satsuki.
4905
4906 2005-04-16  FUJISHIMA Satsuki  <sf@FreeBSD.org>
4907
4908         * http.c (gethttp): Don't use HTTP/1.0 persistent connections over
4909         proxy.
4910
4911 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
4912
4913         * snprintf.c: Use the PARAMS macro to handle prototypes.  Write
4914         function definitions in the ansi2knr-friendly way.
4915         (fmtstr): If string precision is specified, don't read VALUE past
4916         it.
4917         (dopr): Actually print %g and %e formats.
4918         (fmtfp): Fix a bug that caused 0.01 to be printed as 0.1.
4919         (fmtfp): Use LLONG in floating point conversions to be able to
4920         convert more digits.
4921         (fmtfp): Interpret precision as number of significant digits with
4922         %g.
4923         (fmtfp): Omit trailing decimal zeros with %g.
4924
4925         * snprintf.c: Don't include <ctype.h> because none of it is used.
4926         Include strings.h/string.h, as per Autoconf.
4927
4928 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
4929
4930         * ptimer.c: Use _POSIX_TIMERS - 0 > 0, which handles the case when
4931         _POSIX_TIMERS is defined but empty, as well as the case when it is
4932         undefined.  Do the same with the check for _POSIX_MONOTONIC_CLOCK.
4933         Suggested by Larry Jones.
4934
4935 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
4936
4937         * ptimer.c: Check that _POSIX_TIMERS is defined as well as > 0.
4938         Problem reported by Steven M. Schweda.
4939
4940 2005-04-14  Hrvoje Niksic  <hniksic@xemacs.org>
4941
4942         * http.c (skip_short_body): Print the skipped body data in debug
4943         mode.
4944         (skip_short_body): Don't skip more than 4k of body data.
4945         (skip_short_body): Return whether the skipping was successful.
4946         (gethttp): If skip_short_body failed, invalidate the connection.
4947
4948 2005-04-12  Gisle Vanem  <giva@bgnett.no>
4949
4950         * ftp.c (getftp): Ditto.
4951
4952         * http.c (gethttp): Open the output file in binary mode.
4953
4954 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
4955
4956         * hash.c: Conditionalize including config.h on HAVE_CONFIG_H
4957         instead of on STANDALONE.
4958
4959 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
4960
4961         * gen_sslfunc.c (ssl_print_errors): Made static.
4962         (ssl_print_errors): Eliminate potentially dangerous fixed-size
4963         error buffer.  Passing NULL to ERR_error_string causes it to use
4964         its own static buffer, which is fine for our purposes.
4965
4966         * gen_sslfunc.c: Include gen_sslfunc.h.  Make the declarations of
4967         ssl_init and ssl_conect match the actual definitions.
4968         (ssl_connect): Simply return a boolean, the SSL context is no
4969         longer useful as a return value.
4970
4971         * retr.c: Don't include SSL headers; we don't need them.
4972
4973 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
4974
4975         * config-post.h: Don't define _VA_LIST under Solaris; it breaks
4976         compilation with GCC 3.4 under Solaris 10.  (It was defined to
4977         avoid a warning with previous versions of GCC.)
4978
4979 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
4980
4981         * xmalloc.c (register_ptr): Warn the user to increase SZ prior to
4982         aborting.
4983
4984 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
4985
4986         * convert.c (convert_cleanup): Free converted_files.
4987
4988 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
4989
4990         * wget.h (DEBUGP): Use __builtin_expect to give a hint to GCC that
4991         opt.debug is false in the vast majority of cases.
4992
4993 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
4994
4995         * config-post.h: Declare alloca as void *, not char *.
4996
4997 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
4998
4999         * recur.c (download_child_p): When -p is used, (temporarily)
5000         ignore accept/reject rules for HTMLs, even when they are at the
5001         maximum recursion depth.  That is because with -p we are, if
5002         necessary, overstepping the max. depth to get the requisites.
5003
5004 2004-06-12  Larry Jones <lawrence.jones@ugsplm.com>
5005
5006         * recur.c (download_child_p): Correct the logic in check number 6:
5007         test opt.reclevel (not DEPTH) against INFINITE_RECURSION.
5008
5009 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
5010
5011         * url.c: Use "static const" in preference to "const static".
5012         Sun's cc warns that "storage class after type is obsolescent".
5013
5014         * url.c (urlchr_table): Don't mark ~ as unsafe, too many broken
5015         web sites are confused when ~ is changed to %7E.  Their servers
5016         redirect /%7Efoo/ to /~foo/, which Wget again accesses using %7E,
5017         causing further redirections, therefore looping infinitely.  See
5018         Debian bug #301624 for an example.
5019
5020 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
5021
5022         * alloca.c: Include wget.h to be able to use xmalloc.  In addition
5023         to defining malloc to xmalloc, also define free to xfree.
5024
5025 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
5026
5027         * http-ntlm.c (ntlm_output): Use "char", not "unsigned char" for
5028         ntlmbuf.  Our base64 functions accept char anyway.
5029         (ntlm_output): Join up the format string, since we nominally
5030         support K&R compilers.
5031         (ntlm_output): Ditto.
5032
5033 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
5034
5035         * ptimer.c: Use Windows timers under Cygwin, whose POSIX timer
5036         implementation is incomplete.
5037
5038 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
5039
5040         * ptimer.c (struct ptimer): Remove the unused initialized field.
5041
5042         * ptimer.c: Renamed function parameters from WT (which used to
5043         stand for wget_timer or wtimer) to PT.
5044
5045 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
5046
5047         * ptimer.c (posix_init): Be smarter about choosing clocks.  In
5048         decreasing order of preference, use CLOCK_MONOTONIC,
5049         CLOCK_HIGHRES, and CLOCK_REALTIME.
5050         (ptimer_allocate): Removed.
5051
5052         * ptimer.c: Refactor the code by cleanly separating the
5053         architecture-dependent code from the architecture-independent
5054         code.
5055
5056 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
5057
5058         * ptimer.c (ptimer_init): Explicitly check that
5059         _POSIX_MONOTONIC_CLOCK is *both* defined and >=0.  (Undefined
5060         symbols are >=0.)
5061
5062 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
5063
5064         * ptimer.c (ptimer_diff): Fix typo affecting Windows build.
5065
5066 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
5067
5068         * ptimer.c (ptimer_init): In fact, _POSIX_MONOTONIC_CLOCK needs to
5069         be >= 0.
5070
5071         * ptimer.c (ptimer_init): Check whether _POSIX_MONOTONIC_CLOCK is
5072         defined instead of whether it's greater than 0.  glibc defines it
5073         to 0, but still makes it available via sysconf.
5074
5075 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
5076
5077         * mswindows.c (str_to_int64): Rename OVERFLOW and UNDERFLOW to
5078         INT64_OVERFLOW and INT64_UNDERFLOW, since those names are used.
5079
5080 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
5081
5082         * ptimer.c: New file.  Move the "wtimer" functions from utils.c to
5083         this file and rename them to ptimer_.
5084
5085 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
5086
5087         * host.c (NO_ADDRESS): Define NO_ADDRESS only after the system
5088         headers have been included.
5089
5090 2005-04-06  Hrvoje Niksic  <hniksic@xemacs.org>
5091
5092         * http.c (pconn): Include NTLM data, which is per-connection.
5093         (known_authentication_scheme_p): Recognize NTLM authorization.
5094         (create_authorization_line): Call ntlm_input and ntlm_output.
5095
5096         * http-ntlm.c: New file, donated by Daniel Stenberg and originally
5097         written for curl, heavily modified for Wget.
5098
5099         * utils.c (base64_encode): Relocated from http.c, since it is now
5100         used by http-ntlm.c, and will possibly be used elsewhere.
5101         (base64_decode): New function, originally based on code from GNU
5102         recode.
5103
5104 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
5105
5106         * ftp.c (ftp_loop): Ditto.
5107
5108         * ftp-basic.c (ftp_pasv): Use the xzero shorthand for memset(0).
5109         (ftp_lpsv): Ditto.
5110
5111 2005-04-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
5112
5113         * Makefile.in: removed string_t.c from list of source files.
5114
5115 2005-04-04  Mauro Tortonesi  <mauro@ferrara.linux.it>
5116
5117         * string_t.c: Removed.
5118
5119         * string_t.h: Removed.
5120
5121 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
5122
5123         * url.c (rewrite_shorthand_url): Only accept recognized schemes.
5124         That way "foo:80" will correctly be rewritten to "http://foo:80"
5125         instead of left unchanged and ultimately rejected because of
5126         "unsupported scheme foo".
5127
5128 2005-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
5129
5130         * utils.c (number_to_string): Avoid explicit 64-bit constants;
5131         construct them by multiplication at compile-time.
5132
5133         * utils.c, elsewhere: Don't append "L" to 32-bit integer
5134         constants; we aren't really compilable on 16-bit systems anyway.
5135
5136         * hash.c (prime_size): Remove primes larger than 2^31, but include
5137         2^31-1, which is prime.
5138
5139 2005-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
5140
5141         * utils.c (string_set_to_array): New function.
5142
5143         * convert.c: Replace the use of "slists" with sets/hash-tables,
5144         which in fact suit the intended purpose much better.
5145         downloaded_html_list is removed altogether.
5146
5147 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
5148
5149         * ftp.h (enum): Rename GLOBALL, GETALL, and GETONE to
5150         GLOB_GLOBALL, GLOB_GETALL, and GLOB_GETONE to avoid conflict with
5151         Linux headers.
5152
5153 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
5154
5155         * utils.c (numdigit): More correct handling of negative numbers.
5156
5157 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
5158
5159         * http.c (gethttp): Print the human-readable size.
5160
5161         * ftp.c (getftp): Print the human-readable size of the file to be
5162         downloaded.
5163
5164         * utils.c (human_readable): New function.
5165
5166         * utils.c: Renamed "legible" to "with_thousand_seps",
5167         "legible_large_int" to "with_thousand_seps_large", and "legible_1"
5168         to "add_thousand_seps".
5169
5170 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
5171
5172         * http.c (gethttp): Inhibit persistent connections when talking to
5173         proxies, as mandated by RFC 2068.
5174
5175 2005-03-20  Hrvoje Niksic  <hniksic@xemacs.org>
5176
5177         * url.c (unescape_single_char): New function.
5178         (url_escape_dir): Use it to unescape slashes in directory
5179         components.
5180         (url_string): Escape unsafe chars in host name, except for the ':'
5181         charaters, which can appear in IPv6 addresses.
5182
5183         * main.c (main): Don't access the cookie jar directly.
5184
5185         * log.c (escnonprint_internal): Correctly calculate the needed
5186         string size.  Don't forget the buffer's new size after having
5187         reallocated it.
5188         (log_cleanup): New function.  Free the escnonprint ring data.
5189
5190         * init.c (cleanup): Don't free the cookie jar explicitly, it is
5191         now done by http_cleanup.
5192         (cleanup): opt.user_headers is now a vector, free it with
5193         free_vec.
5194
5195         * http.c (gethttp): Make sure to free the request data, the status
5196         message, and the response data before returning from the function.
5197         (save_cookies): New function.
5198         (http_cleanup): Free the cookie jar here.
5199
5200         * hash.c: Renamed string_hash to hash_string and ptrhash to
5201         hash_pointer.  Exported hash_pointer.
5202
5203         * xmalloc.c: Organized malloc_table (previously malloc_debug) as a
5204         simple EQ hash table.  register_ptr and unregister_ptr are now of
5205         O(1) complexity.
5206
5207         * xmalloc.c: Renamed "*_debug" to debugging_* and "*_real" to
5208         checking_*.
5209
5210 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
5211
5212         * utils.c (debug_test_md5): Moved to gen-md5.c.
5213
5214         * mswindows.h: Don't declare inet_ntop, since we don't use it.
5215
5216         * mswindows.h: For consistency, also wrap closesocket, it being
5217         a Winsock call.
5218
5219         * mswindows.h: Don't declare sleep and usleep; we're defining
5220         xsleep now.
5221
5222         * mswindows.h (mkdir): Don't special-case Borland C, _mkdir
5223         works there as well.
5224
5225         * host.c: Don't include winsock header files; the correct ones
5226         are already included by mswindows.h.
5227
5228         * mswindows.c (xsleep): Round toward the nearest millisecond
5229         in an attempt to avoid average short sleeps.
5230
5231         * utils.c (wtimer_granularity): Report correct values for
5232         Windows timers and for high-resolution timers.
5233
5234         * utils.c (wtimer_initialize_once): New function, called to
5235         initialize the timer frequency.
5236
5237         * utils.c: Replace the use of GetSystemTime with high-resolution
5238         counters under Windows.  When high-resolution counters are
5239         unavailable, use GetTickCount().
5240
5241 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
5242
5243         * retr.c (fd_read_body): Undo the 2004-11-18 change.  Instead,
5244         always be "exact".
5245
5246 2005-03-17  Hrvoje Niksic  <hniksic@xemacs.org>
5247
5248         * ftp-basic.c (ftp_login): Don't free the string if ftp_response
5249         returned an error status because the line didn't get allocated in
5250         the first place.
5251
5252 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
5253
5254         * http.c (read_http_response_head): Limit the response size to 64k
5255         bytes.
5256
5257         * retr.c (fd_read_hunk): Accept a MAXSIZE argument that limits the
5258         number of bytes the function is allowed to allocate.
5259         (fd_read_line): Limit the line to 4096 bytes.
5260
5261 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
5262
5263         * wget.h: Include options.h after wgint has been defined.
5264
5265         * options.h (struct options): Declare options processed with
5266         cmd_bytes as wgint, not long.
5267
5268 2005-03-18  Hrvoje Niksic  <hniksic@xemacs.org>
5269
5270         * init.c (cmd_file): Use concat_strings.
5271
5272         * http.c (basic_authentication_encode): Use concat_strings.
5273
5274         * ftp-ls.c (ftp_index): Use concat_strings.
5275
5276         * ftp-basic.c (ftp_request): Use concat_strings.
5277
5278         * utils.c (concat_strings): New function.
5279
5280 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
5281
5282         * init.c (simple_atof): Handle negative numbers; skip whitespace
5283         before the number.
5284         (simple_atoi): Ditto.  Also, check for overflow and underflow.
5285         (cmd_number): Bail out on negative numbers.
5286         (parse_bytes_helper): Ditto.
5287
5288 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
5289
5290         * http.c (gethttp): Handle multiple Set-Cookie headers sent by
5291         remote server.
5292
5293 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
5294
5295         * init.c (defaults): Use passive FTP by default.
5296
5297 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
5298
5299         * mswindows.c: Provide wrappers to Winsock functions that set
5300         errno to WSAGetLastError() in case of failure.  Also provide a
5301         Windows-specific version of strerror.
5302
5303         * mswindows.h: Wrap calls to socket, bind, connect, recv, send,
5304         select, getsockname, getpeername, and setsockopt.
5305
5306 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
5307
5308         * url.c (url_parse): Reject port numbers larger than 65535.  We
5309         also check for overflow while parsing port numbers.
5310
5311 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
5312
5313         * utils.c (read_file): Don't use wgint for file size; LFS won't
5314         work since the file is mmap'ed as a whole.
5315
5316         * options.h: Don't include stdio.h.
5317
5318         * log.c: Ditto.
5319
5320         * init.c: Disambiguate assignment from non-zero test to avoid
5321         Borland C warning.
5322
5323         * http.c (response_new): Don't needlessly post-increment count.
5324
5325         * hash.c: Include stdio.h.
5326
5327         * gnu-md5.h: Don't include stdio.h.
5328
5329         * getopt.h (struct option): Always use const.
5330
5331         * ftp.c (getftp): Avoid unnecessary assignment to RES to avoid
5332         Borland C warning.
5333
5334         * ftp-ls.c: Disambiguate assignment from non-zero test to avoid
5335         Borland C warning.
5336
5337         * cmpt.c (strptime_internal): Don't initialize rp_backup when
5338         !_NL_CURRENT to avoid Borland C warning.
5339
5340 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
5341
5342         * utils.c (fopen_excl): Fix parse error when O_BINARY is
5343         available.
5344
5345 2005-03-05  Hrvoje Niksic  <hniksic@xemacs.org>
5346
5347         * url.c (url_file_name): Don't allow hosts named ".." to be
5348         appended as path elements.
5349
5350 2005-03-03  Hrvoje Niksic  <hniksic@xemacs.org>
5351
5352         * retr.c (retrieve_url): Escape location header.
5353
5354         * http.c (print_server_response_1): Escape server response when
5355         printing it.
5356         (gethttp): Escape host name, status message, location header, and
5357         content type.
5358         (http_loop): Escape error message from server.
5359
5360         * host.c (lookup_host): Escape host name when printing it.
5361
5362         * ftp.c (getftp): Escape user name when printing it.
5363         (getftp): Escape remote file and directory for printing.
5364         (getftp): Escape server listing when printing it.
5365         (ftp_retrieve_list): Escape link name and file name.
5366         (ftp_retrieve_glob): Escape file name.
5367
5368         * ftp-basic.c (ftp_response): Escape server response when printing
5369         it.
5370
5371         * cookies.c (parse_set_cookies): Escape the cookie field when
5372         printing it.
5373         (parse_set_cookies): Escape contents of remote header.
5374         (cookie_handle_set_cookie): Escape host name and cookie domain.
5375
5376         * connect.c (connect_to_ip): Escape the host name.
5377
5378         * log.c (escnonprint): New function, used for printing strings
5379         coming from the server that possibly contain non-ASCII characters.
5380         (escnonprint_uri): Ditto.
5381
5382 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
5383
5384         * ftp.c (getftp): Ditto.
5385
5386         * http.c (gethttp): When we're not supposed to overwrite files,
5387         use fopen_excl to open the file and recompute the file name.
5388
5389         * log.c (redirect_output): Use unique_create to avoid a race
5390         condition.
5391
5392         * mswindows.c (fake_fork_child): Use unique_create.
5393
5394         * utils.c (fopen_excl): New function that opens a stdio stream
5395         with the O_EXCL flag (where available).
5396         (unique_create): New function, like unique_name, but also creating
5397         the file and returning a file pointer.
5398         (fork_to_background): Use unique_create to create the file
5399         immediately to avoid race condition with multiple instances of
5400         wget -b.
5401
5402 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
5403
5404         * host.c (lookup_host): Test for AI_ADDRCONFIG directly, instead
5405         of checking for HAVE_GETADDRINFO_AI_ADDRCONFIG.
5406
5407 2005-02-23  Hrvoje Niksic  <hniksic@xemacs.org>
5408
5409         * host.c (is_valid_ipv6_address): Move here from url.c.
5410         (lookup_host): If the address is numeric, don't print the
5411         "resolving..." line, don't set up DNS timeouts, and set the
5412         AI_NUMERICHOST hint, where available.
5413
5414 2005-02-26  Gisle Vanem  <giva@bgnett.no>
5415
5416         * utils.c: Use the nnnLL syntax under GCC.  Define struct_stat to
5417         struct _stati64 under __MINGW32__ as well as under MS VC.
5418
5419 2005-02-26  Hrvoje Niksic  <hniksic@xemacs.org>
5420
5421         * utils.c: Use the nnnI64 syntax for __int64 constants under all
5422         Windows compilers.
5423         (SPRINTF_WGINT): Use "%I64" under all Windows compilers.
5424
5425         * mswindows.h (WGINT_MAX): Use the nnnI64 syntax for
5426         __int64 constants under all Windows compilers.
5427         (struct_stat): Use `struct stati64' under Borland C.
5428         (fstat): Don't redefine to _fstati64 under Borland.
5429
5430         * mswindows.c: Define str_to_int64 under Borland C as well as
5431         under (older) Visual C.
5432
5433 2005-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
5434
5435         * ftp.c (getftp): Initialize err to suppress compiler warning.
5436
5437 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
5438
5439         * ftp.c (ftp_expected_bytes): Fix bug that caused infloop because
5440         of not correctly skipping the '(' character.
5441
5442 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
5443
5444         * mswindows.c (wget_ftello): Removed.
5445
5446         * mswindows.h: Remove bogus definition of stat.
5447         (wget_ftello): Remove the leftover ftello replacement.
5448
5449 2005-02-20  Hrvoje Niksic  <hniksic@xemacs.org>
5450
5451         * mswindows.c (wget_ftello): Wget's replacement for ftello.
5452
5453         * utils.c (file_size): Use ftello where available.
5454
5455         * ftp-ls.c (ftp_parse_unix_ls): Use str_to_wgint to parse the file
5456         size.
5457         (ftp_parse_winnt_ls): Ditto.
5458
5459         * ftp-basic.c (ftp_size): Use str_to_wgint to convert number to
5460         wgint; pass 10 instead of 0 as the BASE argument.
5461
5462         * ftp.c (ftp_expected_bytes): Use str_to_wgint to parse the file
5463         size.
5464
5465         * sysdep.h (LARGE_INT_FMT): Use __int64 as LARGE_INT on
5466         MSVC/Windows; print it with "%I64".
5467
5468         * wget.h: Define a `wgint' type, normally aliased to (the possibly
5469         64-bit variant of) off_t.
5470
5471         * all: Use `wgint' instead of `long' for numeric variables that
5472         can hold file sizes.
5473
5474         * utils.c (number_to_string): Support printing of `wgint'
5475         argument.
5476         (number_to_static_string): New function.
5477
5478         * all: Replace printf("%ld", long_value) with printf("%s",
5479         number_to_static_string(wgint_value)).
5480
5481 2005-02-18  Mauro Tortonesi <mauro@ferrara.linux.it>
5482
5483         * main.c: Added the --ftp-passwd command line option.
5484
5485         * init.c: Renamed command passwd to ftppasswd.
5486
5487 2005-02-11  Mauro Tortonesi <mauro@ferrara.linux.it>
5488
5489         * string_t.c: Fixed a bug in do_escape and triggered escape of
5490         backslashes in string_escape to avoid ambiguities in the result
5491         string.
5492
5493 2005-02-10  Mauro Tortonesi <mauro@ferrara.linux.it>
5494
5495         * string.h: Renamed to string_t.h to fix a compilation conflict
5496         with the string.h header in the standard C library.
5497
5498         * string.c: Renamed to string_t.c for consistency with string.h.
5499
5500         * string_t.c: Ditto.
5501
5502         * string_t.h: Ditto.
5503
5504 2004-12-31  Mauro Tortonesi <mauro@ferrara.linux.it>
5505
5506         * string.c: New file.
5507
5508         * string.h: New file.
5509
5510         * Makefile.in: Added string.c to the list of modules to compile.
5511
5512         * main.c: Updated copyright.
5513
5514 2004-11-18  Ulf Harnhammar <ulf.harnhammar.9485@student.uu.se>
5515
5516         * ftp-ls.c: Fixed a problem in ftp_parse_winnt_ls that could allow a
5517         malicious remote FTP server to crash wget.
5518
5519 2004-11-18  Hans-Andreas Engel <engel@node.ch>
5520
5521         * http.c: Enable --convert-links (-k) when a single page is downloaded
5522         via --output-document (-O).
5523
5524 2004-11-18  Mauro Tortonesi <mauro@deepspace6.net>
5525
5526         * connect.c: Minor correction to the comment in front of fd_peek.
5527
5528 2004-11-18  Leonid Petrov <nouser@lpetrov.net>
5529
5530         * retr.c: Fix a timeout problem in fd_read_body when using http_proxy.
5531
5532 2004-11-15  YAMAZAKI Makoto <Yamazaki.Makoto@fujixerox.co.jp>
5533
5534         * netrc.c: Fix termination by assertion bug in netrc parsing.
5535
5536 2004-05-09  David Fritz  <zeroxdf@att.net>
5537
5538         * mswindows.c (fake_fork): Pass entire command line to the child
5539         process.
5540
5541 2004-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
5542
5543         * http.c (gethttp): Fix typo: SCHEME_SSL -> SCHEME_HTTPS.
5544
5545 2004-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
5546
5547         * http.c (gethttp): Send the Proxy-Authorization header over
5548         non-SSL connections too.
5549
5550 2004-03-25  David Fritz  <zeroxdf@att.net>
5551
5552         * mswindows.c (fake_fork_child): Ignore error code when
5553         OpenFileMapping() fails; assume it failed because the object does
5554         not exist.
5555
5556 2004-03-24  David Fritz  <zeroxdf@att.net>
5557
5558         * mswindows.c (fake_fork): New function.
5559
5560         * mswindows.c (fork_to_background): Use it.
5561
5562 2004-03-19  David Fritz  <zeroxdf@att.net>
5563
5564         * mswindows.c (ws_hangup): Incorporate old fork_to_background()
5565         code.  Add event name argument.
5566         (fork_to_backgorund): Now a simple wrapper around ws_hangup().
5567         (ws_handler): Correctly handle the case when neither CTRLC_BACKGND
5568         nor CTRLBREAK_BACKGND are defined.  Don't bother handling close,
5569         logoff, or shutdown events.  Call ws_hangup() with the correct
5570         event name; don't assume it was CTRL+Break.
5571
5572 2004-03-19  Hrvoje Niksic  <hniksic@xemacs.org>
5573
5574         * url.c (url_parse): Decode %HH sequences in host name.
5575
5576 2004-03-04  Hrvoje Niksic  <hniksic@xemacs.org>
5577
5578         * convert.c (local_quote_string): Quote "#" as "%23" and "%" as
5579         "%25" when creating links to local files.
5580
5581 2004-03-02  David Fritz  <zeroxdf@att.net>
5582
5583         * mswindows.c (ws_percenttitle): Guard against future changes by
5584         doing nothing if the proper variables have not been initialized.
5585         Clamp percentage value.
5586
5587 2004-03-04  Gisle Vanem  <giva@bgnett.no>
5588
5589         * retr.c (fd_read_body): Don't change console title if quiet.
5590
5591 2004-02-25  David Fritz  <zeroxdf@att.net>
5592
5593         * mswindows.c (set_sleep_mode): Remove argument and return value.
5594         Call GetModuleHandle() instead of LoadLibrary()/FreeLibrary() for
5595         kernel32.dll.  Use typedef for function-pointer.  Don't cast
5596         l-value.  Don't use dereference operator when calling through
5597         function-pointer.
5598         (ws_startup): Update call to set_sleep_mode().
5599         (ws_cleanup): Remove call to set_sleep_mode().
5600
5601 2004-02-23  David Fritz  <zeroxdf@att.net>
5602
5603         * http.c (http_loop): Ditto.
5604
5605         * ftp.c (ftp_loop_internal): Update call to ws_changetitle().
5606
5607         * main.c (main): Don't bother calling ws_changetitle().
5608
5609         * mswindows.h (ws_changetitle): Update prototype.
5610
5611         * mswindows.c (ws_changetitle): Remove second argument.  Use
5612         xfree_null().
5613         (ws_percenttitle): Only update title when percentage has changed.
5614
5615 2004-02-23  David Fritz  <zeroxdf@att.net>
5616
5617         * mswindows.h: Ditto.
5618
5619         * mswindows.c: Misc. formatting/comment tweaks throughout.
5620
5621 2004-02-20  David Fritz  <zeroxdf@att.net>
5622
5623         * main.c (print_help): Remove call to ws_help().
5624
5625         * mswindows.c (ws_help): Remove.
5626
5627         * mswindows.h (ws_help): Remove.
5628
5629 2004-02-16  David Fritz  <zeroxdf@att.net>
5630
5631         * init.c (home_dir): Use aprintf() instead of xmalloc()/sprintf().
5632         Under Windows, if $HOME is not defined, use the directory that
5633         contains the Wget binary instead of hard-coded `C:\'.
5634         (wgetrc_file_name): Under Windows, look for $HOME/.wgetrc then, if
5635         not found, look for wget.ini in the directory of the Wget binary.
5636
5637         * mswindows.c (ws_mypath): Employ slightly more robust methodology.
5638         Strip trailing path separator.
5639
5640 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
5641
5642         * http.c (gethttp): Respect --ignore-length.
5643         (gethttp): Inhibit keep-alive if --ignore-length is specified.
5644
5645 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
5646
5647         * connect.c (sockaddr_set_data): Zero out
5648         sockaddr_in/sockaddr_in6.  Apparently BSD-derived stacks need this
5649         when binding a socket to local address.
5650
5651 2004-02-04  Hrvoje Niksic  <hniksic@xemacs.org>
5652
5653         * hash.c: Make the file compilable outside Wget source tree when
5654         -DSTANDALONE is used.
5655
5656 2004-01-29  Hrvoje Niksic  <hniksic@xemacs.org>
5657
5658         * utils.c (determine_screen_width): Return 0 if not running on
5659         Windows or on a TIOCGWINSZ-capable system.
5660
5661 2004-01-28  David Fritz  <zeroxdf@att.net>
5662
5663         * utils.c (determine_screen_width): Correctly determine console
5664         width under Windows.
5665
5666 2004-01-28  Christian Biere  <christianbiere@gmx.de>
5667
5668         * progress.c (bar_set_params): Fixed syntax error when HAVE_ISATTY
5669         was undefined.
5670
5671         * ftp.c (ftp_loop_internal): Allocate a larger buffer in case
5672         "try" gets translated to something large.  Ditto in http_loop in
5673         http.c.
5674
5675         * http.c (response_header_copy): Don't write to buf[BUFSIZE].
5676
5677         * ftp-opie.c (skey_response): Eliminate unnecessary string
5678         concatenation; just call gen_md5_update twice.
5679
5680 2004-01-25  Hrvoje Niksic  <hniksic@xemacs.org>
5681
5682         * utils.c (xsleep): Don't call usleep with values larger than
5683         1,000,000.
5684
5685 2003-12-16  Hrvoje Niksic  <hniksic@xemacs.org>
5686
5687         * http.c (gethttp): Fix generation of `Content-Length'.
5688
5689 2003-12-15  Gisle Vanem  <giva@bgnett.no>
5690
5691         * url.c (url_skip_credentials): Fixed return value; 'url' if no
5692         credentials.
5693
5694 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
5695
5696         * url.c (url_skip_credentials): Return a pointer directly.
5697
5698 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
5699
5700         * url.c (url_file_name): Ditto.
5701         (parse_errors): Ditto.
5702
5703         * retr.c (retr_rate): Ditto.
5704
5705         * progress.c (create_image): Ditto.
5706
5707         * netrc.c (parse_netrc): Ditto.
5708
5709         * main.c (struct cmdline_option): Ditto.
5710         (redirect_output_signal): Ditto.
5711
5712         * init.c (commands): Ditto.
5713
5714         * ftp-ls.c (ftp_index): Ditto.
5715
5716         * cookies.c (check_domain_match): Declare the pointer to a literal
5717         string as `const'.
5718
5719 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
5720
5721         * retr.c (fd_read_body): Pass total size to progress_create, not
5722         the remaining amount.
5723
5724 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
5725
5726         * retr.c (fd_read_body): Don't fiddle with "interactive timeout"
5727         if read timeout is unset.
5728
5729 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
5730
5731         * connect.c (bind_local): Don't set the IPV6_V6ONLY option on the
5732         socket.
5733
5734 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
5735
5736         * url.c (url_file_name): Respect the setting of
5737         opt.protocol_directories.
5738
5739         * main.c (main): Only check for ret=='?' when longindex is unset.
5740         (option_data): New option --protocol-directories.
5741
5742 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
5743
5744         * ftp.c (getftp): Ditto.
5745
5746         * http.c (gethttp): Correctly calculate bandwidth as total data
5747         read divided with download time.
5748
5749         * retr.c (fd_read_body): Separate the return values for data
5750         written and read.
5751
5752 2003-12-05  Hrvoje Niksic  <hniksic@xemacs.org>
5753
5754         * http.c (H_REDIRECTED): Respect the HTTP/1.1 "303 See Other"
5755         response code.
5756         Suggested by Dan Razzell.
5757
5758 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
5759
5760         * retr.c (fd_read_body): Report the amount of data *written* as
5761         amount_read.  This is not entirely logical, but that's what the
5762         callers expect, and it's not easy to change.
5763
5764         * ftp.c (ftp_loop_internal): Ditto.
5765
5766         * http.c (http_loop): Be smarter about assigning restval; if we're
5767         in the nth pass of a download, simply use the information we have
5768         about how much data has been retrieved as restval.
5769
5770         * ftp.c (getftp): Ditto for FTP "REST" command.
5771
5772         * http.c (gethttp): When the server doesn't respect range, skip
5773         the first RESTVAL bytes of the read body.  Never truncate the
5774         output file.
5775
5776         * retr.c (fd_read_body): Support skipping initial STARTPOS octets.
5777
5778 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
5779
5780         * http.c (skip_short_body): Renamed skip_body to skip_short_body;
5781         don't bother calling fd_read_body.
5782
5783 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
5784
5785         * retr.c (fd_read_body): Sanitize arguments and document them
5786         better.  Make sure the timer is created and updated only if
5787         necessary.  Updated callers.
5788
5789 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
5790
5791         * http.c (skip_body): New function.
5792         (gethttp): Use it to skip the body of the responses we don't care
5793         to download.  That allows us to reuse the connection.
5794         (gethttp): Trust that the HEAD requests will not generate body
5795         data.
5796
5797         * retr.c (fd_read_body): Don't write to OUT if it's NULL.
5798
5799 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
5800
5801         * http.c (gethttp): Initialize SSL only the first time when SSL
5802         URL is downloaded.
5803
5804 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
5805
5806         * cookies.c (cookie_header): Only generate the contents of the
5807         header, not the leading "Cookie: " or the trailing "\r\n".
5808
5809         * http.c (gethttp): When adding headers specified with `--header',
5810         allow them to override the headers generated by Wget.
5811
5812         * init.c (cmd_spec_header): Made opt.user_headers a vector.
5813
5814         * http.c (request_new): New function.  Returns a request structure
5815         which can be modified in various ways, most notably by adding HTTP
5816         headers to the request.
5817         (request_set_header): New function for adding the header to the
5818         request.  If the header is already available, it gets replaced.
5819         (request_send): Construct and send the request.
5820         (gethttp): Use the request_* functions to generate the request.
5821
5822 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
5823
5824         * http.c (gethttp): Don't include the Proxy-Authorization header
5825         in the request tunneled through proxy.
5826
5827 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
5828
5829         * http.c (gethttp): Use the CONNECT handle to establish SSL
5830         passthrough through non-SSL proxies.
5831
5832 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
5833
5834         * init.c: Don't #include netinet/Winsock stuff.
5835
5836 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
5837
5838         * http.c: Deleted the old functions header_process,
5839         header_extract_number, header_exists, header_strdup,
5840         http_process_range, http_process_none, http_process_type, and
5841         http_process_connection.
5842
5843         * http.c (response_new): New function.
5844         (response_header_bounds): Ditto.
5845         (response_header_copy): Ditto.
5846         (response_header_strdup): Ditto.
5847         (response_status): Ditto.
5848         (gethttp): Use the new response_* functions to parse the response.
5849         Support HTTP/0.9 responses.
5850
5851 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
5852
5853         * progress.c (create_image): Don't calculate ETA if nothing has
5854         been downloaded yet, because it causes division by zero.
5855
5856 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
5857
5858         * connect.c (bind_local): Rename sa_len to addrlen because IRIX
5859         headers define sa_len as a macro.
5860
5861 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
5862
5863         * html-parse.c (convert_and_copy): Remove embedded newlines when
5864         AP_TRIM_BLANKS is specified.
5865
5866 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
5867
5868         * ftp.c: Set con->csock to -1 where rbuf_uninitialize was
5869         previously used.
5870
5871 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
5872
5873         * Makefile.in (http$o): Added the trailing backslash that was
5874         missing.
5875
5876 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
5877
5878         * headers.c: Removed.  The file is no longer relevant, now that no
5879         special handling of headers is done by the rbuf code.  Moved
5880         portions to http.c.
5881
5882 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
5883
5884         * rbuf.c: Removed.
5885
5886         * ftp-basic.c (ftp_response): Use fd_read_line.  No longer use
5887         struct rbuf.  Updated all callers.
5888
5889         * http.c (gethttp): Use fd_read_head to read all the headers in
5890         one go.
5891         (next_header): New function.
5892
5893         * retr.c (fd_read_line): New function: reads a line from FD,
5894         leaving the rest of the data unread.
5895         (fd_read_head): New function.
5896
5897         * connect.c (fd_peek): New function, implements peeking.
5898         (poll_internal): New function.
5899         (fd_read): Use it.
5900         (fd_write): Ditto.
5901         (fd_peek): Ditto.
5902         (fd_register_transport): Allow registering a "peeker" callback.
5903
5904 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
5905
5906         * connect.c: Renamed xread/xwrite/xclose to
5907         fd_read/fd_write/fd_close.  The "x" prefix is not appropriate
5908         because the semantics have diverged from read/write/close too
5909         significantly.  Updated all callers.
5910
5911 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
5912
5913         * connect.c (sock_write): It's not necessary to initialize RES.
5914
5915 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
5916
5917         * main.c (main): Don't reference opt.ipv4_only and opt.ipv6_only
5918         if IPv6 is disabled.
5919
5920 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
5921
5922         * connect.c (socket_has_inet6): Only compile it if IPv6 is enabled
5923         and AI_ADDRCONFIG is missing.
5924
5925 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
5926
5927         * gen_sslfunc.c (ssl_init_prng): Warn the user when using a weak
5928         random seed.
5929
5930 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
5931
5932         * host.c (address_list_contains): Renamed address_list_find to
5933         address_list_contains because its result is boolean.
5934
5935 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
5936
5937         * connect.c (select_fd): Return 1 if select is not available.
5938
5939 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
5940
5941         * connect.c (connect_to_host): Don't reference address list after
5942         releasing it.
5943
5944 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
5945
5946         * main.c (print_help): Fix alignment of FTP options output.
5947
5948 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
5949
5950         * host.c (lookup_host): Check for the ability to create IPv6
5951         sockets here.
5952
5953         * init.c (defaults): Don't auto-set --inet4-only on IPv6-less
5954         systems.
5955
5956 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
5957
5958         * main.c (print_help): Fix typo in `-O' help message.  Fix docs of
5959         -Y/--proxy.  Fix docs of `--cookies' and `--glob'.  Improve docs
5960         of --convert-links.  Fix docs of SSL options.
5961
5962 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
5963
5964         * ftp-basic.c: Don't include <arpa/inet.h> and others because
5965         they're no longer needed.
5966
5967 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
5968
5969         * main.c (main): Don't allow setting of both opt.ipv4_only and
5970         opt.ipv6_only.
5971
5972         * init.c (defaults): Mark opt.ipv4_only specially when set
5973         automatically.
5974
5975 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
5976
5977         * host.c (lookup_host): Use AI_ADDRCONFIG only if the family is
5978         unspecified.  This ensures that specifying `--no-inet4' on systems
5979         where IPv6 resolves, but doesn't work behaves the same regardless
5980         of the availability of AI_ADDRCONFIG.
5981
5982 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
5983
5984         * host.c: Don't refer to the now-removed function
5985         forget_host_lookup in the documentation of lookup_host.
5986
5987 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
5988
5989         * http.c (persistent_available_p): Correctly specify the endpoint
5990         argument to socket_ip_address.
5991         (gethttp): When printing the "reusing connection to..." message,
5992         specify the host name of the reused connection, not the current
5993         host name.  That makes more sense because it provides a useful
5994         piece of information -- we know to which host we're supposed to
5995         connect anyway!
5996
5997 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
5998
5999         * init.c: Make sure the options are in alphabetic order!
6000
6001         * host.c (lookup_host): Merge lookup_host_passive and lookup_host
6002         after all -- having both would result in some code duplication.
6003         (lookup_host): Set hints.ai_family to AF_INET if ipv4_only is
6004         requested.  Likewise, set it to AF_INET6 for ipv6_only.  Specify
6005         AI_ADDRCONFIG where available.
6006         (lookup_host): New flag LH_REFRESH that specifies that a cached
6007         entry for HOST should be refreshed.
6008         (cache_query): New function.
6009         (cache_store): Ditto.
6010         (cache_remove): Ditto.
6011         (forget_host_lookup): No longer necessary, replaced with static
6012         function cache_remove.
6013
6014 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
6015
6016         * main.c: Enable -4 and -6 only if IPv6 is enabled.
6017
6018 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
6019
6020         * connect.c (register_transport): Renamed from register_extended.
6021         Explain the intended usage.
6022
6023 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
6024
6025         * url.c (uri_merge): Merging "foo" and "bar" should result in
6026         "bar", not in "foo/bar".
6027         (path_simplify): Don't remove empty path elements; don't
6028         special-case leading slash.
6029         (path_simplify): Don't swallow ".."'s at the beginning of string.
6030         E.g. simplify "foo/../../bar" as "../bar", not as "bar".
6031         (append_uri_pathel): Defang ".." path element upon encountering
6032         it.
6033
6034 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
6035
6036         * http.c (persistent_available_p): Don't attempt to talk to two
6037         different SSL sites over the same secure connection.
6038
6039 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
6040
6041         * http.c (gethttp): Ditto.
6042
6043         * ftp.c (getftp): Use retryable_socket_connect_error instead of
6044         CONNECT_ERROR.
6045
6046         * wget.h (CONNECT_ERROR): Removed.
6047
6048         * connect.c (retryable_socket_connect_error): New function instead
6049         of unsupported_socket_family_error.
6050
6051 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
6052
6053         * wget.h (CONNECT_ERROR): Use it.
6054
6055         * connect.c (unsupported_socket_family_error): New function.
6056
6057 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
6058
6059         * connect.c (bind_local): Renamed bindport to bind_local; return
6060         the socket directly.  Updated callers.
6061         (accept_connection): Renamed acceptport to accept_connection;
6062         return the created socket directly.  Updated callers.
6063
6064 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
6065
6066         * init.c (defaults): Turn on opt.ipv4_only if we're compiling with
6067         IPv6, and AI_ADDRINFO is not available, and AF_INET6 sockets can't
6068         be created.
6069
6070 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
6071
6072         * host.c (lookup_host): Document the fact that the addresses are
6073         returned in order.
6074
6075 2003-11-12  Hrvoje Niksic  <hniksic@xemacs.org>
6076
6077         * utils.c: Use limits.h only where available.
6078
6079         * hash.c: Use INVALID_PTR and INVALID_PTR_BYTE.  Include limits.h.
6080
6081 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
6082
6083         * main.c: Added options --inet4-only and --inet6-only.
6084
6085 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
6086
6087         * host.c (host_errstr): Use the more standard message "Unknown
6088         host".
6089
6090 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
6091
6092         * connect.c (connect_to_host): Use that flag to decide whether to
6093         re-resolve the host name.
6094
6095         * host.c (struct address_list): Added a flag that maintains
6096         whether the connection worked at some point.
6097
6098 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
6099
6100         * host.c (lookup_host): Special-case the numeric addresses only in
6101         the non-IPv6 case.
6102
6103 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
6104
6105         * connect.c (resolve_bind_address): Call lookup_host_passive.
6106         Make sure that opt.bind_address is resolved only once.
6107
6108         * host.c (lookup_host_passive): New function, handles "passive"
6109         lookups.
6110         (lookup_host): Remove the passive flags.  Remove the
6111         family-related flags -- use ip_default_family instead.
6112
6113 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
6114
6115         * html-url.c: Get URLs from <object data="...">.
6116
6117 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
6118
6119         * main.c (option_data): Specify the command to use for --mirror.
6120
6121 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6122
6123         * cookies.c (cookie_handle_set_cookie): Specify exact match for
6124         unspecified domains.
6125
6126 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6127
6128         * main.c (main): Removed one-letter options `-C', `-g', `-G', and
6129         `-s'.
6130
6131 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6132
6133         * main.c (main): Add --dont-remove-listing for backward
6134         compatibility with previous versions.
6135         (print_help): Fix typo, spotted by Dennis Smit.
6136
6137 2003-11-08  Gisle Vanem  <giva@bgnett.no>
6138
6139         * ftp-basic.c: Support Windows-2000 ftp servers. Win-2000 *is*
6140         Win-NT 5.0 so calling it ST_WINNT is okay I guess.
6141
6142 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6143
6144         * progress.c (update_speed_ring): Clear the speed ring when the
6145         download stalls.
6146
6147         * retr.c (get_contents): Specify 0.95s read timeout, so that the
6148         progress gauge can be updated even when data arrives very slowly
6149         or stalls.
6150
6151 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6152
6153         * utils.c (wtimer_allocate): Bless the use of wtimer_read on a
6154         timer that has merely been allocated because get_contents() does
6155         that.
6156         (wtimer_update): Abort if the timer is not initialized.
6157
6158 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6159
6160         * retr.c (get_contents): Pass the timer to limit_bandwidth().
6161
6162         * utils.c (wtimer_update): New function instead of wget_elapsed;
6163         just update the timer, but don't return anything.
6164         (wtimer_read): Read and return the last known value of the timer.
6165
6166 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6167
6168         * http.c (persistent_available_p): Instead of matching all the
6169         addresses of HOST and last host, determine the peer's IP address
6170         with socket_ip_address and see if that address is one of those
6171         HOST resolves to.
6172
6173         * host.c (address_list_match_all): Removed.
6174         (address_list_find): New function, finds an IP address in the
6175         address list.
6176
6177         * ftp.c (ftp_do_pasv): Get the peer's address here, and pass it to
6178         ftp_epsv so it doesn't need to call getpeername.
6179
6180         * ftp-basic.c (ftp_port): Use socket_ip_address instead of
6181         getpeername.
6182         (ftp_lprt): Ditto.
6183
6184         * connect.c (socket_ip_address): Replaces conaddr, generalized to
6185         either get peer's or local address.
6186         (sockaddr_get_data): Made local to this file.
6187
6188 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6189
6190         * hash.c (HASH_POSITION): Explicitly accept the hash function.
6191         (grow_hash_table): Extract ht->hash_function outside the loop.
6192         (hash_table_remove): Ditto.
6193         (hash_table_clear): Fill entries with 0xff to clear them.
6194         (hash_table_remove): Mark entries as deleted with the correct
6195         marker.
6196
6197 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6198
6199         * http.c (persistent_available_p): No reason for the host lookup
6200         to be silent -- it's a lookup like any other.
6201
6202 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
6203
6204         * connect.c (register_extended): Check that fd >= 0.
6205
6206 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
6207
6208         * connect.c (LAZY_RETRIEVE_INFO): Set LAST_INFO.
6209
6210 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
6211
6212         * hash.c (NON_EMPTY): Use the all-bit-set value as the marker that
6213         the field is empty.  This allows NULL pointer and 0 value to be
6214         used as keys, which is necessary for the connect.c code to work
6215         when fd==0.
6216         (hash_table_new): Fill mappings with 0xff.
6217         (grow_hash_table): Ditto.
6218
6219 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
6220
6221         * url.c (url_parse): Allow empty ports.
6222
6223 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
6224
6225         * main.c (print_help): Break the help string into multiple chunks.
6226         (cmdline_option): New option handler OPT_FUNCALL.  Generalized
6227         HANDLE_CMD to generic DATA.
6228         (option_data): Use the new OPT_FUNCALL feature.
6229
6230 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
6231
6232         * log.h: Declare log_init, log_close, and
6233         log_request_redirect_output here.
6234
6235 2003-11-05  Dennis Smit  <ds@nerds-incorporated.org>
6236
6237         * main.c: (main): added --preserve-permissions option.
6238
6239         * ftp.c (ftp_retrieve_list): added support for
6240         --preserve-permissions option.
6241
6242         * init.c: added support for --preserve-permission option.
6243
6244         * option.h: added support for --preserve-permission option.
6245
6246 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
6247
6248         * main.c (init_switches): New function.  Convert option_data to
6249         long_options and short_options, which can be fed to getopt_long.
6250         (main): Execute command-line options by consulting option_data.
6251
6252 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
6253
6254         * gen_sslfunc.c (ssl_read): Implement a more correct check for
6255         EINTR.
6256         (ssl_write): Ditto.
6257         (init_ssl): Use a global SSL context.
6258
6259 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
6260
6261         * connect.c (xclose): Free INFO even if it doesn't provide a
6262         closer.
6263
6264 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
6265
6266         * connect.c: Updated all callers of
6267         iread/ssl_iread/iwrite/ssl_iwrite to use xread and xwrite instead.
6268
6269         * rbuf.h (struct rbuf): Removed the SSL member because SSL is
6270         handled automatically by xread.
6271
6272         * hash.c (ptrhash): Made private.
6273         (ptrcmp): Ditto.
6274         (inthash): Removed.
6275
6276         * connect.c (select_fd): Don't set errno, leave it to the caller.
6277
6278         * gen_sslfunc.c (connect_ssl): Use register_extended to register
6279         SSL callbacks for communication with SSL-enabled endpoints.
6280         (ssl_read): New function.
6281         (ssl_write): Ditto.
6282         (ssl_poll): Ditto.
6283         (ssl_close): Ditto.
6284
6285         * connect.c (register_extended): New function -- register
6286         callbacks for basic socket operations.
6287         (xread): Ditto.
6288         (xwrite): Ditto.
6289         (xclose): Ditto.
6290         (sock_read): New function, default implementation for reading.
6291         (sock_write): Ditto for writing.
6292         (sock_poll): Ditto for polling.
6293         (sock_close): Ditto for closing.
6294
6295 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
6296
6297         * connect.c (bindport): Fix compilation under pre-C99 compilers.
6298
6299 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
6300
6301         * connect.c (connect_to_ip): More compact error checking.
6302         (bindport): Don't treat failed setsockopt as a fatal error.
6303
6304 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
6305
6306         * connect.c (resolve_bind_address): Use a more accurate error
6307         message -- we're not binding to ANY, we're disabling bind
6308         altogether.
6309
6310 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
6311
6312         * cookies.c (save_cookies_mapper): Respect the setting of
6313         keep-session-cookies.
6314         (cookie_jar_load): Import session cookies.
6315         Based on code submitted by Nicolas Schodet.
6316
6317         * utils.c (datetime_str): Use information in TM when it's
6318         non-NULL.
6319
6320         * main.c (main): New option `--keep-session-cookies'.
6321
6322 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
6323
6324         * Makefile.in (realclean): Delete config.h.in.
6325
6326 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
6327
6328         * config-post.h: New file, included from now autogenerated
6329         config.h.in.
6330
6331 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
6332
6333         * progress.c (progress_handle_sigwinch): Don't call
6334         determine_screen_width() from the signal handler.  Instead, just
6335         set a volatile variable.
6336         (bar_create): Check whether SIGWINCH was received.
6337         (bar_update): Ditto.
6338
6339         * sysdep.h: Define SYSTEM_FNMATCH only if HAVE_FNMATCH_H is true.
6340
6341 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
6342
6343         * utils.c (xsleep): New function.  Uses nanosleep where available,
6344         resuming sleeps interrupted by signals.  Updated callers of sleep
6345         and usleep to use xsleep.
6346
6347 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
6348
6349         * ftp-basic.c (ftp_login): Remove shadowing (and bogus)
6350         declaration of SEED.
6351
6352 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
6353
6354         * log.c (logvprintf): Documented better.  Renamed to
6355         log_vprintf_internal to avoid confusion with the public API
6356         functions logprintf and logputs.
6357
6358 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
6359
6360         * wget.h (N_): Don't parenthesize argument.
6361
6362 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
6363
6364         * host.h (ADDRESS_IPV4_DATA): Don't take the address of in.s_addr
6365         because that doesn't work on machines that define it as bitfield.
6366
6367 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
6368
6369         * connect.c (select_fd): Generalize the third argument into WAIT,
6370         so that the caller can request waiting for both read and write.
6371         Updated callers.
6372
6373 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
6374
6375         * html-url.c (cleanup_html_url): Destroy the hash tables, don't
6376         just call free on them.
6377         (init_interesting): Use hash_table_put instead of string_set_add
6378         because we don't need the strdup that the latter function
6379         performs.
6380
6381         * init.c (cleanup): Don't pass NULL to cookie_jar_delete.
6382
6383         * xmalloc.c (xfree_real): Abort when passed a NULL pointer.
6384         (xfree_debug): Print at the file and line of the offending call to
6385         free.
6386
6387 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
6388
6389         * wget.h: Retired the `boolean' type.  Moved the DEFAULT_LOGFILE
6390         define to log.h.  Moved the INFINITE_RECURSION define to recur.h.
6391
6392         * xmalloc.h: Renamed FREE_MAYBE to xfree_null and moved the
6393         definition from wget.h to xmalloc.h.
6394
6395 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
6396
6397         * html-parse.c (decode_entity): New function; split the decoding
6398         of entities here.
6399         (convert_and_copy): Use it to decode entities.
6400         (decode_entity): Handle the &apos entity.
6401         (decode_entity): Don't decode Latin 1 numeric entities.  Don't
6402         decode &#0.
6403
6404 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
6405
6406         * ftp-opie.c (calculate_skey_response): Use uint32_t instead of
6407         `unsigned long' for the cheksum array.  Document the function.
6408
6409 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
6410
6411         * connect.c (acceptport): Don't call select_fd when timeout is not
6412         requested.
6413
6414 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
6415
6416         * host.c: Removed the ip_default_family global variable.
6417
6418         * host.c (lookup_host): Document the function.  Fixed declaration
6419         of VEC.
6420
6421 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
6422
6423         * various: Use new macros xnew, xnew0, xnew_array, and xnew0_array
6424         in various places.
6425
6426 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
6427
6428         * wget.h: Move declarations of malloc and logging code to
6429         xmalloc.h and log.h respectively to unclutter this file.
6430         (STRDUP_ALLOCA): Made it side-effect free.
6431
6432         * xmalloc.h: New files.  Define macros xnew, xnew0, xnew_array,
6433         and xnew0_array.
6434
6435         * xmalloc.c: New file.  Move the xmalloc routines here.
6436
6437 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
6438
6439         * connect.c (sockaddr_set_data): Remove the broken code that
6440         checked for NULL address.
6441
6442 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
6443
6444         * host.c (address_list_from_single): Removed.
6445         (address_list_from_ipv4_addresses): Renamed from
6446         address_list_from_vector.
6447
6448 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
6449
6450         * sysdep.h (CLOSE): Don't call close on file descriptors less than
6451         0, i.e. on uncreated sockets.
6452
6453         * connect.c (resolve_bind_address): Work on struct sockaddr
6454         directly.
6455         (connect_to_host): Replacement for connect_to_many.  Resolve HOST
6456         and connect to any of its addresses.  If we can't connect and the
6457         host name lookup was cached, try to resolve it again.  This should
6458         fix problems with hosts behind dynamic DNS.  Updated all callers.
6459         (connect_to_ip): Replacement for connect_to_one.  Removed SILENT;
6460         added the argument PRINT instead.  Updated all callers.
6461         (set_connection_host_name): Removed.
6462
6463         * host.c (address_list_address_at): New function instead of
6464         address_list_copy_one. It returns a pointer to ip_address *, so
6465         it's not necessary to copy the data.
6466         (address_list_cached_p): New function.
6467         (forget_host_lookup): Ditto.
6468
6469         * connect.c: Got rid of the MSOCK global variable.  Made bindport
6470         return the local socket it creates.  Added a new argument to
6471         acceptport, the socket to call accept on.  Updated callers.
6472         (closeport): Removed.
6473
6474         * connect.c: Moved the sockaddr code from host.c to this file,
6475         because most of that stuff is used for connecting, and has nothing
6476         to do with host names anyway.
6477         (sockaddr_set_data, sockaddr_get_data): New functions, replace the
6478         old sockaddr_set_address, sockaddr_set_port, sockaddr_get_address,
6479         and sockaddr_get_port.
6480
6481 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
6482
6483         * sysdep.h: Use `S >= 8' rather than `S == 8' when looking for
6484         large integers.
6485
6486 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
6487
6488         * url.c (append_uri_pathel): New argument ESCAPED_P that says
6489         whether [B, E) is to be treated as URL-escaped or not.  If
6490         ESCAPED_P is false, don't unescape the region.
6491         (url_file_name): u->file is not URL-escaped.
6492
6493 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
6494
6495         * retr.c (retrieve_from_file): Use retrieve_tree for
6496         page-requisites.
6497
6498         * main.c (main): Don't define opt.recursive when -p is used.
6499         Instead, make sure that recursion is used for HTTP in that case.
6500
6501 2003-10-29  Hrvoje Niksic  <hniksic@xemacs.org>
6502
6503         * host.h: Defined accessors for elements of ip_address.  Updated
6504         all callers.
6505         (address_list_match_all): Use memcmp in the non-IPv6 case.
6506
6507         * wget.h (CONNECT_ERROR): Don't retry connecting if connect()
6508         returned EAFNOSUPPORT.
6509
6510 2003-10-27  Mauro Tortonesi <mauro@deepspace6.net>
6511
6512         * connect.h: changed bindport prototype and added the related
6513         BIND_ON_IPV4_ONLY and BIND_ON_IPV6_ONLY flags.
6514
6515         * connect.c: changed bindport and resolve_bind_address to allow
6516         protocol-version specific DNS resolution. modified conaddr,
6517         acceptport and connect_to_one to make use of struct
6518         sockaddr_storage and of the new ip_address structure.
6519
6520         * ftp-basic.c: added LPRT/LPSV (RFC1639) support, refactored
6521         PORT/PASV (RFC959) and EPRT/EPSV (RFC2428) support code.
6522
6523         * ftp.c: added the ftp_do_port and ftp_do_pasv functions to
6524         handle FTP over IPv6.
6525
6526         * ftp.h: changed prototype of ftp_epsv and added prototypes for
6527         ftp_lpsv, ftp_lprt and ftp_eprt.
6528
6529         * host.c: renamed the
6530         wget_sockaddr_set_address and wget_sockaddr_get_addr, and
6531         wget_sockaddr_{s,g}et_port couples to sockaddr_{s,g}et_address and
6532         sockaddr_{g,s}et_port respectively.  changed
6533         address_list_match_all, address_list_from_addrinfo sockaddr_len,
6534         pretty_print_address, lookup_host, sockaddr_{s,g}et_address and
6535         sockaddr_{g,s}et_port to make use of struct sockaddr_storage and
6536         of the new ip_address structure.  removed map_ipv4_to_ip and
6537         map_ip_to_ipv4.
6538
6539         * host.h: redefined structure ip_address and removed structure
6540         wget_sockaddr.
6541
6542 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
6543
6544         * sysdep.h: Include inttypes.h where available.
6545
6546         * host.c: Switch from u_int32_t to uint32_t.
6547
6548 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
6549
6550         * netrc.c (parse_netrc): Reset the QUOTE flag after the closing
6551         quote.
6552
6553 2003-10-25  Hrvoje Niksic  <hniksic@xemacs.org>
6554
6555         * url.c (is_valid_ipv6_address): Reformat to GNU coding style.
6556         Use enums for NS_IN* constants.  Use ISXDIGIT.
6557
6558         * convert.c (construct_relative): Document better how the function
6559         works.
6560
6561 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
6562
6563         * config.h.in: Deploy preprocessor magic to avoid Ultrix's
6564         <netdb.h> include <bitypes.h> which defines its own u_int32_t.
6565         Reported by Bernhard Simon.
6566
6567 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
6568
6569         * version.c: Bump version.
6570
6571 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
6572
6573         * url.c: Ditto.
6574
6575         * html-parse.c (advance_declaration): Don't use trailing comma in
6576         enum because older compilers don't support it.
6577
6578         * utils.c: Don't redefine HAVE_SIGSETJMP.
6579
6580 2003-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
6581
6582         * convert.c (construct_relative): Don't handle absolute files
6583         specially -- for example, -P/tmp/foo shouldn't imply that
6584         converted files must refer to "/tmp/foo/..."!
6585
6586 2003-10-15  Hrvoje Niksic  <hniksic@xemacs.org>
6587
6588         * http.c: Consider status 307 a valid redirect.
6589
6590 2003-10-15  Philip Stadermann  <philip.stadermann@credativ.de>
6591
6592         * ftp.c (ftp_retrieve_glob): Correctly loop through the list whose
6593         elements might have been deleted.
6594
6595 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
6596
6597         * html-url.c (tag_handle_meta): Set the Refresh link to expect
6598         HTML.
6599         (append_one_url): Renamed to append_url.
6600
6601 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
6602
6603         * sysdep.h: Only define u_int32_t.
6604
6605 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
6606
6607         * utils.c (large_int_to_string): Use snprintf() to print the
6608         number.  This will work even on systems where libc doesn't
6609         understand %lld, but the compiler does, because it will use our
6610         snprintf replacement.
6611
6612         * init.c (parse_bytes_helper): New function.
6613         (cmd_bytes): Use it to parse bytes, but cast the result to long.
6614         (cmd_bytes_large): Ditto, but store the result to LARGE_INT.  Used
6615         for --quota so that --quota=10G works even on machines without
6616         long long.
6617
6618         * options.h (struct options): Declare quota as LARGE_INT.
6619
6620         * retr.c (downloaded_exceeds_quota): Removed.
6621         (downloaded_increase): Ditto.
6622         (total_downloaded_bytes): New variable, replaces opt.downloaded,
6623         which was the wrong place for it anyway.  Updated callers of
6624         downloaded_exceeds_quota and downloaded_increase to check this
6625         variable directly.
6626
6627         * sysdep.h: Get rid of VERY_LONG_TYPE.  Use LARGE_INT for the same
6628         purpose, defined as `long', `long long' or `double', depending on
6629         size of long and whether long long is available.
6630
6631 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
6632
6633         * sysdep.h: Also check size of short for int32_t.
6634
6635 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
6636
6637         * host.c (lookup_host): Use u_int32_t to store the result of
6638         inet_addr().  That removes the need for offset fiddling, caring
6639         about endian-ness, etc.
6640
6641         * sysdep.h: Define int32_t and u_int32_t if not available.
6642
6643 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
6644
6645         * ftp-basic.c (ftp_epsv): Use socklen_t * as the third argument to
6646         getpeername.
6647
6648         * config.h.in: Define socklen_t stub.
6649
6650         * host.c (sockaddr_len): Return socklen_t.
6651
6652         * connect.c (conaddr): Use socklen_t as the third argument to
6653         accept, getsockname, and connect.
6654
6655 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
6656
6657         * recur.c (retrieve_tree): Don't descend into documents that are
6658         not expected to contain HTML, regardless of their content-type.
6659
6660         * html-url.c (tag_url_attributes): Record which attributes are
6661         supposed to yield HTML links that can be followed.
6662         (tag_find_urls): Propagate that information to the caller through
6663         struct urlpos.
6664
6665 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
6666
6667         * hash.c (find_mapping): Return the next available mapping when
6668         the key is not found, not NULL.
6669         (hash_table_put): Use find_mapping to find the storage for the new
6670         data.
6671         (hash_table_put): Grow the table before exceeding maximum
6672         fullness, not afterwards.
6673
6674 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
6675
6676         * hash.c (hash_table_new): Slightly change the meaning of the
6677         first parameter.  Instead of being the minimum initial size, it is
6678         now the minimum number of items that the hash table can take
6679         without needing to resize.
6680
6681 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
6682
6683         * html-url.c (init_interesting): Initialize interesting_tags and
6684         interesting_attributes as hash tables.  This simplifies the code
6685         immensely because hash tables handle allocation and remove
6686         duplicates automatically.
6687         (find_tag): Removed.
6688         (collect_tags_mapper): Instead of calling find_tag, simply get the
6689         entry from interesting_tags hash table, which is both simpler and
6690         faster.
6691
6692 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
6693
6694         * hash.c (hash_table_get): Declare hash-table argument as const.
6695         (find_mapping): Ditto.
6696         (hash_table_get_pair): Ditto.
6697         (hash_table_contains): Ditto.
6698         (hash_table_count): Ditto.
6699
6700 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
6701
6702         * html-url.c (get_urls_html): Parse the appropriate flags to
6703         html-parse.c.
6704
6705         * html-parse.c (map_html_tags): Accept FLAGS from the caller
6706         instead of examining OPT.
6707
6708 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
6709
6710         * html-url.c (find_tag): Switch to binary search.
6711
6712 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
6713
6714         * main.c (print_help): Fix typo; stured -> stored.
6715
6716 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
6717
6718         * getopt.c: Add definitions of getopt_long and getopt_long_only.
6719
6720 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
6721
6722         * config.h.in: Renamed DEBUG to ENABLE_DEBUG.  ENABLE_DEBUG is, I
6723         think, a better name, because it implies that debugging output is
6724         merely possible, not "on by default", as might be construed from
6725         just DEBUG.
6726
6727 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
6728
6729         * ftp.c (has_insecure_name_p): Define it here.
6730
6731         * utils.c (has_wildcards_p): Define it here.
6732
6733         * sysdep.h: Declare fnmatch-related macros here, if not using
6734         system fnmatch().  Update .c files to not declare fnmatch.h
6735         directly.
6736
6737         * cmpt.c (fnmatch): Moved here.  Use it only under non-GNU libc.
6738
6739 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
6740
6741         * getopt.c: Newer version, imported from Free libit.
6742
6743 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
6744
6745         * cookies.c (struct cookie): Remove unused backpointer to cookie
6746         jar.
6747
6748 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
6749
6750         * cmpt.c (memmove): Comment out, since it's no longer used.
6751
6752         * cookies.c (cookie_jar_generate_cookie_header): Allocate room for
6753         chains in one pass.
6754         (find_chains_of_host): Assume that the caller has allocated DEST
6755         to be sufficiently large to take all the data.
6756         (eliminate_dups): Run through the array and eliminate dups on the
6757         fly instead of using memmove.
6758         (cookie_jar_process_set_cookie): Free cookie->domain before
6759         re-setting it.
6760
6761 2003-10-05  Gisle Vanem  <giva@bgnett.no>
6762
6763         * mswindows.c (set_sleep_mode): Fix type of
6764         _SetThreadExecutionState.
6765
6766 2003-10-05  Hrvoje Niksic  <hniksic@xemacs.org>
6767
6768         * utils.c (file_size): Return -1 if fopen() returns NULL.  Prior
6769         to this patch, wget --post-file=nosuchfile dumped core.
6770
6771 2003-10-04  Gisle Vanem  <giva@bgnett.no>
6772
6773         * mswindows.c (run_with_timeout): Use WaitForSingleObject to wait
6774         for thread termination.
6775
6776 2003-10-04  Hrvoje Niksic  <hniksic@xemacs.org>
6777
6778         * log.c: Use `...' in function definitions; ansi2knr will convert
6779         them to va_dcl.  This allowed removal of the ugly VA_START_1 and
6780         VA_START_2 macros.
6781
6782 2003-10-03  Gisle Vanem  <giva@bgnett.no>
6783
6784         * connect.c: And don't include them here.
6785
6786         * mswindows.h: Include winsock headers here.
6787
6788 2003-10-03  Hrvoje Niksic  <hniksic@xemacs.org>
6789
6790         * html-parse.c (convert_and_copy): Move variable declarations
6791         before statements.
6792
6793 2003-10-02  Gisle Vanem  <giva@bgnett.no>
6794
6795         * mswindows.c (run_with_timeout): For Windows: Run the 'fun' in a
6796         thread via a helper function. Continually query the thread's
6797         exit-code until finished or timed out.
6798
6799 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
6800
6801         * wget.h (XMALLOC_ARRAY): Removed.
6802         (ALLOCA_ARRAY): Ditto.
6803
6804         * html-parse.c: Renamed alloca_p to resized.
6805         (GROW_ARRAY): Renamed DO_REALLOC_FROM_ALLOCA to GROW_ARRAY and
6806         returned it to html-parse.c, since nothing else was using it.
6807
6808 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
6809
6810         * retr.c (retrieve_url): Initialize DUMMY storage for DT.  Caught
6811         by valgrind.
6812
6813 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
6814
6815         * html-parse.c (convert_and_copy): Handle numeric entities in
6816         hexadecimal, &#xHH.
6817         (convert_and_copy): Copy the contents directly to the pool without
6818         a stack-allocated intermediary.
6819
6820 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
6821
6822         * utils.c (alarm_set): New function; use either setitimer or alarm
6823         to set up the alarm.
6824         (alarm_cancel): New function; cancel the alarm set up by
6825         alarm_set.
6826         (run_with_timeout): Use them.
6827
6828 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
6829
6830         * url.c (url_parse): Don't leak memory when a reencoded URL turns
6831         out to be invalid.
6832
6833         * url.c (parse_errors): Mark error messages for translation.
6834         (url_error): Translate error messages returned to the caller.
6835
6836 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
6837
6838         * ftp.c (ftp_loop_internal): Initialize TMRATE to NULL to shut up
6839         the compiler.
6840
6841 2003-09-26  Gisle Vanem  <giva@bgnett.no>
6842
6843         * src/mswindows.c: Added ws_percenttitle() showing progress in the
6844         window titlebar. Called from retr.c. Secured ws_mypath().
6845
6846         * windows/config.h.ms: alloca() prototype not needed.  Removed
6847         "#undef ENABLE_NLS"; should be in Makefile IMHO. Moved
6848         WGET_USE_STDARG from mswindows.h to config.ms.h because of #ifdef
6849         in log.c. (MSVC's vararg.h and stdarg.h are incompatible).
6850
6851 2003-09-29  Aaron Hawley <Aaron.Hawley@uvm.edu>
6852
6853         * ftp.c (getftp): --spider option should now work with FTP
6854         downloads.
6855         (ftp_loop_internal): quiet reports and calculations of downloads
6856         when --spider option set, nor try deleting when --delete-after
6857         also set.
6858         (ftp_loop): --spider will skip HTML-ification of .listing file.
6859
6860 2003-09-26  Gisle Vanem  <giva@bgnett.no>
6861
6862         * mswindows.c (read_registry): Removed.
6863         (set_sleep_mode): New function.
6864         (windows_main_junk): Call it.
6865
6866 2003-09-26  Gisle Vanem  <giva@bgnett.no>
6867
6868         * mswindows.c (read_registry): Fix invocation of registry
6869         functions.
6870
6871         * mswindows.c (read_registry): Condition definitions of sleep and
6872         usleep with not HAVE_SLEEP and HAVE_USLEEP respectively.  Define
6873         HAVE_SLEEP and HAVE_USLEEP under __DMC__.
6874
6875 2003-09-24  Hrvoje Niksic  <hniksic@xemacs.org>
6876
6877         * url.c (url_escape_1): Revert unintentional change to lowercase
6878         xdigit escapes.
6879         (url_escape_dir): Document that this function depends on the
6880         output of url_escape_1.
6881
6882 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
6883
6884         * progress.c (create_image): Print the current ETA if we're done
6885         with the download.
6886         (create_image): Change '-' display char to '+' in the progress bar.
6887
6888         * Makefile.in (clean): Remove .libs.
6889
6890 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
6891
6892         * cookies.c (struct cookie): New flag domain_exact.
6893         (update_cookie_field): Skip leading dot in domain.
6894         (find_matching_chains): Match numeric addresses exactly; don't
6895         needlessly copy HOST to the stack.
6896         (matching_cookie): Added argument HOST.  If cookie->domain_exact
6897         is set, check that HOST is equal to cookie->domain.
6898         (cookie_jar_load): Only use TAB as delimiter.  Document the
6899         meaning of DOMAIN-FLAG.  Skip leading dot in domain.
6900         (cookie_jar_load): Don't ignore DOMAIN-FLAG -- instead, set
6901         domain_exact to true if DOMAIN-FLAG is false.
6902         (save_cookies_mapper): If domain_exact is false, prepend the
6903         domain with dot, like Mozilla does.
6904
6905 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
6906
6907         * progress.c (create_image): Print the initial part of the
6908         download with '-' characters, analogous to how dot progress prints
6909         the initial part with ','.
6910
6911         * hash.c (ptrhash): New function.
6912         (ptrcmp): Ditto.
6913         (hash_table_new): Default to identity hash table.
6914
6915 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
6916
6917         * safe-ctype.h (_sch_test): The cast of BIT to unsigned char was
6918         broken -- _sch_istable bitmasks are 16-bit, not 8-bit!  Cast BIT
6919         to unsigned short instead.
6920
6921 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
6922
6923         * url.c (path_simplify): Instead of calls to memmove, handle "./"
6924         and "../" by advancing pointers.
6925
6926 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
6927
6928         * retr.c (getproxy): Moved from url.c.
6929
6930         * convert.c: Split off link conversion from url.c into separate
6931         file.  Also included the book-keeping stuff from recur.c.
6932
6933 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
6934
6935         * init.c: Improved documentation of functions.
6936         (cmd_boolean): Attempt to make code that tries to avoid calling
6937         strcmp for "speed" a bit more readable.
6938
6939         * init.c (simple_atof): Report error on encountering non-digit,
6940         non-"." character.
6941         (simple_atoi): Replacement for myatoi(), calling interface
6942         compatible with simple_atof.  Updated myatoi's callers.
6943
6944 2003-09-21  Bertrand Demiddelaer  <bert@b3rt.org>
6945
6946         * url.c (path_simplify): Would read two bytes past the end of the
6947         string in the "./" case.
6948
6949 2003-09-21  Matthew J. Mellon  <mellon@tymenet.com>
6950
6951         * http.c (gethttp): Recognize content-type "application/xhtml+xml"
6952         as what Wget considers "text/html".
6953
6954 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
6955
6956         * connect.c (connect_with_timeout): Made timeout type double.
6957
6958         * options.h (struct options): New members read_timeout,
6959         dns_timeout, and connect_timeout.
6960         Use them.
6961
6962 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
6963
6964         * init.c (simple_atof): New function.
6965         (cmd_time): Use it.
6966         (cmd_bytes): Accept things like "1.5k" and such.  Use simple_atof
6967         to parse decimals.
6968
6969         * retr.c (limit_bandwidth): Adjust each sleep by the error of the
6970         previous one.
6971
6972 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
6973
6974         * main.c (main): Use setoptval() for setting the options.  Use
6975         run_command for `-e'.
6976
6977         * init.c (parse_line): Rewritten to return COMIND right away.
6978         Changed linkage to static.
6979         (run_wgetrc): Use the available comind when calling setval, so it
6980         doesn't have to be computed twice.
6981         (setval_internal): New function, runs the command's action without
6982         any error checking.
6983         (setoptval): New function, does what setval used to do, but exits
6984         in case of error.
6985         (run_command): New function.
6986
6987 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
6988
6989         * connect.c (select_fd): Change MAXTIME's type to double.  Handle
6990         its decimal part.
6991
6992         * retr.c (sleep_between_retrievals): In the random-wait case, use
6993         random_float() to wait between 0 and 2*opt.wait seconds.
6994
6995         * utils.c (run_with_timeout): Accept `double' timeouts.  Correctly
6996         handle timeout values in (0, 1) range.
6997         (random_float): New function.
6998
6999         * options.h (struct options): Change the types of wait, waitretry,
7000         and timeout to double.
7001
7002         * init.c (cmd_time): Accept floating point time.
7003
7004 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
7005
7006         * retr.c (get_contents): Cosmetic fixes.
7007
7008 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
7009
7010         * url.c (uri_merge): Get rid of uri_merge_1.
7011         (uri_merge): Merge "foo//", "bar" as "foo//bar", not "foo///bar",
7012         i.e. don't add an extra slash merely because BASE ends with two
7013         slashes.
7014         (parse_credentials): Renamed from parse_uname.  Rewrittern in
7015         standard [beg, end) calling style.
7016         (url_skip_credentials): Renamed from url_skip_uname.  Made static.
7017         (url_skip_credentials): Include # and ; as terminators.  Old code
7018         would mistakenly consider "http://foo.com#hniksic@iskon.hr" to
7019         contain a username.
7020         (url_skip_scheme): Removed because it was unused.
7021         (url_has_scheme): Require "scheme" to be at least one char long.
7022
7023 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
7024
7025         * url.c (url_file_name): Expect NULL dir_prefix.
7026
7027         * init.c (cmd_file): Use a macro to prevent multiple #ifdef
7028         WINDOWS.
7029         (defaults): Set dir_prefix to NULL by default.
7030
7031 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
7032
7033         * safe-ctype.h (_sch_test): Cast BIT to unsigned char, like latest
7034         gcc does.
7035
7036 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
7037
7038         * wget.h (BOUNDED_TO_ALLOCA): Evaluate PLACE only once.
7039         (ARRAY_SIZE): Renamed to countof.  All callers updated.
7040
7041 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
7042
7043         * main.c (main): New option --strict-comments.
7044
7045         * html-parse.c (find_comment_end): New function: simple BM search
7046         for "-->".
7047         (map_html_tags): Use it if looking at a comment and not in strict
7048         comments mode.
7049
7050 2003-09-17  Aurelien Marchand  <artaxerxes@users.sf.net>
7051
7052         * ftp.h: Added OS400 system in enum
7053         * ftp-basic.c: recognize OS400 systems
7054         * ftp.c: don't prepend the CWD if talking to OS400, since it
7055         breaks the change in library
7056
7057 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
7058
7059         * retr.c (get_contents): Pass the correct argument to ssl_iread.
7060
7061 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
7062
7063         * safe-ctype.h: Don't #define ctype.h macros to errors because
7064         that loses when someone #include's ctype.h after safe-ctype.h.
7065
7066 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
7067
7068         * url.c: Undef U, W, C after use.
7069
7070 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
7071
7072         * init.c (cmd_spec_restrict_file_names): Allow the OS setting to
7073         be augmented by ",nocontrol" which means don't escape the control
7074         characters, but otherwise keep OS settings.
7075
7076         * url.c (file_unsafe_char): Deleted.
7077         (append_uri_pathel): Query filechr_table directly.
7078         (filechr_table): Separated Unix, Windows, and control-unsafe
7079         characters.
7080
7081 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
7082
7083         * url.c (url_escape_1): New function.
7084         (url_escape): Use it.
7085         (sync_path): Handle pathological cases where u->file and u->dir
7086         contain really strange characters.
7087         (ENCODE): Deleted.
7088         (REENCODE): Deleted.
7089
7090 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
7091
7092         * url.c (url_file_name): Don't reallocate FNAME if the file
7093         doesn't exist, as is usually the case.
7094
7095         * utils.c (unique_name): New flag allow_passthrough.
7096
7097 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
7098
7099         * utils.c (wtimer_sys_diff): Convert the time difference to signed
7100         __int64, then to double.  This works around MS VC++ 6 which can't
7101         convert unsigned __int64 to double directly.
7102
7103 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
7104
7105         * Makefile.in (clean): Also remove the core.<number> files
7106         produced by recent Linux systems.
7107
7108 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
7109
7110         * http.c (post_file): Don't pad the file if it's not large
7111         enough.  Bail out instead.
7112
7113 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
7114
7115         * retr.c (get_contents): Reduce the buffer size to the amount of
7116         data that may pass through for one second.  This prevents long
7117         sleeps when limiting bandwidth.
7118
7119         * connect.c (connect_to_one): Reduce the socket's RCVBUF when
7120         bandwidth limitation to small values is requested.
7121
7122 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
7123
7124         * progress.c (update_speed_ring): Moved the speed ring update to a
7125         separate function and documented it better.
7126
7127         * progress.c: Use `double' for most timers to support granularity
7128         smaller than 1ms.
7129
7130 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
7131
7132         * wget.h (XDIGIT_TO_XCHAR): Implement as index into a literal
7133         string.
7134         (XDIGIT_TO_xchar): Ditto.
7135
7136 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
7137
7138         * utils.c: Change the type of timer-related functions from long to
7139         double, for better precision.  On machines supporting gettimeofday
7140         the timers now work with granularity of less than one millisecond.
7141
7142 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
7143
7144         * cookies.c (parse_set_cookies): Fixed the parser to handle more
7145         edge conditions.
7146         (test_cookies): New function, contains a test suite for
7147         parse_set_cookies.
7148
7149 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
7150
7151         * url.c (strpbrk_or_eos): Implement as a macro under Gcc.
7152
7153 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
7154
7155         * cookies.c (parse_set_cookies): Allow trailing space in
7156         set-cookies header.  Also, allow any amount of whitespace, not
7157         only one character.  Allow empty set-cookies header without
7158         spewing an error.
7159
7160 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
7161
7162         * url.c (append_uri_pathel): Use opt.restrict_file_names when
7163         calling file_unsafe_char.
7164
7165         * init.c: New command restrict_file_names.
7166
7167         * main.c (main): New option --restrict-file-names[=windows,unix].
7168
7169         * url.c (url_file_name): Renamed from url_filename.
7170         (url_file_name): Add directory and hostdir prefix here, not in
7171         mkstruct.
7172         (append_dir_structure): New function, does part of the work that
7173         used to be in mkstruct.  Iterates over path elements in u->path,
7174         calling append_uri_pathel on each one to append it to the file
7175         name.
7176         (append_uri_pathel): URL-unescape a path element and reencode it
7177         with a different set of rules, more appropriate for handling of
7178         files.
7179         (file_unsafe_char): New function, uses a lookup table to decide
7180         whether a character should be escaped for use in file name.
7181         (append_string): New utility function.
7182         (append_char): Ditto.
7183         (file_unsafe_char): New argument restrict_for_windows, decide
7184         whether Windows file names should be escaped in run-time.
7185
7186         * connect.c: Include <stdlib.h> to get prototype for abort().
7187
7188 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
7189
7190         * utils.c (wtimer_sys_set): Extracted the code that sets the
7191         current time here.
7192         (wtimer_reset): Call it.
7193         (wtimer_sys_diff): Extracted the code that calculates the
7194         difference between two system times here.
7195         (wtimer_elapsed): Call it.
7196         (wtimer_elapsed): Don't return a value smaller than the previous
7197         one, which could previously happen when system time is set back.
7198         Instead, reset start time to current time and note the elapsed
7199         offset for future calculations.  The returned times are now
7200         guaranteed to be monotonically nondecreasing.
7201
7202 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
7203
7204         * host.c (lookup_host): Print the result of the DNS lookup.
7205
7206 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
7207
7208         * init.c (cmd_boolean): Accept yes/no along with on/off.
7209         (cmd_lockable_boolean): Ditto.
7210
7211 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
7212
7213         * init.c: New command dns_cache.
7214
7215         * main.c (main): New option --dns-cache[=off].
7216
7217 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
7218
7219         * config.h.in: Initialize HAVE_GETADDRINFO and ENABLE_IPV6.
7220
7221         * all: Use #ifdef ENABLE_IPV6 instead of the older INET6.  Use
7222         HAVE_GETADDRINFO for getaddrinfo-related stuff.
7223
7224 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
7225
7226         * url.c (url_parse): Return an error if the URL contains a [...]
7227         IPv6 numeric address and we don't support IPv6.
7228
7229 2003-09-05  Hrvoje Niksic  <hniksic@xemacs.org>
7230
7231         * url.c (is_valid_ipv6_address): Modified to not require
7232         zero-terminated strings.
7233         (is_valid_ipv4_address): Ditto.
7234
7235 2003-09-05  Mauro Tortonesi <mauro@deepspace6.net>
7236
7237         src/url.c: added RFC 2732 compliance for URL parsing. The
7238         functions is_*_address valid are a modified version of
7239         glibc 2.3.2 inet_pton's code.
7240
7241 2003-09-03  Ahmon Dancy  <dancy@dancysoft.com>
7242
7243         * main.c init.c options.h: Added --retry-connrefused option so
7244         that Connection Refused failures are treated as non-fatal (when
7245         trying to retrieve from busy servers).
7246
7247         * wget.h: New CONNECT_ERROR macro for encapsulating this
7248         modification.
7249
7250         * ftp.c http.c : Use CONNECT_ERROR macro in places where
7251         ECONNREFUSED was checked.
7252
7253 2003-01-11  Ian Abbott  <abbotti@mev.co.uk>
7254
7255         * ftp.c (ftp_retrieve_glob): Reject insecure filenames as determined
7256         by calling new function has_insecure_name_p.  This is based on a
7257         patch by Red Hat.
7258
7259         * fnmatch.c (has_insecure_name_p): New function: returns non-zero
7260         if filename starts with `/' or contains `../' and is therefore
7261         considered insecure.
7262
7263         * fnmatch.h: Declare has_insecure_name_p().
7264
7265 2002-08-03  Hrvoje Niksic  <hniksic@xemacs.org>
7266
7267         * init.c (cmd_file): Allocate RESULT correctly.
7268
7269 2002-07-24  Hrvoje Niksic  <hniksic@xemacs.org>
7270
7271         * recur.c (retrieve_tree): Check whether downloaded_html_set is
7272         non-NULL before using it.
7273
7274 2002-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
7275
7276         * html-parse.c (NAME_CHAR_P): Allow almost any character here.
7277
7278 2002-05-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7279
7280         * progress.c (bar_set_params): Fall back to dot progress if the
7281         terminal type is "emacs".
7282
7283 2002-05-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7284
7285         * log.c: Don't #undef WGET_USE_STDARG.
7286
7287 2002-05-16  Hrvoje Niksic  <hniksic@arsdigita.com>
7288
7289         * hash.c (prime_size): Store the offset of the prime number in the
7290         prime table.  When searching, start with the given offset.
7291         (hash_table_new): Pass the pointer to ht->prime_offset to
7292         prime_size.
7293         (grow_hash_table): Ditto.
7294         (prime_size): Make 13 the first prime to make empty hash tables
7295         slightly smaller.
7296
7297 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
7298
7299         * recur.c (download_child_p): Minor optimization to avoid an
7300         unnecessary additional call to schemes_are_similar_p function.
7301
7302 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
7303
7304         * url.c (schemes_are_similar_p): New function to test enumerated
7305         scheme codes for similarity.
7306
7307         * url.h: Declare it.
7308
7309         * recur.c (download_child_p): Use it to compare schemes.  This
7310         also fixes a bug that allows hosts to be spanned (without the
7311         -H option) when the parent scheme is https and the child's is
7312         http or vice versa.
7313
7314 2002-05-14  Bill Richardson  <bill@riverstonenet.com>
7315
7316         * ftp.c (getftp): Don't ftruncate stdout.
7317
7318         * http.c (gethttp): Don't ftruncate stdout.
7319
7320 2002-05-09  Ian Abbott  <abbotti@mev.co.uk>
7321
7322         * cmpt.c (strptime_internal): Synched with glibc-2.1.3.
7323         (get_number): Ditto.
7324         (get_alt_number): Ditto.
7325         (__isleap): New function-like macro used by strptime.
7326         (day_of_the_week): New function used by strptime.
7327         (day_of_the_year): Ditto.
7328         (__mon_yday): Now shared by mktime and strptime implementations.
7329
7330 2002-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
7331
7332         * cookies.c (check_domain_match): Use match_tail in case
7333         insensitive mode.
7334
7335         * utils.c (match_tail): Allow the caller to specify case
7336         insensitive mode.
7337
7338         * cookies.c (store_cookie): When expiry_time is 0, print it as
7339         undefined, not indefinite.
7340
7341 2002-05-07  Ian Abbott  <abbotti@mev.co.uk>
7342
7343         * cookies.c (cookie_jar_process_set_cookie): Do not store
7344         discarded cookie.
7345
7346 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
7347
7348         * cookies.c (check_domain_match): Allow cookies to be set for
7349         subdomains of unknown top-level domains under some circumstances.
7350
7351 2002-04-21  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
7352
7353         * gen_ssl.c:
7354         - allow checking of server cert
7355         - allow defining client cert type
7356         - allow limit of ssl protocol
7357         - check more return values
7358         - added debug message on break
7359
7360 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
7361
7362         * recur.c (download_child_p): Revert order of items in check
7363         number 6 for clarity.
7364
7365 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7366
7367         * init.c: Ditto.
7368
7369         * main.c: Ditto.
7370
7371         * http.c: Use the new interface.
7372
7373         * cookies.c: Provide an OO-style "cookie jar" interface to enable
7374         separate cookie jars.
7375
7376         * http.c (http_atotm): Declare argument as const.
7377
7378 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
7379
7380         * cookies.c (cookie_new): Default to PORT_ANY.
7381         (find_cookie_chain_exact): Only search by DOMAIN.
7382         (find_matching_cookie): Also check that PORT matches.
7383         (store_cookie): Only match the domain.
7384         (set_cookie_header_cb): When a cookie "fakes" a domain, assume it
7385         is valid for that host rather than discarding it completely.
7386         (find_matching_chains): Don't search by PORT.
7387         (matching_cookie): Also match PORT.
7388         (load_cookies): Set the port if specified, otherwise leave it as
7389         ANY.
7390         (save_cookies_mapper): Save the port if specified, otherwise leave
7391         it empty.
7392
7393 2002-04-19  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
7394
7395         * init.c: The option `egdfile' was not in sort order.
7396
7397 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
7398
7399         * ftp.c (getftp): Treat directories that begin with <letter>: as
7400         absolute.
7401         (getftp): Strip trailing slashes from con->id before merging it
7402         with TARGET.
7403
7404 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
7405
7406         * http.c (gethttp): If Content-Type is not given, assume
7407         text/html.
7408
7409 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
7410
7411         * recur.c (download_child_p): Don't ignore rejection of HTML
7412         documents that are themselves leaves of recursion.
7413
7414 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
7415
7416         Makefile.in: Updated several dependencies for object files to take
7417         account of nested include files.
7418
7419 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
7420
7421         Makefile.in: The target `connect$o' (connect.o) now depends on
7422         `utils.h'
7423
7424 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
7425
7426         * host.c (SET_H_ERRNO): New function-like macro to set `h_errno'.
7427         (gethostbyname_with_timeout): Use it.
7428
7429         * utils.c: Don't define `SETJMP()', `run_with_timeout_env' or
7430         `abort_run_with_timeout()' when `USE_SIGNAL_TIMEOUT' is undefined.
7431
7432 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
7433
7434         * host.c (getaddrinfo_with_timeout): New function.
7435         (gethostbyname_with_timeout): Ditto.
7436         (lookup_host): Use them.
7437
7438 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7439
7440         * utils.c (number_to_string): Handle the case when n < -INT_MAX.
7441
7442 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7443
7444         * init.c (comind): Use a marginally faster implementation of
7445         binary search.  To quote Martin Buchholz, "a nanosecond saved is a
7446         nanosecond earned."
7447
7448 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7449
7450         * main.c (print_help): Document `--post-data' and `--post-file'.
7451
7452 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7453
7454         * http.c (gethttp): Ditto.
7455
7456         * retr.c (retrieve_url): Initialize variables to appease the
7457         compiler.
7458
7459         * gen_sslfunc.c (ssl_iread): Don't handle EINTR when calling
7460         select_fd.
7461         (ssl_iwrite): Ditto.
7462
7463         * connect.c (select_fd): Rewrite to handle EINTR.  Set errno to
7464         ETIMEDOUT in case of timeout.
7465         (iread): No need to handle EINTR when calling select_fd.
7466         (iwrite): Ditto.
7467
7468 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7469
7470         * retr.c (retrieve_url): Make sure that POST is not honored for
7471         redirections.
7472
7473         * http.c (gethttp): Send the POST data when requested.
7474         (post_file): New function.
7475         (gethttp): Use it.
7476
7477         * main.c (main): Ditto.
7478
7479         * init.c: Add new options.
7480
7481         * options.h (struct options): New options post_data and
7482         post_file_name.
7483
7484 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7485
7486         * connect.c (connect_with_timeout): Firing SIGALRM can result in
7487         connect() exiting with EINTR.  Treat EINTR the same as ETIMEDOUT.
7488
7489 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7490
7491         * connect.c (connect_with_timeout): Use it.
7492
7493         * utils.c (run_with_timeout): New function.
7494
7495 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7496
7497         * url.c (getproxy): Accept a struct url argument.  This obviates
7498         the need for USE_PROXY_P.
7499
7500         * retr.c (retrieve_url): Allow proxy to be a non-FTP URL.
7501
7502         * ftp.c (getftp): Recognize FWTK-style proxy.
7503
7504 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7505
7506         * config.h.in: Only define _VA_LIST when compiled with gcc.
7507
7508 2002-04012  Ian Abbott  <abbotti@mev.co.uk>
7509
7510         * http.c (http_loop): Compensate for MS Windows two-second
7511         granularity of file modification time when comparing timestamps.
7512
7513         * ftp.c (ftp_retrieve_list): Ditto.
7514
7515 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
7516
7517         * utils.c (has_html_suffix_p): New function to test filename for
7518         common html extensions.
7519
7520         * utils.h: Declare it.
7521
7522         * http.c (http_loop): Use it instead of previous test.
7523
7524         * retr.c (retrieve_url): Ditto.
7525
7526         * recur.c (download_child_p): Ditto.
7527
7528 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7529
7530         * config.h.in: Define _VA_LIST on Solaris to prevent stdio.h from
7531         declaring va_list.
7532         From Kevin Rodgers <kevinr@ihs.com>.
7533
7534 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
7535
7536         * Makefile.in: Specify libtool mode explicitly when linking.
7537
7538 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7539
7540         * connect.c (connect_with_timeout): New function.
7541         (connect_to_one): Use it.
7542
7543         * config.h.in: Add stubs for HAVE_SIGSETJMP, HAVE_SIGBLOCK, and
7544         HAVE_SETJMP_H.
7545
7546 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7547
7548         * log.c: Set WGET_USE_STDARG if __STDC__ is defined and stdarg.h
7549         is present.
7550
7551 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7552
7553         * progress.c (bar_create): If INITIAL is larger than TOTAL, fix
7554         TOTAL.
7555         (bar_finish): Likewise.
7556
7557 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7558
7559         * html-url.c (tag_handle_form): New function.  Pick up form
7560         actions and mark them for conversion only.
7561
7562 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7563
7564         * progress.c (struct progress_implementation): Use PARAMS when
7565         declaring the parameters of *create, *update, *finish, and
7566         *set_params.
7567
7568         * netrc.c: Ditto.
7569
7570         * http.c: Reformat some function definitions so that ansi2knr can
7571         read them.
7572
7573         * hash.c (struct hash_table): Use the PARAMS macro around
7574         parameters in the declaration of hash_function and test_function.
7575         (prime_size): Spell 2580823717UL and 3355070839UL as (unsigned
7576         long)0x99d43ea5 and (unsigned long)0xc7fa5177 respectively, so
7577         that pre-ANSI compilers can read them.
7578         (find_mapping): Use PARAMS when declaring EQUALS.
7579         (hash_table_put): Ditto.
7580
7581         * ftp.h: Wrap the parameters of ftp_index declaration in PARAMS.
7582
7583         * cookies.c (cookie_new): Use (unsigned long)0 instead of 0UL,
7584         which was unsupported by pre-ANSI compilers.
7585
7586         From Nelson H. F. Beebe <beebe@math.utah.edu>, for the most part.
7587
7588 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7589
7590         * url.c (url_filename): Use compose_file_name regardless of
7591         whether opt.dirstruct is set.
7592         (mkstruct): Don't handle the query and the reencoding of DIR; that
7593         is done in compose_file_name.
7594
7595 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7596
7597         * wget.h: Ditto for extern char *exec_name.
7598
7599         * options.h: Don't guard against OPTIONS_DEFINED_HERE -- it is
7600         perfectly legal to follow an `extern' with a non-`extern' ones,
7601         provided the types match.
7602
7603         * main.c: Don't define OPTIONS_DEFINED_HERE.
7604
7605 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7606
7607         * progress.c (create_image): Revert to calculating ETA based on
7608         average download speed.
7609         (create_image): Don't print ETA until the download has been active
7610         for at least 3 seconds.
7611         (create_image): When ETA is not available, don't print anything.
7612         The previous version would print --:--.
7613
7614 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7615
7616         * progress.c (bar_update): Keep updating a subinterval until it
7617         reaches or exceeds a watermark.  That way the measurement will be
7618         guaranteed to span a configurable minimum of time.  The current
7619         default is 3s in 30 100ms intervals.
7620
7621 2002-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7622
7623         * progress.c (bar_update): Maintain an array of the time it took
7624         to perform previous 30 network reads.
7625         (create_image): Calculate the download speed and ETA based on the
7626         last 30 reads, not the entire download.
7627         (create_image): Make sure that the ETA is not changed more than
7628         once per second.
7629
7630 2002-04-09  Ian Abbott  <abbotti@mev.co.uk>
7631
7632         * mswindows.c (borland_utime): New function conditionally defined
7633         when `HACK_BCC_UTIME_BUG' is defined.  A reimplementation of
7634         `utime()' as Borland's `utime()' function is broken on Windows 9x
7635         systems.  (Original patch by Chin-yuan Kuo <sr1111111@yahoo.com.tw>.)
7636
7637 2002-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
7638
7639         * ftp.c (ftp_loop): Propagate the result of ftp_retrieve_glob.
7640
7641 2002-03-26  Ian Abbott  <abbotti@mev.co.uk>
7642
7643         * Makefile.in: Updated several dependencies for object files.
7644
7645 2002-03-20  Ian Abbott  <abbotti@mev.co.uk>
7646
7647         * mswindows.c: Include "utils.h".
7648
7649 2002-03-18  Ian Abbott  <abbotti@mev.co.uk>
7650
7651         * host.h: Don't include netdb.h on windows.
7652
7653 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7654
7655         * recur.c (retrieve_tree): Handle the case when start_url doesn't
7656         parse.
7657
7658 2002-02-19  Andreas Damm  <andreas-sourceforge@radab.org>
7659
7660         * wget.h (DO_REALLOC_FROM_ALLOCA): Multiply with sizeof(type) when
7661         calling xmalloc and memcpy.
7662
7663 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7664
7665         * host.h: Include Unix-specific includes #ifndef WINDOWS.
7666         Patch originally provided by Christian Lackas.
7667
7668 2002-02-11  Christian Lackas  <delta@lackas.net>
7669
7670         * recur.c: recurive downloading for https fixed.
7671
7672 2002-02-19  Alan Eldridge  <alane@geeksrus.net>
7673
7674         * host.h: Also include <netinet/in.h> and <sys/socket.h>.
7675
7676         * ftp-basic.c: Also include <netinet/in.h>.
7677
7678 2002-02-05  Ian Abbott  <abbotti@mev.co.uk>
7679
7680         * http.c (gethttp): when -c used, mark already fully retrieved
7681         file as successfully retrieved.
7682
7683 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7684
7685         * url.c (url_parse): Don't treat '?' as query string separator
7686         when parsing FTP URLs.
7687
7688 2002-02-01  Hrvoje Niksic  <hniksic@arsdigita.com>
7689
7690         * html-url.c (tag_handle_meta): Don't crash on <meta
7691         http-equiv=refresh> where content is missing.
7692
7693 2002-01-31  Herold Heiko  <Heiko.Herold@previnet.it>
7694
7695         * ftp-basic.c, host.c: don't include sys/socket.h, arpa/inet.h,
7696         netdb.h on windows.
7697
7698 2002-01-30  Hrvoje Niksic  <hniksic@arsdigita.com>
7699
7700         * retr.c (retrieve_url): Remove redirection cycle detection.  This
7701         is because some sites legitimately redirect the user back to the
7702         same location, e.g. after an authorization check performed by
7703         another page.  MAX_REDIRECTIONS is still used to prevent infinite
7704         redirection loops.
7705
7706 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7707
7708         * http.c (gethttp): Wrap host name in square brackets if it
7709         contains a colon.
7710
7711 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7712
7713         * url.c (url_parse): Allow all hex digits, not only decimal ones,
7714         to form an IP address.
7715
7716 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
7717
7718         * url.c (urlchr_table): Make square braces reserved, so we can
7719         parse http://[::1]/.
7720         (url_parse): Handle host in braces.
7721         (url_string): If url->host contains colons, wrap it in braces.
7722
7723 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7724
7725         * connect.c (resolve_bind_address): New function.
7726         (connect_to_one): Use it.
7727         (bindport): Ditto.
7728
7729         * init.c: Don't resolve bind-address here.
7730
7731         * host.c (wget_sockaddr_set_address): Would bug out with ADDR == NULL.
7732
7733 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7734
7735         * host.c (lookup_host): Use sizeof(ip4_address) to calculate the
7736         offset.
7737         (address_list_new): Use map_ipv4_to_ip.
7738         (wget_sockaddr_set_address): Convert ADDR to IPv4 before using it
7739         in IPv4 context.
7740
7741 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7742
7743         * source: Integrated IPv6 support.
7744         Written by Thomas Lussnig <thomas.lussnig@bewegungsmelder.de>.
7745
7746 2002-01-15  Ian Abbott  <abbotti@mev.co.uk>
7747
7748         * init.c (cmd_file): Change `\' to `/' for Windows (yes, really!)
7749         (cmd_directory): New function. Like cmd_file(), but strips
7750         trailing directory separators.
7751         (commands): Change action for "dirprefix" from `cmd_file' to
7752         `cmd_directory'.
7753
7754         * utils.c (make_directory): Allow intermediate `mkdir' calls to
7755         fail, as not all path components that do not exist should be
7756         directory components, especially under Windows.
7757
7758 2002-01-17  Hrvoje Niksic  <hniksic@arsdigita.com>
7759
7760         * netrc.c (parse_netrc): Skip leading whitespace before testing
7761         whether the line is empty.  Empty lines still contain the line
7762         terminator.
7763
7764 2002-01-15  Hrvoje Niksic  <hniksic@arsdigita.com>
7765
7766         * gen_sslfunc.c (ssl_iread): Call select on the file descriptor
7767         only if no data is pending in SSL buffers.
7768         From tony@bluetail.com.
7769
7770 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7771
7772         * headers.c (header_get): Strip trailing whitespace from the
7773         header.
7774
7775 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7776
7777         * url.c (parse_uname): URL-decode *USER and *PASSWD.
7778
7779 2002-01-07  Ian Abbott <abbotti@mev.co.uk>
7780
7781         * url.c (uri_merge_1): Deal with "net path" relative URL (one that
7782         starts with "//").
7783
7784 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7785
7786         * http.c (gethttp): Invalidate SOCK if get_contents encountered an
7787         error.
7788
7789 2001-12-24  Hrvoje Niksic  <hniksic@arsdigita.com>
7790
7791         * version.c: Wget 1.8.1 is released.
7792
7793 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7794
7795         * version.c: Wget 1.8.1-pre3 is released.
7796
7797 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7798
7799         * recur.c (retrieve_tree): Enqueue the canonical representation of
7800         start_url, so that the test against dl_url_file_map works.
7801
7802 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7803
7804         * log.c (logputs): Check for requested verbosity before printing
7805         anything.
7806
7807 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
7808
7809         * html-url.c (tag_handle_link): Treat the "shortcut icon" link as
7810         inline.
7811
7812 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7813
7814         * recur.c (retrieve_tree): Make a copy of file obtained from
7815         dl_url_file_map because the code calls xfree(file) later.
7816
7817 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
7818
7819         * recur.c (register_html): Maintain a hash table of HTML files
7820         along with the list.  Disallow duplicates.
7821         (retrieve_tree): Use downloaded_html_set to check whether the file
7822         found in dl_url_file_map is an HTML file, and descend into it if
7823         so.
7824         (convert_all_links): Don't guard against duplicates in
7825         downloaded_html_list, since they are no longer possible.
7826
7827 2001-12-18  Ian Abbott  <abbotti@mev.co.uk>
7828
7829         * recur.c (retrieve_tree): Pass on referring URL when retrieving
7830         recursed URL.
7831
7832 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
7833
7834         * version.c: Wget 1.8.1-pre2 is released.
7835
7836 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
7837
7838         * retr.c (sleep_between_retrievals): Simplify indentation.
7839
7840 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
7841
7842         * gen_sslfunc.c (ssl_init_prng): Use random_number to get a byte
7843         of "randomness" at a time.
7844         (ssl_init_prng): Don't seed the PRNG; random_number will do that.
7845
7846         * retr.c (sleep_between_retrievals): Use it.  Make sure that the
7847         random amount averages in opt.wait.
7848         (sleep_between_retrievals): Don't seed the PRNG; random_number
7849         will do that.
7850
7851         * utils.c (random_number): New function.
7852
7853 2001-12-14  Hrvoje Niksic  <hniksic@arsdigita.com>
7854
7855         * url.c (path_simplify): Move here from utils.c, and make static.
7856
7857 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7858
7859         * init.c (wgetrc_file_name): Print correct message when loading
7860         getenv("WGETRC") fails.
7861
7862 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7863
7864         * recur.c (register_download): Don't abort when one URL references
7865         two different files.
7866
7867 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7868
7869         * http.c (gethttp): Check for conn->scheme, not u->scheme, before
7870         calling ssl_iwrite.
7871
7872 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7873
7874         * version.c: Wget 1.8.1-pre1 is released.
7875
7876 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7877
7878         * res.c (matches): Fix broken URL in the docstring.
7879
7880 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
7881
7882         * html-url.c (tag_url_attributes): Mark <embed href=...> as
7883         external.
7884
7885 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7886
7887         * url.c (get_urls_file): Cosmetic changes.
7888
7889 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7890
7891         * html-url.c (append_one_url): Resurrect warning when unable to
7892         resolve a relative link.
7893
7894 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
7895
7896         * html-url.c (collect_tags_mapper): Break into several functions.
7897         (tag_url_attributes): Collect <embed href=...>.
7898
7899 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7900
7901         * host.c: New type ipv4_address.  Use it consistently instead of
7902         `unsigned char[4]' and `unsigned char *'.
7903         (pretty_print_address): Accept a `const void *', to require even
7904         less casting.
7905
7906 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
7907
7908         * ftp-ls.c (ftp_parse_vms_ls): Fix obvious memory leaks.
7909
7910 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7911
7912         * main.c (main): Initialize progress after fork_to_background, so
7913         that it knows when to use dots.
7914
7915         * mswindows.c (ws_hangup): Call log_request_redirect_output.
7916
7917         * utils.c (fork_to_background): Print the PID of the child
7918         process.
7919
7920         * log.c (log_request_redirect_output): Set a flag that output
7921         redirection has been requested.  Doing anything else in a signal
7922         handler is unsafe.
7923         (check_redirect_output): New function: check whether redirection
7924         has been requested and, if so, call redirect_output().
7925         (logputs): Call check_redirect_output.
7926         (logprintf): Ditto.
7927         (debug_logprintf): Ditto.
7928         (redirect_output): Print clearer messages.
7929
7930         * main.c (redirect_output_signal): Don't call
7931         redirect_output_signal directly.  Instead, call
7932         log_request_redirect_output.
7933
7934         * utils.c (memfatal): Ditto.
7935
7936         * progress.c (display_image): Use it.
7937
7938         * log.c (log_set_save_context): New function: allow the caller to
7939         turn off saving log context lines.
7940
7941 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7942
7943         * host.c (address_list_set_faulty): Uncomment a sanity check.
7944
7945 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7946
7947         * utils.c (long_to_string): Return a pointer after where the
7948         number ends.
7949         (long_to_string): Rename to number_to_string.
7950
7951 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7952
7953         * utils.c (path_simplify): Correctly handle the unlikely case that
7954         b starts out as path + 1.
7955
7956 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
7957
7958         * utils.c (path_simplify): Rewrite, with better comments, and
7959         without the use of strcpy to move overlapping blocks.
7960
7961 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7962
7963         * init.c (cmd_spec_progress): Resurrect.  Check whether VAL is a
7964         valid progress type before setting it.
7965
7966 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7967
7968         * main.c (main): Remove stray debugging message.
7969
7970 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7971
7972         * progress.c (create_image): Fix ETA padding when hours are prined.
7973
7974 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7975
7976         * version.c: Wget 1.8 is released.
7977
7978 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
7979
7980         * url.c (reencode_string): Declare static.
7981
7982         * res.c (registered_specs): Declare static.
7983
7984         * progress.c (current_impl_locked): Declare static.
7985
7986         * log.c (flush_log_p): Declare static.
7987         (needs_flushing): Ditto.
7988
7989         * http.c (digest_authentication_encode): Declare static.
7990
7991         * html-url.c (init_interesting): Declare static.
7992
7993         * host.c (host_name_addresses_map): Declare static.
7994
7995         * cookies.c (find_matching_chains): Declare static.
7996
7997         * ftp-ls.c (ftp_parse_vms_ls): Warn about the memory leak
7998         indicated by lint.
7999
8000         * utils.c (path_simplify): Remove unused variable STUB_CHAR.
8001
8002         * host.c (address_list_set_faulty): Document that INDEX is
8003         currently unused.
8004
8005         * url.c (rewrite_shorthand_url): Remove unused variable PATH.
8006
8007 2001-12-08  Hrvoje Niksic  <hniksic@arsdigita.com>
8008
8009         * version.c: Wget 1.8-pre2 is released.
8010
8011 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8012
8013         * progress.c (progress_handle_sigwinch): Set up the signal again.
8014
8015         * utils.c: Include <sys/termios.h>, where Solaris defines
8016         TIOCGWINSZ.
8017
8018         * progress.c (bar_create): Don't use the last column on the screen.
8019         (create_image): Pad ETA to constant size.  Pad SIZE to nine digits
8020         only until it exceeded them.
8021
8022 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8023
8024         * version.c: Wget 1.8-pre1 is released.
8025
8026 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8027
8028         * progress.c (progress_create): Make sure that, when the output is
8029         redirected, the progress implementation gets changed to the
8030         fallback one.
8031         (bar_set_params): Set current_impl_locked to 1 when "force" is
8032         specified.
8033         (progress_create): Don't change the progress implementation if
8034         current_impl_locked is non-zero.
8035
8036         * main.c (redirect_output_signal): Call
8037         progress_schedule_redirect.
8038
8039         * progress.c (progress_schedule_redirect): New function.
8040
8041 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8042
8043         * log.c (logvprintf): Restructure to allow being called multiple
8044         times.
8045         (logprintf): Call logvprintf in a loop.
8046         (debug_logprintf): Ditto.
8047
8048 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8049
8050         * gen_sslfunc.c (ssl_init_prng): Allow the user to disable EGD by
8051         setting egd_file it to empty string.
8052
8053         * main.c (main): Change the option name from --sslegdsock to
8054         --egd-file.
8055
8056 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8057
8058         * gen_sslfunc.c (ssl_init_prng): Make the printed message
8059         translatable.
8060
8061 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8062
8063         * url.c (scheme_disable): New function.
8064
8065         * main.c (main): Call ssl_init_prng from here rather than from
8066         init_ssl, so that it has a chance to disable support for https
8067         before a URL has been resolved.
8068
8069         * gen_sslfunc.c (ssl_init_prng): Seed with rand() if all else
8070         failed.
8071         (ssl_init_prng): Disable support for https if seeding the PRNG
8072         fails.
8073
8074 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
8075
8076         * utils.c (read_whole_line): Handle lines beginning with \0.
8077
8078 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
8079
8080         * recur.c (convert_all_links): Guard against duplicates in
8081         downloaded_html_files.
8082         (register_download): Don't invalidate similar-looking URLs.
8083         (match_except_index): New function.
8084
8085 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
8086
8087         * utils.c (path_simplify): Document with test cases.
8088
8089 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
8090
8091         * gen_sslfunc.c: Ditto.
8092
8093         * rbuf.c: Include <string.h>.
8094
8095 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
8096
8097         * recur.c (retrieve_tree): Check whether the URL was already
8098         downloaded before downloading it again.
8099         (descend_child_p): Renamed to download_child_p.
8100         (register_download): When one URL is downloaded to a file already
8101         "owned" by another URL, delete all references that map any URL to
8102         that file.
8103         (register_delete_file): New function.
8104         (retrieve_tree): Use it after deleting a file.
8105
8106         * url.c (url_parse): Re-canonicalize the URL also if the path is
8107         empty, so that e.g. "http://www.server.com" ->
8108         "http://www.server.com/".
8109         (lowercase_str): Use ISUPPER instead of !ISLOWER.
8110
8111         * retr.c (retrieve_url): Use the canonical URL form when calling
8112         register_download().
8113
8114 2001-12-04  Ian Abbott <abbotti@mev.co.uk>
8115
8116         * snprintf.c (dopr): Use `unsigned int' as the second argument to
8117         va_arg when casting to `unsigned short' is intended.
8118
8119 2001-12-04  Herold Heiko  <Heiko.Herold@previnet.it>
8120
8121         * gen_sslfunc.c: on windows provide ssl crypto random
8122           initialization through RAND_screen(); could possibly
8123           be not enough for strong ssl communication (see the
8124           relevant manual page from the openssl package).
8125
8126 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
8127
8128         * url.c (local_quote_string): Reenable quoting of question marks,
8129         but only when `--html-extension' is used.
8130
8131 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
8132
8133         * version.c: Wget 1.8-beta3 is released.
8134
8135 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
8136
8137         * snprintf.c (dopr): Cast the result of va_arg to short int and
8138         short unsigned int where these types are expected to be used.
8139
8140 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
8141
8142         * snprintf.c (dopr): Replace `short int' and `unsigned short int'
8143         with `int' when using it as the second argument to `va_arg'.
8144
8145 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
8146
8147         * host.c (address_list_new_one): New function.
8148         (lookup_host): Use it.
8149
8150 2001-12-03  Andre Majorel  <amajorel@teaser.fr>
8151
8152         * host.c (lookup_host): Don't initialize TMPSTORE directly because
8153         it's not legal C.
8154
8155 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
8156
8157         * ftp-basic.c (ftp_port): Don't return HOSTERR if we fail getting
8158         the socket data.
8159
8160         * ftp.c: Ditto.
8161
8162         * http.c: No need to declare h_errno.
8163
8164         * host.c: Declare h_errno.
8165
8166 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
8167
8168         * utils.c (file_merge): If BASE doesn't contain a slash, just
8169         return a copy of FILE.
8170
8171 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
8172
8173         * version.c: Wget 1.8-beta2 is released.
8174
8175 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8176
8177         * ftp.c (getftp): When PWD fails, assume "/".
8178
8179         * ftp-basic.c (ftp_syst): Fix indentation.
8180
8181 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8182
8183         * url.c (get_urls_file): If opt.base_href is specified, merge each
8184         URL with the base.
8185
8186 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8187
8188         * main.c (print_help): Don't document the removed `-nh'.
8189
8190 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8191
8192         * url.c (url_full_path): Document better.
8193
8194         * http.c (gethttp): Use the full path when creating digest
8195         authorization.
8196
8197 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8198
8199         * cookies.c (path_matches): Return 0 if PREFIX doesn't begin with
8200         '/'.
8201
8202 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8203
8204         * cookies.c (path_matches): FULL_PATH doesn't begin with '/', but
8205         PREFIX does.
8206
8207 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8208
8209         * cookies.c (check_domain_match): Reimplement to match Netscape's
8210         "preliminary specification" for cookies.
8211
8212 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8213
8214         * url.c (replace_attr_refresh_hack): New function.
8215         (convert_links): Call replace_attr_refresh_hack for Refresh
8216         links.  It will add the "TMOUT; URL=" junk before the link.
8217
8218         * html-url.c (collect_tags_mapper): Set ID to the ID of the
8219         "content" attribute, not "http-equiv".
8220         (collect_tags_mapper): Don't use OFFSET to hack the raw_* values;
8221         instead, store the information that this entry belongs to a
8222         "refresh" link.
8223
8224 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8225
8226         * version.c: Wget 1.8-beta1 is released.
8227
8228 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
8229
8230         * recur.c (retrieve_tree): Allow -p retrievals to exceed maximum
8231         depth by more than one.
8232
8233 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
8234
8235         * retr.c (retrieve_url): Don't allow more than 20 redirections.
8236
8237 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
8238
8239         * recur.c (retrieve_tree): Skip the non-inline entries when
8240         enqueuing the children of a leaf HTML node in -p mode.
8241         (descend_url_p): Ignore opt.no_parent when in -p mode and UPOS is
8242         "inline".
8243
8244         * html-url.c (get_urls_html): Don't accept dash_p_leaf_HTML.
8245         (collect_tags_mapper): When an entry is "inline", mark it as such.
8246
8247         * recur.c (descend_url_p): Fix test when checking for
8248         acceptance/rejection rules.
8249
8250 2001-10-31 Daniel BODEA <dali@dali-designs.com>
8251
8252         * netrc.c (search_netrc): When slack_default is 0, still look for
8253         an account with matching password, just not the "default account".
8254         HTTP Authorization using .netrc should now work as expected.
8255
8256 2001-11-30  T. Bharath  <TBharath@responsenetworks.com>
8257
8258         * http.c (persistent_available_p): Call SHUTDOWN_SSL if
8259         test_socket_open fails.
8260
8261 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
8262
8263         * progress.c (display_image): Just print one CR to reset the
8264         cursor position.
8265
8266 2001-11-30  Christian Fraenkel  <c.fraenkel@gmx.net>
8267
8268         * init.c: New command `ssl_egd_sock'.
8269
8270         * main.c (main): New option `--sslegdsock'.
8271
8272         * gen_sslfunc.c (ssl_init_prng): Seed the RNG using EGD.
8273
8274 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8275
8276         * cmpt.c (memmove): Include a simple memmove implementation.
8277
8278 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8279
8280         * headers: Guard against header files being included twice.
8281
8282 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8283
8284         * gen-md5.c: Use unsigned char * as the buffer argument to
8285         gen_md5_update.
8286
8287 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8288
8289         * connect.h: Declare select_fd.
8290
8291 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8292
8293         * recur.c (descend_url_p): When resolving no_parent, compare with
8294         start_url, not parent url.  Otherwise link from /a/b/ to /a/c/
8295         wouldn't be followed, although the download started from /a/.
8296
8297 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
8298
8299         * config.h.ms, mswindows.h: defined HAVE_ISATTY, use _isatty for
8300         MS VC; somebody with Borland compiler please check and provide
8301         patch if possible;
8302
8303         * cmpt.c: provided a usleep emulation.
8304
8305 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8306
8307         * host.c (address_list_new): Initialize al->faulty.
8308
8309 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8310
8311         * http.c (http_process_range): Accept the broken output of
8312         "JavaWebServer/1.1.1".
8313
8314 2001-11-28  Hrvoje Niksic  <hniksic@arsdigita.com>
8315
8316         * progress.c (dot_set_params): If PARAMS is unspecified, use
8317         dot_style, if available.
8318
8319         * init.c: Ditto.
8320
8321         * main.c (main): Resurect --dot-style.
8322
8323         * progress.c (dot_finish): Print the quantity if we're left at the
8324         beginning of a row.
8325
8326 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8327
8328         * cmpt.c (random): Removed.
8329
8330         * retr.c (sleep_between_retrievals): Use the more portable rand()
8331         instead of random().
8332
8333 2001-11-27  Ian Abbott <abbotti@mev.co.uk>
8334
8335         * retr.c (retrieve_from_file): Initialize `new_file' to NULL to
8336         prevent seg fault.
8337
8338 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8339
8340         * connect.c (connect_to_many): Use address_list_set_faulty to
8341         prevent the faulty address from being reused.
8342
8343         * host.c (address_list_set_faulty): New function.
8344         (address_list_get_bounds): New function, instead of
8345         address_list_count.
8346
8347 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8348
8349         * url.c (convert_links): Don't translate %d-%d.
8350
8351         * main.c (print_help): Remove stray HAVE_RANDOM code.
8352
8353 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8354
8355         * ftp.c (getftp): Improve output after sending PASV.  Don't
8356         attempt to "look up" the IP address we already know; call
8357         connect_to_one directly.
8358
8359 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8360
8361         * progress.c: Change the default progress implementation to "bar".
8362
8363 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8364
8365         * progress.c (bar_create): Print two newlines.
8366
8367 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8368
8369         * cmpt.c (random): New function, a simple-minded replacement for
8370         random() on systems that don't have it.
8371
8372 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8373
8374         * config.h.in: Put a HAVE_USLEEP stub.
8375
8376         * cmpt.c (usleep): Replacement implementation of usleep using
8377         select.
8378
8379         * init.c: New option init_rate.
8380
8381         * main.c (main): New option --limit-rate.
8382
8383         * retr.c (limit_bandwidth): New function.
8384         (get_contents): Call it to limit the bandwidth used when
8385         downloading.
8386
8387         * progress.c (dot_update): Would print the wrong download speed on
8388         rows other than the first one when the download was continued.
8389         (dot_finish): Ditto.
8390
8391 2001-11-26  Ian Abbott <abbotti@mev.co.uk>
8392
8393         * http.c (gethttp): fix undeclared variable 'err' when compiled
8394         with HAVE_SSL.
8395
8396 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8397
8398         * progress.c: Don't allocate new timers; use the timing data
8399         propagated from the caller.
8400
8401         * retr.c (get_contents): Allocate and use a timer.
8402
8403 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8404
8405         * http.c (last_host_ip): Made into an address_list.
8406         (invalidate_persistent): Release pc_last_host_ip.
8407         (register_persistent): Use lookup_host.
8408         (persistent_available_p): Check for equality of hosts using
8409         address_list_match_all.  Call address_list_release.
8410         (http_cleanup): New function.
8411
8412         * ftp.c (getftp): Use lookup_host and connect_to_many.
8413
8414         * http.c (gethttp): Use lookup_host and connect_to_many.
8415
8416         * connect.c (make_connection): Removed.
8417         (connect_to_one): New function.
8418         (connect_to_many): Ditto.
8419         (set_connection_host_name): Ditto.
8420
8421         * host.c (lookup_host): New function; new return type.
8422         (address_list_new): New function.
8423         (address_list_count): Ditto.
8424         (address_list_copy_one): Ditto.
8425         (address_list_delete): Ditto.
8426         (address_list_release): Ditto.
8427         (pretty_print_address): Ditto.
8428
8429 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8430
8431         * recur.c (retrieve_tree): In case of followed redirection,
8432         blacklist the pre-redirection URL.
8433
8434 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8435
8436         * recur.c (descend_redirect_p): New function.
8437         (retrieve_tree): Make sure redirections are not blindly followed.
8438
8439 2001-11-04  Alan Eldridge  <alane@geeksrus.net>
8440
8441         * config.h.in: added HAVE_RANDOM.
8442
8443         * options.h: added random_wait to struct options.
8444
8445         * main.c (print_help [HAVE_RANDOM], main): added arg parsing, help
8446         for --random-wait.
8447
8448         * retr.c (sleep_between_retrievals) [HAVE_RANDOM]: added
8449         implementation of random wait times.
8450
8451         * init.c (commands): added "randomwait" keyword.
8452
8453 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
8454
8455         * recur.c (descend_url_p): Be more conservative with blacklisting
8456         URLs.
8457         (convert_all_links): Print how many files have been converted, and
8458         how long it took.
8459
8460         * progress.c (create_image): Place the number of downloaded bytes
8461         right after the progress bar.
8462
8463         * utils.c (suffix): Return a pointer into the string.
8464
8465 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
8466
8467         * url.c (convert_links): Handle CO_NULLIFY_BASE.
8468
8469         * recur.c (retrieve_tree): Ignore download-ignorable children.
8470         (convert_all_links): Specify CO_NULLIFY_BASE when link_base_p.
8471
8472         * html-url.c (handle_link): Return the newly created urlpos.
8473         (collect_tags_mapper): When dealing with BASE, store the base
8474         reference and mark it as download-ignorable.
8475
8476 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
8477
8478         * url.c (convert_links): Attempt to quote '?' as "%3F" when
8479         linking to local files.  Given up on the attempt, as it breaks
8480         local browsing.
8481
8482 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
8483
8484         * main.c (private_initialize): Removed.
8485         (main): Don't call private_initialize.
8486
8487         * http.c: Call lookup_host.
8488
8489         * host.c (host_init): Removed.
8490         (add_host_to_cache): Initialize host_name_address_map here, on
8491         demand.
8492         (ngethostbyname): Commented out.
8493
8494         * connect.c (make_connection): Remove dead code; use lookup_host.
8495
8496         * host.c (store_hostaddress): Renamed to lookup_host and reversed
8497         the args.
8498         Removed host_address_name_map and host_slave_master_map.
8499
8500 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
8501
8502         * progress.c (dot_create): Align the "[ skipping ... ]" string
8503         with the dots.
8504
8505         * retr.c (rate): Split into two functions: calc_rate and
8506         retr_rate.
8507
8508         * progress.c (create_image): Draw a dummy progress bar even when
8509         total size is unknown.
8510         (display_image): Place the text cursor at the end of the "image".
8511
8512 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
8513
8514         * url.c (reencode_string): Use unsigned char, not char --
8515         otherwise the hex digits come out wrong for 8-bit chars such as
8516         nbsp.
8517         (lowercase_str): New function.
8518         (url_parse): Canonicalize u->url if needed.
8519         (get_urls_file): Parse each URL, and return only the valid ones.
8520         (free_urlpos): Call url_free.
8521         (mkstruct): Add :port if the port is non-standard.
8522         (mkstruct): Append the query string to the file name, if any.
8523         (urlpath_length): Use strpbrk_or_eos.
8524         (uri_merge_1): Handle the cases where LINK is an empty string,
8525         where LINK consists only of query, and where LINK consists only of
8526         fragment.
8527         (convert_links): Count and report both kinds of conversion.
8528         (downloaded_file): Use a hash table, not a list.
8529         (downloaded_files_free): Free the hash table.
8530
8531         * retr.c (retrieve_from_file): Ditto.
8532
8533         * main.c (main): Call either retrieve_url or retrieve_tree
8534         for each URL, not both.
8535
8536         * retr.c (register_all_redirections): New function.
8537         (register_redirections_mapper): Ditto.
8538         (retrieve_url): Register the redirections.
8539         (retrieve_url): Make the string "Error parsing proxy ..."
8540         translatable.
8541
8542         * res.c (add_path): Strip leading slash from robots.txt paths so
8543         that the path representations are "compatible".
8544         (free_specs): Free each individual path, too.
8545         (res_cleanup): New function.
8546         (cleanup_hash_table_mapper): Ditto.
8547
8548         * recur.c (url_queue_new): New function.
8549         (url_queue_delete): Ditto.
8550         (url_enqueue): Ditto.
8551         (url_dequeue): Ditto.
8552         (retrieve_tree): New function, replacement for recursive_retrieve.
8553         (descend_url_p): New function.
8554         (register_redirection): New function.
8555
8556         * progress.c (create_image): Cosmetic changes.
8557
8558         * init.c (cleanup): Do all those complex cleanups only if
8559         DEBUG_MALLOC is defined.
8560
8561         * main.c: Removed --simple-check and the corresponding
8562         simple_host_check in init.c.
8563
8564         * html-url.c (handle_link): Parse the URL here, and propagate the
8565         parsed URL to the caller, who would otherwise have to parse it
8566         again.
8567
8568         * host.c (xstrdup_lower): Moved to utils.c.
8569         (realhost): Removed.
8570         (same_host): Ditto.
8571
8572 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
8573
8574         * utils.c (path_simplify): Preserver the (non-)existence of
8575         leading slash.  Return non-zero if changes were made.
8576
8577 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
8578
8579         * progress.c (bar_update): Don't modify bp->total_length if it is
8580         zero.
8581
8582 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
8583
8584         * retr.c (retrieve_url): When the redirection URL doesn't parse,
8585         print the correct error message rather than "UNKNOWN".
8586
8587 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
8588
8589         * progress.c (bar_finish): If the timer didn't record any time
8590         since the download beginning, fake 1ms.
8591
8592 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
8593
8594         * recur.c (recursive_retrieve): Fix typo.
8595
8596 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
8597
8598         * progress.c (create_image): Don't translate "%ld ".
8599
8600 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
8601
8602         * progress.c (bar_set_params): Allow the user to force the use of
8603         the bar.
8604
8605 2001-11-23  Lemble Gregory  <gregory.lemble@st.com>
8606
8607         * gen_sslfunc.c (ssl_init_prng): New function; seed the SSL RNG.
8608
8609 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
8610
8611         * progress.c: Renamed dp_* functions to dot_* for greater clarity
8612         and consistency with bar_*.
8613         (print_download_speed): Get rid of the unneeded '@' character.
8614         (create_image): Fix download rate geometry.
8615
8616         * progress.c (print_elapsed): Remove spurious space.
8617         (print_elapsed): Renamed to print_download_speed, since that's
8618         what it does.
8619
8620 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
8621
8622         * progress.c (bar_update): If the downloaded amount becomes larger
8623         than the expected amount, adjust the expected amount accordingly.
8624
8625 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
8626
8627         * utils.c (determine_screen_width): New function.
8628
8629         * main.c (main): New option `--progress=TYPE'.
8630         (main): Implement compatibility with the old option `--dot-style'.
8631
8632         * init.c: Removed cmd_spec_dotstyle -- that logic is now in
8633         dp_set_params.
8634         (cmd_spec_progress): New function.
8635
8636         * retr.c (get_contents): Use the progress_* functions instead of
8637         the old show_progress().
8638         (show_progress): Removed.
8639         (rate): Print "xxxx.xx K/s" instead of "KB/s".  Ditto for MB/s,
8640         etc.
8641
8642         * progress.c (set_progress_implementation): New function.
8643         (valid_progress_implementation_p): Ditto.
8644         (progress_create): Ditto.
8645         (progress_update): Ditto.
8646         (progress_finish): Ditto.
8647         (dp_create): Ditto.
8648         (dp_update): Ditto.
8649         (dp_finish): Ditto.
8650         (dp_set_params): Ditto.
8651         (print_elapsed): Ditto.
8652
8653 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
8654
8655         * retr.c (show_progress): Use it.
8656
8657         * log.c (log_set_flush): New function.
8658
8659 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
8660
8661         * utils.c (path_simplify): Don't remove trailing slashes.
8662
8663         * ftp.c (ftp_get_listing): Use it.
8664
8665         * utils.c (file_merge): New function.
8666
8667         * url.c (opt_url): Removed.
8668
8669         * recur.c (recursive_retrieve): Inline "opt_url" logic.
8670
8671         * main.c (main): Use xfree(), not free().
8672
8673         * url.c (rewrite_url_maybe): Renamed to rewrite_shorthand_url.
8674
8675         * ftp.c (ccon): Move `ccon' typedef here, since it's only used
8676         internally.
8677
8678         * config.h.in: Include a stub for HAVE_STRPBRK.
8679
8680         * cmpt.c (strpbrk): Include a replacement for systems without
8681         strpbrk().
8682
8683         * ftp.c: Use url_set_dir and url_set_file when modifying the URL.
8684
8685         * url.c (url_set_dir): New function.
8686         (url_set_file): Ditto.
8687
8688         * ftp-basic.c (ftp_process_type): Process FTP type here; the URL
8689         parser makes the URL "params" available, so we can do that in this
8690         function.
8691
8692         * retr.c: Ditto.
8693
8694         * ftp.c: Ditto; pass the local file information in `ccon'.
8695
8696         * http.c: Get rid of the ugly kludge that had URL being replaced
8697         with the proxy URL when proxy retrieval was requested.  Use a
8698         separate parameter to http_loop and gethttp for the proxy URL.
8699
8700         * http.c: Changed to reflect the fact that local file, proxy, and
8701         referer information are no longer stored in struct url.  The local
8702         file information is passed in `struct hstat' now.
8703
8704         * url.c: Reworked URL parsing to be more regular.  Reencode the
8705         URL using reencode_string.
8706         Removed non-URL-related information from struct url.  This
8707         includes fields `proxy', `local', and `referer'.
8708
8709 2001-11-22  Jochen Hein  <jochen@jochen.org>
8710
8711         * main.c (main): Split the copyright notice for easier
8712         translation.
8713
8714 2001-08-21  Dave Turner <dct25@hermes.cam.ac.uk>
8715
8716         * ftp-basic.c (ftp_size): New function to send non-standard SIZE
8717           command to server to request file size.
8718         * ftp.h (ftp_size): Export it.
8719         * ftp.c (getftp): Use new ftp_size function if restoring
8720           transfer of a file with unknown size.
8721
8722 2001-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
8723
8724         * url.c (parseurl): Don't depend on the now-obsolete TYPE.
8725
8726 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8727
8728         * url.c (getproxy): Handle URL shorthands.
8729
8730 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8731
8732         * main.c: Remove --wait / --waitretry backwards compatibility
8733         code.
8734
8735 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8736
8737         * main.c (main): Use it.
8738
8739         * url.c (rewrite_url_maybe): New function.
8740
8741 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
8742
8743         * url.c: Clean up handling of URL schemes.
8744
8745 2001-05-13  Hrvoje Niksic  <hniksic@arsdigita.com>
8746
8747         * url.c: Get rid of `protostrings'.
8748         (skip_proto): Don't use protostrings.
8749         (has_proto): Ditto.
8750
8751 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8752
8753         * Makefile.in: Conditionally compile getopt.o.
8754
8755 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8756
8757         * md5.h: Renamed to gnu-md5.h.
8758
8759         * md5.c: Renamed to gnu-md5.c.
8760
8761         * http.c: Ditto.
8762
8763         * ftp-opie.c: Use the new macros.
8764
8765         * sysdep.h: Define md5-related macros.
8766
8767         * config.h.in: Define HAVE_SOLARIS_MD5 or HAVE_BUILTIN_MD5
8768         depending on which md5 implementation is used.
8769
8770 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8771
8772         * res.c (res_register_specs): Initialize OLD and HP_OLD to appease
8773         the compiler.
8774
8775 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8776
8777         * http.c (gethttp): Print the whole response line when printing
8778         headers is requested.
8779
8780 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8781
8782         * res.c: New file.  Implement all RES-related code here.
8783
8784 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8785
8786         * version.c: Wget 1.7.1 is released.
8787
8788 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
8789
8790         * headers.c (header_extract_number): Ignore trailing whitespace.
8791
8792 2001-08-24  Ian Abbott  <abbotti@mev.co.uk>
8793
8794         * html-url.c (collect_tags_mapper): Fix bug converting links
8795         with -k option for tags with multiple link attributes by
8796         handling links in the order they appear.
8797
8798 2001-08-15  Ian Abbott  <abbotti@mev.co.uk>
8799
8800         * ftp.c (ftp_loop_internal): Avoid a potential buffer overflow in
8801           the call to the 'rate' function by moving it past the error
8802           checking for the 'getftp' function return value.
8803
8804 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
8805
8806         * html-parse.c (advance_declaration): Use 0x22 instead of '"' or
8807         '\"'.  Different compilers' assert macros are broken in different
8808         ways.
8809
8810 2001-09-29  Christian Fraenkel  <c.fraenkel@gmx.net>
8811
8812         * http.c (gethttp): print debug output for errors occuring during
8813         the ssl handshake.
8814
8815 2001-11-16  Chris Seawood  <cls@seawood.org>
8816
8817         * init.c: Ditto.
8818
8819         * host.c: Ditto.
8820
8821         * connect.c: Ditto.
8822
8823         * sysdep.h: Support compilation under BEOS.
8824
8825 2001-06-08  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
8826
8827         * url.c (url_equal): Fix a memory leak when parseurl returns an
8828         error on the second URL. Also, since url_equal is not used at the
8829         moment, do not compile it.
8830
8831         * url.h: Ditto for the prototype of url_equal.
8832
8833 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
8834
8835         * html-parse.c (map_html_tags): Support XML-style empty tags.
8836
8837 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8838
8839         * wget.h (DO_REALLOC_FROM_ALLOCA): Check for do_realloc_newsize in
8840         loop condition because we're no longer setting SIZEVAR here.
8841
8842 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8843
8844         * wget.h (DO_REALLOC_FROM_ALLOCA): Set SIZEVAR after the memcpy()
8845         call because it needs the old value.
8846
8847 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8848
8849         * cookies.c (ATTR_NAME_CHAR): Allow almost any character to be in
8850         an attribute name.
8851
8852 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
8853
8854         * url.c (url_filename): Make sure that slashes that sneak in to
8855         u->file via query string get protected.
8856         (file_name_protect_query_string): New function.
8857
8858 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
8859
8860         * recur.c (recursive_retrieve): Also check undesirable_urls with
8861         canonicalized URL.
8862
8863 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
8864
8865         * http.c (gethttp): Search `.netrc' with real host, not the proxy
8866         one.
8867
8868 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
8869
8870         * sysdep.h (MAP_FAILED): Provide MAP_FAILED for systems that don't
8871         define it.
8872
8873 2001-06-09  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8874
8875         * ftp.h: Provide correct prototype for ftp_parse_ls().
8876
8877 2001-06-04  Hrvoje Niksic  <hniksic@arsdigita.com>
8878
8879         * version.c: Wget 1.7 is released.
8880
8881 2001-06-03  Karl Eichwalder  <ke@suse.de>
8882
8883         * ftp-ls.c (ftp_parse_ls): Fix typo.
8884
8885 2001-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
8886
8887         * all: Update copyright information.
8888
8889 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8890
8891         * http.c (gethttp): Indicate that the continued download failed
8892         for *this* file.
8893
8894 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8895
8896         * version.c: Wget 1.7-pre1 is released.
8897
8898 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
8899
8900         * version.c: Updated version to 1.7-pre1.
8901
8902 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
8903
8904         * gen_sslfunc.c: Don't include <sys/time.h> directly.
8905
8906 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
8907
8908         * http.c (gethttp): Use real URL data for cookies, not the proxy
8909         stuff.
8910
8911 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
8912
8913         * main.c (print_help): Document `--no-http-keep-alive'.
8914
8915         * utils.c (numdigit): Handle negative numbers *correctly*.
8916
8917         * hash.c (make_nocase_string_hash_table): Use term "nocase" rather
8918         than the confusing "unsigned".
8919
8920         * utils.c (string_set_contains): Renamed from string_set_exists.
8921
8922         * hash.c (hash_table_contains): Renamed from hash_table_exists.
8923
8924         * cookies.c: Move case-insensitive hash tables to hash.c.
8925
8926 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
8927
8928         * http.c (gethttp): Before concluding that the file is already
8929         fully retrieved, make sure that the file existed and `Range' was
8930         actually requested.
8931
8932 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
8933
8934         * cookies.c (eliminate_dups): New function.
8935         (build_cookies_request): Use it.
8936         (build_cookies_request): Set chain_store_size after reallocating
8937         all_chains.
8938         (check_domain_match): Annotated for easier future debugging.
8939         (store_cookie): In the debug message, print whether the cookie is
8940         permanent.
8941
8942 2001-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
8943
8944         * http.c (http_loop): Reset no_truncate before deciding whether to
8945         set it.
8946         (gethttp): Further clarify "-c conflicts with existing file" error
8947         message, based on input from Herold Heiko.
8948
8949 2001-05-07  Hrvoje Niksic  <hniksic@arsdigita.com>
8950
8951         * http.c (http_loop): If restval is set, set no_truncate to 1
8952         unconditionally.
8953
8954 2001-05-02  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
8955
8956         * ftp-ls.c (ftp_parse_winnt_ls): Assure months are being correctly
8957         converted. Pointed out by <Stefan.Weil@de.heidelberg.com>.
8958         (ftp_parse_vms_ls): Ditto.
8959
8960 2001-04-30  Hrvoje Niksic  <hniksic@arsdigita.com>
8961
8962         * init.c (cmd_address): Zero SIN before using it; apparently
8963         needed on *BSD.
8964
8965 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8966
8967         * ftp.c (ftp_loop_internal): Don't set NO_TRUNCATE if the file is
8968         empty.
8969
8970 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
8971
8972         * main.c (main): Make `--cookies' respect its argument.
8973
8974 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
8975
8976         * main.c (main): Removed undocumented option `--email-address'.
8977
8978         * netrc.c: Use the latest read_whole_line.
8979
8980         * init.c (defaults): Set opt.ftp_pass to "-wget@".
8981
8982         * mswindows.c (pwd_cuserid): Ditto.
8983
8984         * utils.c (pwd_cuserid): Removed.
8985
8986         * host.c (ftp_getaddress): Removed.
8987
8988 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
8989
8990         (http_loop): Allocate space for filename_plus_orig_suffix with
8991         alloca; this is more efficient and removes the need to free it
8992         before each and every return.
8993
8994 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
8995
8996         * http.c (gethttp): Return RETRUNNEEDED when the retrieval is
8997         unneeded because the file is already there and fully downloaded,
8998         and -c is specified.
8999         (http_loop): Handle RETRUNNEEDED.
9000
9001         * wget.h (uerr_t): New value RETRUNNEEDED.
9002
9003         * http.c (http_loop): Set no_truncate for files that both exist
9004         and are non-empty.
9005         (gethttp): Consider the download finished when restval >= contlen,
9006         not only when restval==contlen.
9007         (gethttp): Handle redirection before giving up due to -c.
9008         (gethttp): Clarify error message which explains that -c will not
9009         truncate the file.
9010         (gethttp): When returning CONTNOTSUPPORTED, don't forget to free
9011         the stuff that needs freeing and release the socket.
9012
9013 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
9014
9015         * main.c (print_help): Wget booleans accept "off", not "no".
9016
9017 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
9018
9019         * http.c (http_loop): If allow_cache is zero, always disable
9020         caching, not only when retrieving through proxy.
9021
9022         * init.c: Ditto.
9023
9024         * options.h (struct options): Rename proxy_cache to allow_cache.
9025
9026 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
9027
9028         * http.c (mktime_from_utc): Improve documentation.
9029         (http_atotm): Put format strings into a separate array.
9030
9031 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
9032
9033         * safe-ctype.h: Instead of throwing #error when isalpha is
9034         defined, redefine it to something that will throw a compile-time
9035         error if actually *used*.  Do the same for the rest of the
9036         standard C macros.
9037
9038 2001-04-26  Hrvoje Niksic  <hniksic@arsdigita.com>
9039
9040         * url.c (getproxy): Ignore empty proxy vars.
9041
9042 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
9043
9044         * http.c (http_loop): Would load cookies every time.
9045
9046         * cookies.c (load_cookies): Handle cookies whose values contain
9047         embedded spaces.
9048
9049 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
9050
9051         * utils.c: Define each DIGITS_* in one line.
9052
9053 2001-04-25  Roger L. Beeman  <beeman@cisco.com>
9054
9055         * http.c (http_atotm): Initialize t.tm_isdst to 0.
9056         (mktime_from_utc): Prevent mktime() from having discontinuities at
9057         DST transition points.
9058
9059 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
9060
9061         * html-url.c (get_urls_html): Fix documentation.
9062
9063 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
9064
9065         * url.c (UNSAFE_CHAR): Reimplement using a static table.
9066         (url_init): Removed.
9067         (init_unsafe_char_table): Removed.
9068
9069 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
9070
9071         * snprintf.c (dopr): Replace ISDIGIT with '0' <= ch && ch <= '9'.
9072
9073 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
9074
9075         * utils.c: Document timer functions.
9076
9077         * retr.c (rate): Use it.
9078         (rate): Print in GB/s if transfer rate exceeds 1 GB/s.
9079
9080         * utils.c (wtimer_granularity): New function.
9081
9082 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
9083
9084         * retr.c (show_progress): Ditto.
9085
9086         * ftp.c (getftp): Ditto.
9087
9088         * http.c (gethttp): Use new timer functions.
9089
9090         * utils.c (wtimer_allocate): New function.
9091         (wtimer_new): Ditto.
9092         (wtimer_delete): Ditto.
9093         (wtimer_reset): Ditto.
9094         (wtimer_elapsed): Ditto.
9095
9096 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
9097
9098         * utils.c (long_to_string): New, faster version.  Favors smaller
9099         numbers; much of the calculation is now done at compile-time.
9100
9101 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
9102
9103         * utils.c (numdigit): Handle negative numbers.
9104
9105 2001-04-23  Hrvoje Niksic  <hniksic@arsdigita.com>
9106
9107         * retr.c (show_progress): Print the download rate even when the
9108         percentages are not available.
9109
9110 2001-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
9111
9112         * ftp.c (getftp): Adjust expected_bytes if the length is
9113         authoritative.
9114
9115 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
9116
9117         * url.c: Don't declare `construct'.
9118
9119         * hash.c (grow_hash_table): Speed up rehashing; inline storing of
9120         mappings to new locations.
9121         (hash_table_new): Make resize_threshold a field in the hash table,
9122         so we don't have to recalculate it in each hash_table_put.
9123         (grow_hash_table): Update resize_threshold.
9124         (MAX): Remove unused macro.
9125         (prime_size): Made static.
9126
9127 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
9128
9129         * retr.c (retrieve_url): Call uri_merge, not url_concat.
9130
9131         * html-url.c (collect_tags_mapper): Call uri_merge, not
9132         url_concat.
9133
9134         * url.c (mkstruct): Use encode_string instead of xstrdup followed
9135         by URL_CLEANSE.
9136         (path_simplify_with_kludge): Deleted.
9137         (contains_unsafe): Deleted.
9138         (construct): Renamed to uri_merge_1.
9139         (url_concat): Renamed to uri_merge.
9140
9141 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
9142
9143         * url.c (str_url): Use encode_string instead of the unnecessary
9144         CLEANDUP.
9145         (encode_string_maybe): New function, returns input string if no
9146         encoding is needed.
9147         (encode_string): Call encode_string_maybe to do the dirty work,
9148         xstrdup if no work needed.
9149
9150 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
9151
9152         * wget.h (XDIGIT_TO_xchar): Define here.
9153
9154         * url.c (decode_string): Use new name.
9155         (encode_string): Ditto.
9156
9157         * http.c (XDIGIT_TO_xchar): Rename HEXD2asc to XDIGIT_TO_xchar.
9158         (dump_hash): Use new name.
9159
9160         * wget.h: Rename ASC2HEXD and HEXD2ASC to XCHAR_TO_XDIGIT and
9161         XDIGIT_TO_XCHAR respectively.
9162
9163 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
9164
9165         * init.c: Include cookies.h.
9166
9167         * cookies.h: Declare cookies_cleanup.
9168
9169         * cookies.c (check_domain_match): Remove unused variable.
9170         (save_cookies): Remove extraneous argument from debug statement.
9171
9172         * host.c (same_host): Don't call skip_url.
9173
9174         * url.c (skip_url): Removed.  Removed its calls from various
9175         functions in url.c.
9176
9177 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
9178
9179         * cookies.c (unsigned_string_hash): Use the new code in
9180         string_hash as reference.
9181
9182         * hash.c (hash_table_map): Allow deletion and change of the
9183         element processed by MAPFUN.
9184         (string_hash): Use the function from glib.
9185
9186 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
9187
9188         * config.h.in: Include #undef stub.
9189
9190         * hash.c (hash_table_remove): Rewrite to actually clear deleted
9191         entries instead of just marking them as deleted.
9192
9193 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
9194
9195         * hash.h: Declare hash_table_get_pair and hash_table_count.
9196
9197 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
9198
9199         * cookies.c: Declare http_atotm.
9200
9201 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
9202
9203         * ftp-ls.c (ftp_parse_unix_ls): Use octal constants for
9204         permissions.  A compiler that doesn't accept octal constants is
9205         seriously broken and shouldn't be used -- octal constants were
9206         present in K&R C!
9207
9208 2001-01-20  Karl Eichwalder  <ke@suse.de>
9209
9210         * Makefile.in: Provide and use DESTDIR according to the Coding
9211         Standards.
9212
9213 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
9214
9215         * ftp-ls.c (ftp_parse_vms_ls): Make seconds optional in time
9216         specification.
9217
9218 2001-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
9219
9220         * url.c (parseurl): Don't strip trailing slash when u->dir is "/"
9221         because that strips the *leading* slash, thus forcing relative
9222         FTP retrieval.
9223
9224 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9225
9226         * ftp.c (getftp): Convert initial FTP directory from VMS to UNIX
9227         notation for VMS servers.
9228         (ftp_retrieve_dirs): Do not prepend '/' to f->name when
9229         odir is an empty string.
9230
9231 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9232
9233         * ftp-ls.c (ftp_parse_winnt_ls): Made the fix for AM/PM more
9234         effective. Suggested by Edward J. Sabol.
9235
9236 2001-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
9237
9238         * cookies.c (build_cookies_request): Use and sort cookies from all
9239         matching domains.
9240         (build_cookies_request): Check for duplicates before generating
9241         the `Cookies' header.
9242
9243         * main.c (main): Don't load cookies here.
9244         (main): Make loadcookies and savecookies call the correct command.
9245
9246         * http.c (http_loop): Load cookies on-demand.
9247
9248 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
9249
9250         * http.c (gethttp): Fix indentation of SSL ifdef.
9251
9252 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
9253
9254         * ftp.c (ftp_retrieve_dirs): Don't forcibly prepend "/" to u->dir;
9255         that hack is no longer necessary.
9256         (getftp): Prepend initial directory to *non*-absolute u->dir's.
9257
9258 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
9259
9260         * init.c (cmd_file): New function.
9261         (enable_tilde_expansion): New variable.
9262         (run_wgetrc): Use it.
9263         (cmd_file): Use it.
9264
9265 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
9266
9267         * init.c: Include cookie-related options.
9268
9269         * main.c (main): Include cookie-specific options.
9270         (main): Load cookies before download is finished.
9271         (main): Save cookies when done.
9272
9273         * http.c (gethttp): Process the `Set-Cookie' header.
9274         (gethttp): Include cookies in the response.
9275
9276         * cookies.c: New file.
9277
9278 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
9279
9280         * utils.c (datetime_str): New function.
9281
9282 2001-04-08  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9283
9284         * ftp-ls.c (ftp_parse_winnt_ls): The AM/PM change did assume
9285         12:01PM == 00:01, which was obviously wrong. Taken care of this
9286         anomaly.
9287
9288         * ChangeLog: Removed an excess conflict marker. Reformatted the
9289         entry by Philipp Thomas from 2001-03-09.
9290
9291         * ftp-ls.c (ftp_parse_winnt_ls): Ensure that adjusted PM hours lay
9292         between 0 and 23. Elminate unused variable `sec'.
9293
9294 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
9295
9296         * hash.c (hash_table_count): New function.
9297
9298 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9299
9300         * utils.c (read_file): Cast MAP_FAILED to char *.  Enforced by
9301         Digital Unix cc.
9302
9303 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9304
9305         * config.h.in: Oops, do the namespace tweaks only on systems we
9306         know about.
9307
9308 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9309
9310         * hash.c: Include <string.h>.
9311
9312 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9313
9314         * config.h.in: Define "compilation environment" options that work
9315         under Linux and Solaris.  To be reviewed on other OS'es.
9316
9317 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9318
9319         * http.c (gethttp): Prepend literal newline with `\n\'.
9320
9321 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9322
9323         * sysdep.h: Don't define VERY_LONG_FORMAT.
9324
9325         * utils.c (very_long_to_string): New function.
9326         (legible_very_long): Use it; don't use VERY_LONG_FORMAT.
9327
9328 2001-04-04  Christian Fraenkel  <christian.fraenkel@gmx.net>
9329
9330         * url.c (parse_uname): Would run past the end of the string if the
9331         username was present, but the URL did not contain a slash, e.g.
9332         http://foo:bar@myhost.
9333
9334 2001-04-03  KOJIMA Hajime  <kjm@rins.ryukoku.ac.jp>
9335
9336         * http.c (http_atotm): Use %A instead of %a to match full
9337         weekday.  (On most systems there is no difference.)
9338
9339 2001-04-03  Paul Bludov  <paul@ozero.net>
9340
9341         * mswindows.c (sleep): Use SleepEx() instead of Sleep().
9342         (ws_changetitle): Use alloca() instead of malloc() to avoid memory
9343         leak.
9344         (ws_mypath): Use GetModuleFileName instead of argv[0].
9345         (ws_startup): Use data.wVersion for comparison.
9346
9347 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
9348
9349         * http.c (http_loop): Ditto.
9350
9351         * ftp.c (ftp_loop_internal): Made the check whether to continue
9352         retrieval `-O'-friendly.
9353
9354 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
9355
9356         * netrc.c (parse_netrc): Don't trim the line endings explicitly;
9357         they will be handled as whitespace.
9358         (parse_netrc): Correctly handle lines that end with whitespace.
9359
9360 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
9361
9362         * retr.c (retrieve_url): New variable global_download_count used
9363         to identify first retrieval.
9364
9365         * ftp.c (getftp): Ditto.
9366
9367         * http.c (gethttp): Rewind opt.dfp only on first retrieval.
9368
9369 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
9370
9371         * init.c (cmd_address): Heap-allocate the address that gets stored
9372         to CLOSURE.  Old code would simply assign an address on the stack.
9373
9374 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
9375
9376         * ftp.c (ftp_get_listing): Propagate error status.
9377         (ftp_retrieve_glob): Use it.
9378         (ftp_loop): Ditto.
9379
9380 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
9381
9382         * main.c (main): Add -C to the string that is the third arg to
9383         getopt_long().
9384
9385 2001-04-01  Hrvoje Niksic  <hniksic@arsdigita.com>
9386
9387         * ftp.c (getftp): Don't start the download from scratch if `-c'
9388         was specified, but the file is already fully downloaded.
9389
9390         * http.c (gethttp): Don't truncate a pre-existing file if `-c' was
9391         specified and the server doesn't support continued download.
9392         (gethttp): Don't start the download from scratch if `-c' was
9393         specified, but the file is already fully downloaded.
9394
9395 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
9396
9397         (recursive_retrieve): Don't clear the hash tables at this point at
9398         all; it interferes with the normal operation of register_download.
9399
9400 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
9401
9402         * recur.c (recursive_retrieve): Clear the hash tables only when
9403         they are defined.
9404
9405 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
9406
9407         * http.c (gethttp): Make sure the socket is closed with
9408         CLOSE_INVALIDATE before we have drained the body.
9409
9410 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
9411
9412         * retr.c (retrieve_url): Call register_download() for downloaded
9413         files and register_html() for downloaded HTML files.
9414
9415         * recur.c (register_download): New function; register here that a
9416         file has been downloaded, rather than in recursive_retrieve().
9417         (register_html): New function; enqueue the location of HTML files
9418         here rather than in recursive_retrieve().
9419
9420 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
9421
9422         * main.c (print_help): Use multiple fputs instead of a single ugly
9423         printf().
9424         (main): Consistently assign numbers >128 to options without a
9425         corresponding character.
9426
9427 2001-03-09  Philipp Thomas  <pthomas@suse.de>
9428
9429         * safe-ctype.h: New file. Locale independent ctype.h replacement
9430         taken from libiberty.
9431
9432         * safe-ctype.c: New file. Tables for above.
9433
9434         * Makefile.in: Add safe-ctype$o to OBJS.  Add dependencies for
9435         safe-ctype$o.
9436
9437         * cmpt.c: Remove include of ctype.h. Use ISSPACE instead of
9438         isspace.
9439
9440         * ftp-basic.c: Don't include ctype.h.
9441
9442         * ftp-ls.c: Likewise.
9443
9444         * ftp.c: Likewise.
9445
9446         * headers.c: Likewise.
9447
9448         * host.c: Likewise.
9449
9450         * html-parse.c: Likewise.
9451
9452         * html-url.c: Likewise.
9453
9454         * http.c: Likewise.
9455
9456         * init.c: Likewise.
9457
9458         * main.c: Likewise. Set LC_CTYPE along with LC_MESSAGES.
9459
9460         * netrc.c: Likewise.
9461
9462         * recur.c: Likewise.
9463
9464         * retr.c: Likewise.
9465
9466         * snprintf.c: Replace ctype.h with safe-ctype.h. Use ISDIGIT
9467         instead of isdigit.
9468
9469         * sysdep.h: Remove defines of ctype macros as they aren't needed
9470         for safe-ctype-h.
9471
9472         * url.c: Don't include ctype.h.
9473
9474         * utils.c: Likewise.
9475
9476         * wget.h: Include safe-ctype.h.
9477
9478 2001-03-27  Dan Harkless  <wget@harkless.org>
9479
9480         * Makefile.in: Moved top_builddir out of "User configuration
9481         section" of top Makefile and analogous spot in this one.
9482
9483 2001-03-17  Dan Harkless  <wget@harkless.org>
9484
9485         * Makefile.in: Include @SSL_INCLUDES@ substition in INCLUDES.
9486         Define top_builddir.  Link wget with libtool so the user doesn't
9487         have to supply a bunch of custom environment variables to
9488         correctly link with the OpenSSL shared libraries.
9489
9490 2001-03-06  Hack Kampbjorn  <hack@hackdata.com>
9491
9492         * http.c (gethttp): skip :port in host header if it is the
9493         DEFAULT_HTTPS_PORT when using SSL.
9494
9495         * url.c: move the #define of DEFAULT_HTTP_PORT, DEFAULT_FTP_PORT
9496         and DEFAULT_HTTPS_PORT to the header file so it can be use in the
9497         rest of the code.
9498         * url.h: Ditto
9499
9500 2001-03-01  Jonas Jensen  <bones@huleboer.dk>
9501
9502         * retr.c (show_progress): Correctly calculate the number of bytes
9503         in the first line of the download that have been actually
9504         downloaded in this run.
9505
9506 2001-02-23  Dan Harkless  <wget@harkless.org>
9507
9508         * main.c (print_help): --help documentation for -N said it would
9509         re-download files if they had the _same_ timestamp on server.
9510         (print_help): -nr belongs in "FTP options" section of --help
9511         output, not "Recursive retrieval" section.  Alphabetized FTP
9512         options by long option name.
9513
9514 2001-02-16  Dan Harkless  <wget@harkless.org>
9515
9516         * init.c (commands): Hack Kampbjørn <hack@hackdata.com> discovered
9517         that "httpsproxy" had been inserted into commands[] out of
9518         alphabetical order, causing "BUG: unknown command `httpuser'".
9519
9520 2001-02-13  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9521
9522         * ftp-ls.c (ftp_parse_ls): Added support of ST_MACOS (Unix-like
9523         listing without correct permissons).
9524
9525         * ftp.h (stype): Added ST_MACOS to identify the NetPresenz MacOS
9526         FTP server.
9527
9528         * ftp.c (ftp_retrieve_list): New mirroring logic: A remote file
9529         shall be donwloaded only when it's newer than the local copy or
9530         when it has the same timeestamp but its size is different. ST_VMS
9531         and ST_MACOS as special cases that lie about file size.
9532
9533         * ftp-ls.c (ftp_parse_ls): Support for ST_MACOS.
9534
9535         * Makefile.in: Removed dependency on ftpparse library due to unclear
9536         copyright issues and absence of any feedback to our queries.
9537
9538         * ftp-ls.c: Removed dependency on ftpparse library due to unclear
9539         copyright issues and absence of any feedback to our queries.
9540         (ftp_parse_ls): Added a warning message when remote server system
9541         does not seem to be suported by wget.
9542         (ftp_parse_vms_ls): New function for parsing VMS ftp
9543         server listing output.
9544         (clean_line): New function responsible for removing
9545         end-of-line characters from FTP listing texts.
9546
9547         * ftp.c (getftp): Global variables pwd and host_type are now
9548         member of the ccon structure under names ccon.id and ccon.rs.
9549
9550         * ftp.h (struct ccon): Added formed global variables from ftp.c,
9551         enum stype rs (remote system identification) and char *id (initial
9552         working directory), as suggested by Hrvoje.
9553
9554         * url.c (parse_uname): Added support for passwords containing '@'
9555         characters.
9556         (skip_uname): Ditto.
9557
9558 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
9559
9560         * ftp.c (ftp_loop): Reset con.
9561
9562 2001-01-06  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9563
9564         * url.c (parse_uname): Added support for passwords containing '@'
9565         characters.
9566         (skip_uname): Ditto.
9567
9568 2001-02-11  Hack Kampbjørn  <hack@hackdata.com>
9569
9570         * url.c (parseurl): Debug-print u->ftp_type.
9571
9572 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
9573
9574         * ftp.c (ftp_loop_internal): Disable padding.
9575         (getftp): Ditto.
9576
9577         * http.c (http_loop): Disable padding.
9578
9579         * retr.c (show_progress): Use it to enable padding.
9580
9581         * retr.c (rate): Optional parameter PAD for padding the rate.
9582
9583 2001-02-10  Hrvoje Niksic  <hniksic@arsdigita.com>
9584
9585         * retr.c (show_progress): Make sure that the last output line
9586         includes progress.
9587
9588 2001-02-10  Jonas Jensen  <bones@huleboer.dk>
9589
9590         * retr.c (show_progress): Print the download rate along with the
9591         percentages.
9592         Along with Anders Thorsby <anders@thorsby.dk>.
9593
9594 2001-02-10  Tim Mooney  <mooney@dogbert.cc.ndsu.NoDak.edu>
9595
9596         * ftp.h: Rename enums `command' to `wget_ftp_command' and
9597         `fstatus' to `wget_ftp_status' because old names clash with Tru64
9598         net/if.h.
9599
9600 2001-02-08  Christian Fraenkel <christian.fraenkel@gmx.net>
9601
9602         * gen_sslfunc.c: verify_callback is now static
9603
9604         * gen_sslfunc.c (init_ssl): load certificate if specified
9605
9606         * gen_sslfunc.c (ssl_printerr): new function
9607
9608         * init.c: added new --sslcertfile and --sslcertkey switches
9609
9610         * main.c: ditto
9611
9612         * options.h: ditto
9613
9614         * http.c (gethttp): abort when init_ssl fails
9615
9616 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
9617
9618         * mswindows.h: Include <malloc.h>; it's needed for alloca().
9619
9620 2001-01-10  Dan Harkless  <wget@harkless.org>
9621
9622         * url.c (str_url): Clarified this function's comment header after
9623         Hrvoje answered my question on the list as to when hide != 1.
9624         Also Hrvoje pointed out I need to use xstrdup() on the string literal.
9625
9626 2001-01-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9627
9628         * connect.c (bindport): Declare addrlen as int.  Diagnosed by
9629         Drazen Kacar <dave@arsdigita.com>.
9630         (conaddr): Ditto.
9631
9632 2001-01-09  Dan Harkless  <wget@harkless.org>
9633
9634         * html-url.c: A bunch of fixup of `--page-requisites'-related
9635         comments to reflect Hrvoje's changes to my code when transplanting
9636         it into this new file, to fix spelling mistakes, to clarify, etc.
9637
9638         * url.c (write_backup_file): Clarified a comment.
9639         (str_url): Henrik van Ginhoven pointed out on the list that we
9640         shouldn't give away the number of characters in the password by
9641         replacing each character with a 'x'.  Use "<password>" instead.
9642
9643         * ftp.c (ftp_retrieve_dirs): The bug where recursion into FTP
9644         directories didn't work if logging in put you in a directory other
9645         than "/" is fixed now.  Removed the comment here warning of the bug.
9646
9647         * main.c (print_help): --continue's description was misleading.
9648         We don't "restart", we "resume".  Also, better to say
9649         "partially-downloaded file" rather than just "existing file".
9650
9651 2001-01-06  Dan Harkless  <wget@harkless.org>
9652
9653         * ChangeLog: The '[Not in 1.6 branch.]'s were decided not to be
9654         the best way to go about my aim.  Removed them in favor of:
9655
9656         * ChangeLog-branches/1.6_branch.ChangeLog: New file.
9657
9658 2001-01-04  Hrvoje Niksic  <hniksic@arsdigita.com>
9659
9660         * url.c (replace_attr): New function, to be used by both
9661         TO_COMPLETE and TO_RELATIVE case in convert_links.
9662         (find_fragment): New function for finding URL fragments.
9663         (replace_attr): Better handle the case where the original string
9664         is not quoted.  Use find_fragment.
9665         (convert_links): Use replace_attr().
9666
9667 2000-12-31  Dan Harkless  <wget@harkless.org>
9668
9669         * ChangeLog: Since this flat file doesn't have multiple branches,
9670         looking at the dates would make you think that things went into
9671         1.6 that actually just went into the 1.7-dev branch.  Added "[Not
9672         in 1.6 branch.]" where appropriate to clarify.
9673
9674 2000-12-30  Dan Harkless  <wget@harkless.org>
9675
9676         * ftp.c, http.c:  Applied Hack Kampbjørn <hack@hackdata.com>'s
9677         patch to deal with h_errno not being defined in netdb.h under Cygwin.
9678
9679 2000-12-18  Csaba Raduly  <csaba.raduly@sophos.com>
9680
9681         * sysdep.h: Include <malloc.h> and <io.h> under Watcom.
9682
9683 2000-12-17  Igor Khristophorov  <igor@atdot.org>
9684
9685         * http.c (check_end): Fix test for '+' or '-'.
9686
9687 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
9688
9689         * url.c (parseurl): Rename inner loop var from i to ind to avoid
9690         clash with the function top-level-declared variable i.
9691         (str_url): Likewise, rename inner-loop i to j.
9692
9693         * recur.c (parse_robots): Don't declare LEN at top of function.
9694         (robots_match): Renamed parameter FORBIDDEN to avoid hiding of
9695         global variable.
9696
9697         * main.c (main): Change erroneous use of bitwise and to logical.
9698
9699         * init.c (cmd_address): Don't heap-allocate `sin'; it can be on
9700         the stack because it will be copied to closure.
9701
9702         Thanks to Csaba Raduly's run of PC-LINT over the sources.
9703
9704 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
9705
9706         * http.c (basic_authentication_encode): Use xmalloc(), not
9707         malloc().  Thanks to Csaba Raduly's run of PC-LINT over the
9708         sources.
9709
9710 2000-12-17  Csaba Raduly  <csaba.raduly@sophos.com>
9711
9712         * sysdep.h: Test for __EMX__ rather than for EMXOS2 for OS/2
9713         compilation.
9714
9715 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
9716
9717         * mswindows.c: Include <errno.h>.
9718
9719         * gen_sslfunc.c: Include <errno.h>.
9720
9721         * ftp-basic.c: Don't attempt to declare errno or h_errno because
9722         they're not used.
9723
9724         * main.c: Include <errno.h> because errno is used.
9725
9726         * ftp.c: Ditto.
9727
9728         * http.c: Include <netdb.h> for h_errno.
9729
9730 2000-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
9731
9732         * html-parse.c (advance_declaration): MSVC assert() chokes on
9733         '\"'.  Use '"' instead.
9734
9735 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
9736
9737         * utils.c (xfree_real): Removed.
9738         (xfree_debug): Just call free().
9739
9740         * wget.h (xfree): Make it an alias for free.
9741
9742 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
9743
9744         * http.c (http_loop): Furthermore, touch output_document only if
9745         it is known to be an existing regular file.
9746
9747 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
9748
9749         * ftp.c (ftp_retrieve_list): Ditto.
9750
9751         * http.c (http_loop): Touch output_document if that is used for
9752         output.
9753
9754 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9755
9756         * http.c: Include gen_sslfunc.h after including Wget's headers.
9757         (persistent_available_p): Needed coma before `int ssl'.
9758
9759 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9760
9761         * ftp.c (ftp_loop_internal): Ditto.
9762
9763         * http.c (http_loop): Use it.
9764
9765         * retr.c (sleep_between_retrievals): New function that handles the
9766         logic of opt.wait and opt.waitretry.
9767
9768 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9769
9770         * rbuf.h: Implement only a single version of RBUF_READCHAR, using
9771         rbuf_read_bufferful when the buffer is depleted.
9772
9773         * rbuf.c (rbuf_read_bufferful): New function.
9774
9775 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9776
9777         * gen_sslfunc.h: Use ansi2knr style function declarations.
9778
9779         * gen_sslfunc.c: Reformat according to the GNU coding standards.
9780         More should be done.
9781
9782         * http.c (persistent_available_p): Place the cheap SSL test nearer
9783         the top of the function.
9784         (CLOSE_FINISH, CLOSE_INVALIDATE): Define only one version of each.
9785
9786 2000-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
9787
9788         * url.c (init_unsafe_char_table): Reinstate space as an unsafe
9789         char.
9790
9791 2000-12-03  Christian Fraenkel <christian.fraenkel@gmx.net>
9792
9793         * Makefile.in: added gen_sslfunc object
9794         * config.h.in: added HAVE_SSL define
9795         * connect.c: changed select_fd from static int to int
9796         * connect.h: ditto
9797         * gen_sslfunc.h: New file
9798         * gen_sslfunc.c: ditto
9799         * http.c: added HTTPS fuctionality
9800         * retrc.c: ditto
9801         * url.c: ditto
9802         * init.c: added opt.httpsproxy
9803         * options.h: ditto
9804         * rbuf.h: added alternate rbuf struct
9805         * wget.h: added CONSSLERR
9806         * rbuf.c: ditto
9807
9808         * http.c: Added HTTPS fuctionality.
9809
9810         * retrc.c: Ditto.
9811
9812         * url.c: Ditto.
9813
9814         * init.c: Added opt.httpsproxy.
9815
9816         * options.h: Ditto.
9817
9818         * rbuf.h: Added alternate rbuf struct.
9819
9820         * wget.h: Added CONSSLERR.
9821
9822         * rbuf.c: Ditto.
9823
9824 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9825
9826         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
9827         "ignore_perms" to ignore file and directory permissions for
9828         Windows NT FTP server listings.
9829         (ftp_parse_winnt_ls): New function.
9830         (ftp_parse_ls): Parses UNIX and Windows NT listings
9831         separately. Simple heuristics for distinguishing between UNIX and
9832         MS-DOS-like FTP listing provided by Windows NT FTP service.
9833
9834 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9835
9836         * ftpparse.c, ftpparse.h: New files.
9837
9838         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
9839         only. Use ftp_parse_nonunix_ls otherwise.
9840         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
9841         exotic FTP servers.
9842
9843         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
9844         FTP servers.
9845
9846         * ftp.c: New static wariables host_type, pwd, and pwd_len.
9847         (getftp): Support for VMS. Support for FTP servers that do not
9848         place you in the root directory after login.
9849         (ftp_retrieve_list): VMS is silent about the real file size, issue
9850         a more appropriate message.
9851         (ftp_get_listing): Pass host_type to ftp_parse_ls.
9852
9853         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
9854
9855 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9856
9857         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
9858         "ignore_perms" to ignore file and directory permissions for
9859         Windows NT FTP server listings.
9860         (ftp_parse_winnt_ls): New function.
9861         (ftp_parse_ls): Parses UNIX and Windows NT listings
9862         separately. Simple heuristics for distinguishing between UNIX
9863         and MS-DOS-like FTP listing provided by Windows NT FTP service.
9864
9865 2000-11-29  John Summerfield  <summer@OS2.ami.com.au>
9866
9867         * netrc.c (parse_netrc): Get rid of line ending.
9868
9869 2000-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
9870
9871         * ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by
9872         Dan.
9873
9874 2000-11-24  Karl Eichwalder  <ke@suse.de>
9875
9876         * main.c (print_help): Untabify.
9877
9878 2000-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
9879
9880         * utils.c (xrealloc_debug): Do the unregister/register thing only
9881         if the pointer has actually changed.
9882         (xmalloc_real): Declare `static' in DEBUG_MALLOC builds.
9883         (xfree_real): Ditto.
9884         (xrealloc_real): Ditto.
9885         (xstrdup_real): Ditto.
9886
9887 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
9888
9889         * ftp.c (getftp): ftp_getaddress() returns a malloc'ed copy of the
9890         string; no need to strdup() it.
9891         (getftp): Make pwd_len a local variable.
9892         (ftp_loop): Free PWD before returning.
9893
9894         * init.c (cleanup): Free opt.ftp_pass only if it's non-NULL.
9895
9896 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
9897
9898         * all: Use xfree() instead of free.
9899
9900         * utils.c (xfree): New function.
9901
9902 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
9903
9904         * url.c (convert_links): HTML-quote the converted string.
9905
9906         * utils.c (html_quote_string): Move here from ftp-ls.c
9907         (html_quote_string): Make non-static; declare in utils.h.
9908         (html_quote_string): Convert SP to &#32;.
9909
9910 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
9911
9912         * ftp.c (getftp): Reformat Jan's code according to GNU coding
9913         standards; remove (debugging?) printf's; use '\0' for the ASCII
9914         zero character.  Use alloca() instead of malloc() for
9915         inter-function temporary allocations.
9916
9917 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
9918
9919         * ftpparse.c, ftpparse.h: New files.
9920
9921         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
9922         only. Use ftp_parse_nonunix_ls otherwise.
9923         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
9924         exotic FTP servers.
9925
9926         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
9927         FTP servers.
9928
9929         * ftp.c: New static wariables host_type, pwd, and pwd_len.
9930         (getftp): Support for VMS. Support for FTP servers that do not
9931         place you in the root directory after login.
9932         (ftp_retrieve_list): VMS is silent about the real file size, issue
9933         a more appropriate message.
9934         (ftp_get_listing): Pass host_type to ftp_parse_ls.
9935
9936         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
9937
9938 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
9939
9940         * hash.c (hash_table_put): Don't overwrite deleted mappings.
9941
9942 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
9943
9944         * hash.c (find_mapping): New function.
9945         (hash_table_get): Use it.
9946         (hash_table_get_pair): Ditto.
9947         (hash_table_exists): Ditto.
9948         (hash_table_remove): Ditto.
9949         (hash_table_remove): Really delete the entry if the mapping
9950         following LOCATION is empty.
9951
9952         * utils.c (string_set_add): Check whether the element has existed
9953         before.
9954
9955         * hash.c (hash_table_get_pair): New function.
9956
9957 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
9958
9959         * http.c (http_process_type): Ignore trailing whitespace; use
9960         strdupdelim().
9961
9962         * recur.c (recursive_retrieve): Use the new `convert' field.
9963         (convert_all_links): Ditto.
9964         (convert_all_links): Don't respect meta_disallow_follow.
9965
9966         * html-url.c (handle_link): Fill out link_relative_p and
9967         link_complete_p.
9968
9969         * url.h (struct _urlpos): Make elements more readable.
9970
9971         * recur.c (recursive_retrieve): Call slist_prepend instead of
9972         slist_append.
9973         (convert_all_links): Call slist_nreverse before iterating through
9974         urls_html.
9975
9976         * utils.c (slist_prepend): New function.
9977         (slist_nreverse): Ditto.
9978
9979 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
9980
9981         * http.c (check_end): Constify.
9982
9983 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
9984
9985         * http.c (http_loop): If username and password are known, try the
9986         `Basic' authentication scheme by default.
9987
9988         * connect.h: Declare test_socket_open.
9989
9990 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
9991
9992         * version.c: Bump version from 1.5.3+dev to 1.7-dev.
9993
9994 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
9995
9996         * http.c (gethttp): Don't use the return value of sprintf().
9997         (gethttp): Inhibit keep-alive if opt.http_keep_alive is 0.
9998
9999 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
10000
10001         * recur.c (recursive_retrieve): Print the "so we don't load"
10002         debugging message only if we really don't load.
10003
10004         * http.c (gethttp): Inhibit keep-alive if proxy is being used.
10005         (gethttp): Don't request keep-alive if keep-alive is inhibited.
10006
10007 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
10008
10009         * http.c (gethttp): Make the HTTP persistent connections more
10010         robust.
10011
10012 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
10013
10014         * retr.c (get_contents): If use_expected, make sure that the
10015         appropriate amount of data is being read.
10016
10017         * http.c (gethttp): Check for both `Keep-Alive: ...' and
10018         `Connection: Keep-Alive'.
10019
10020         * wget.h (DEBUGP): Call debug_logprintf only if opt.debug is
10021         turned on.
10022
10023 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
10024
10025         * http.c (connection_available_p): Use it.
10026
10027         * connect.c (test_socket_open): New function.
10028
10029         * http.c (gethttp): Support persistent connections.  Based on the
10030         ideas, and partly on code, by Sam Horrocks <sam@daemoninc.com>.
10031         (register_persistent): New function.
10032         (connection_available_p): Ditto.
10033         (invalidate_connection): Ditto.
10034
10035 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
10036
10037         * url.c (convert_links): Handle UREL2ABS case.
10038
10039         * recur.c (recursive_retrieve): Instead of the list
10040         urls_downloaded, use hash tables dl_file_url_map and
10041         dl_url_file_map.
10042         (convert_all_links): Use them to retrieve data.
10043
10044         * host.c (clean_hosts): Free the hash tables.
10045
10046         * main.c (private_initialize): Call host_init().
10047
10048         * host.c (store_hostaddress): Use a saner, hash table-based data
10049         model.
10050         (realhost): Ditto.
10051         (host_init): Initialize the hash tables.
10052
10053 2000-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
10054
10055         * utils.c (slist_append): Eviscerate NOSORT.  Hash tables are now
10056         used for what the sorted slists used to be used for.
10057         (slist_contains): Don't rely on the list being sorted.
10058         (slist_append): Simplify the code.
10059
10060         * recur.c (recursive_cleanup): Use free_string_set.
10061
10062         * utils.c (string_set_add, string_set_exists, string_set_free):
10063         New functions for easier freeing of hash tables whose keys are
10064         strdup'ed strings.
10065
10066         * recur.c (recursive_retrieve): Use the hash table functions for
10067         storing undesirable URLs.
10068
10069         * hash.c: New file.
10070
10071 2000-11-17  Hrvoje Niksic  <hniksic@arsdigita.com>
10072
10073         * main.c (private_initialize): Call url_init.
10074         (main): Call private_initialize.
10075
10076         * url.c (unsafe_char_table): New table.
10077         (UNSAFE_CHAR): Use it.
10078         (init_unsafe_char_table): New function.
10079         (url_init): New function; call init_unsafe_char_table.
10080
10081 2000-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
10082
10083         * mswindows.h: Define snprintf and vsnprintf to _snprintf and
10084         _vsnprintf respectively.
10085
10086 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
10087
10088         * config.h.in: Do the _XOPEN_SOURCE and _SVID_SOURCE things only
10089         on Linux.
10090
10091 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
10092
10093         * html-url.c (handle_link): Handle HTML fragment identifiers.
10094
10095         * recur.c (recursive_retrieve): If norobot info is respected and
10096         the file is specified not to be followed by robots, respect that.
10097
10098         * html-url.c (collect_tags_mapper): Handle <meta name=robots
10099         content=X>.  For us the important cases are where X is NONE or
10100         where X contains NOFOLLOW.
10101         (get_urls_html): Propagate that information to the caller.
10102
10103 2000-11-13  Hrvoje Niksic  <hniksic@arsdigita.com>
10104
10105         * url.c (convert_links): Unlink the file we might be reading from
10106         before writing to it.
10107         (convert_links): Use alloca instead of malloc for
10108         filename_plus_orig_suffix.
10109
10110 2000-11-12  Hrvoje Niksic  <hniksic@arsdigita.com>
10111
10112         * host.c (realhost): Add HOST to the list with quality==0 only if
10113         it wasn't already there.
10114         Based on analysis by Lu Guohan <feng@public.bjnet.edu.cn>.
10115
10116 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
10117
10118         * url.c (get_urls_file): Ditto.
10119         (convert_links): Ditto.
10120
10121         * html-url.c (get_urls_html): Use read_file() instead of
10122         load_file().
10123
10124         * utils.c (read_file): New function, instead of the old
10125         load_file().
10126         (read_file_free): Ditto.
10127
10128         * url.c (findurl): Search only for the supported protocols.
10129         (convert_links): Use fwrite() when writing out a region of
10130         characters.
10131
10132 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
10133
10134         * ftp-ls.c: Move html_quote_string and ftp_index here.
10135
10136         * url.c: Remove get_urls_html, since that's now in html-url.c.
10137
10138         * html-url.c: New file.
10139
10140         * html-parse.c: New file.
10141
10142 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
10143
10144         * init.c (run_wgetrc): Don't bother killing off '\r' since
10145         pars_line() skips whitespace at end of line anyway.
10146         (parse_line): Oops, it didn't.  Now it does.
10147
10148         * recur.c (parse_robots): Ditto here.
10149
10150         * ftp-ls.c (ftp_parse_unix_ls): Kill off the newline character
10151         manually because read_whole_line no longer does.
10152
10153         * utils.c (read_whole_line): Rewrite to: a) use less memory
10154         (reallocates to needed size after work), b) work faster -->
10155         fgets() instead of getc, c) be more correct --> doesn't kill the
10156         newline character at the end of line.
10157
10158 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
10159
10160         * init.c (comind): Initialize MAX to array size - 1.
10161
10162 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
10163
10164         * url.c (construct): Changed last_slash[-1] to *(last_slash - 1).
10165         Suggested by Edward J. Sabol.
10166
10167 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
10168
10169         * url.c (construct): Handle the case where host name is not
10170         followed by a slash.
10171
10172 2000-11-06  Hrvoje Niksic  <hniksic@arsdigita.com>
10173
10174         * init.c: commands[] need to be sorted!  ("base" wasn't.)
10175
10176 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
10177
10178         * wget.h (DO_REALLOC_FROM_ALLOCA): Use braces to disambiguate
10179         `if'.
10180
10181 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
10182
10183         * url.c (construct): Insert unneeded initialization for the
10184         compiler to shut up.
10185
10186         * config.h.in: Define _XOPEN_SOURCE to 500 to get the prototype
10187         for strptime() (*duh*).  Define _SVID_SOURCE to get S_IFLNK which
10188         otherwise gets lost when you define _XOPEN_SOURCE.
10189
10190         * utils.c (touch): Include the file name in the error message.
10191         From Debian.
10192
10193 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
10194
10195         * log.c (logvprintf): Use vsnprintf() in all cases.  If necessary,
10196         resize the buffer to fit the formated message.  That way, messages
10197         of arbitrary size may be printed.
10198         (logvprintf): Use saved_append() to optionally log the last
10199         several lines of output.
10200         (logputs): Ditto.
10201         (log_close): Adapt to new data structures.
10202         (log_dump): Ditto.
10203         (redirect_output): Print messages to stderr, not to stdout.
10204
10205         * log.c (saved_append_1): New function.  Replaces the old logging
10206         system ("log all output until 10M characters") with a new, much
10207         more reasonable one ("log last screenful of text").
10208         (saved_append): New function; call saved_append_1.
10209         (free_log_line): New function.
10210
10211 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
10212
10213         * url.c (construct): Fix comment.
10214         (find_last_char): Document.
10215
10216 2000-11-04  Hrvoje Niksic  <hniksic@arsdigita.com>
10217
10218         * snprintf.c: New file.
10219
10220 2000-11-03  Hrvoje Niksic  <hniksic@arsdigita.com>
10221
10222         * wget.h: If HAVE_STDARG_H is not defined, don't declare argument
10223         types to logprintf() and debug_logprintf().
10224
10225 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
10226
10227         * ftp.c (ftp_loop_internal): Hide the password from the URL when
10228         printing non-verbose.  Problem spotted by Dariusz Mlynarczyk
10229         <darekm@bydg.lomac.com.pl>.
10230
10231 2000-11-02  Junio Hamano  <junio@twinsun.com>
10232
10233         * ftp-basic.c (ftp_login): Make comparison case-insensitive.
10234
10235 2000-11-02  Tyler Riddle  <triddle@liquidmarket.com>
10236
10237         * http.c (known_authentication_scheme_p): Recognize NTML
10238         authentication.
10239         (create_authorization_line): Treat NTML the same as `Basic'.
10240
10241 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
10242
10243         * retr.c (retrieve_url): Free url before returning.
10244         (retrieve_url): Free mynewloc before returning.
10245         Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
10246
10247 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
10248
10249         * url.c (parseurl): Remove possible reading past the end of
10250         sup_protos[].  Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
10251
10252 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10253
10254         * main.c (main): In case of opt.downloaded overflowing, print
10255         <overflow> instead of a totally bogus random value.
10256
10257         * retr.c (retrieve_from_file): Ditto.
10258
10259         * recur.c (recursive_retrieve): Ditto.
10260
10261         * main.c (main): Ditto.
10262
10263         * http.c (http_loop): Ditto.
10264
10265         * ftp.c (ftp_loop_internal): Use downloaded_increase() instead of
10266         `+=', and downloaded_exceeds_quota() instead of the simple-minded
10267         check.
10268         (ftp_retrieve_list): Ditto.
10269         (ftp_retrieve_dirs): Ditto.
10270         (ftp_retrieve_glob): Ditto.
10271
10272         * retr.c (downloaded_increase): New function.  Notice overflows of
10273         opt.downloaded.
10274         (downloaded_exceeds_quota): Make sure that opt.downloaded is not
10275         used if it overflowed.
10276
10277         * options.h (struct options): New member downloaded_overflow.
10278
10279 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10280
10281         * wget.h (enum): Remove extra space after last enumeration.
10282
10283 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10284
10285         * main.c (main): Use legible_very_long() for printing
10286         opt.downloaded.
10287
10288         * utils.c (legible_1): New function that operates on strings and
10289         does the brunt of legible()'s work.
10290         (legible): Use legible_1().
10291         (legible_very_long): New function; dump the argument with
10292         sprintf(), and call legible_1().
10293
10294         * options.h (struct options): Use VERY_LONG_TYPE for
10295         opt.downloaded.
10296
10297         * sysdep.h (VERY_LONG_TYPE): Define it to have a 64-bit or greater
10298         type.
10299
10300         * config.h.in: Make sure that SIZEOF_LONG and SIZEOF_LONG_LONG get
10301         defined.  Define HAVE_LONG_LONG if long long is available.
10302
10303 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10304
10305         * utils.c (long_to_string): Update with a later, better version.
10306
10307 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10308
10309         * url.c (path_simplify_with_kludge): New function.
10310         (path_simplify_with_kludge): Disable it.  Instead...
10311         (parse_dir): ...make sure that at this point the right thing is
10312         done, i.e. that "query" part of the URL (?...) is always assigned
10313         to the file, never to the directory portion of the path.
10314
10315 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10316
10317         * retr.c (retrieve_url): Detect redirection cycles.
10318
10319 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10320
10321         * url.c (get_urls_html): Decode HTML entities using
10322         html_decode_entities.
10323
10324         * html.c (htmlfindurl): Don't count the `#' in numeric entities
10325         (&#NNN;) as an HTML fragemnt.
10326         (html_decode_entities): New function.
10327
10328 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10329
10330         * html.c (htmlfindurl): Fix recognition of # HTML fragments.
10331
10332 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
10333
10334         * url.c (construct): Rewritten for clarity.  Avoids the
10335         unnecessary copying and stack-allocation the old version
10336         performed.
10337
10338 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
10339
10340         * ftp.c (getftp): Ditto.
10341
10342         * http.c (gethttp): Rewind the stream when retrying from scratch.
10343
10344 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
10345
10346         * retr.c (retrieve_url): Use url_concat() to handle relative
10347         redirections instead of /ad hoc/ code.
10348
10349         * url.c (url_concat): New function encapsulating weird
10350         construct().
10351         (urllen_http_hack): New function.
10352         (construct): When constructing new URLs, recognize that `?' does
10353         not form part of the file name in HTTP.
10354
10355 2000-10-13  Adrian Aichner  <adrian@xemacs.org>
10356
10357         * retr.c: Add msec timing support for WINDOWS.
10358         * retr.c (reset_timer): GetSystemTime() on WINDOWS.
10359         * retr.c (elapsed_time): Calculate delta time to msec on WINDOWS.
10360
10361 2000-10-27  Dan Harkless  <wget@harkless.org>
10362
10363         * retr.c (retrieve_url): Manually applied T. Bharath
10364         <TBharath@responsenetworks.com>'s patch to get wget to grok
10365         illegal relative URL redirects.  Reformatted and re-commented it.
10366
10367 2000-10-23  Dan Harkless  <wget@harkless.org>
10368
10369         * connect.c (make_connection and bindport): Manually applied Rob
10370         Mayoff <mayoff@dqd.com>'s 1.5.3 patch to add --bind-address,
10371         changing coding style to GNU's.
10372
10373         * ftp.c (ftp_loop_internal): --delete-after wasn't implemented for
10374         files downloaded via FTP.  Per a comment, .listing files were not
10375         counted towards number of bytes and files downloaded because they're
10376         deleted anyway.  Well, they aren't under -nr, so count them then.
10377
10378         * init.c: Manually applied Rob Mayoff's 1.5.3 patch to add
10379         --bind-address, alphabetizing, changing coding style to GNU's,
10380         commenting, and renaming cmd_ip_address() to cmd_address() to
10381         imply hostnames also okay.
10382
10383         * main.c (main): --delete-after didn't delete the root of the
10384         tree.  Ignore --convert-links if --delete-after was specified.
10385         Manually applied Rob Mayoff's 1.5.3 patch to add --bind-address,
10386         fixing duplicate use of added-since-1.5.3 case value.
10387         (print_help): Clarified that --delete-after deletes local files.
10388         Rob forgot to add a line for his new --bind-address option.
10389
10390         * options.h (struct options): Manually applied Rob Mayoff's patch
10391         to add --bind-address (bind_address structure member).
10392
10393         * recur.c (recursive_retrieve): Improved comment; added DEBUGP().
10394         Ignore --convert-links if --delete-after was specified.
10395
10396         * retr.c (retrieve_from_file): Just added a DEBUGP().
10397
10398 2000-10-19  Dan Harkless  <wget@harkless.org>
10399
10400         * ftp.c (ftp_loop_internal): downloaded_file() enumerators changed.
10401         (getftp): Applied Piotr Sulecki <Piotr.Sulecki@ios.krakow.pl>'s
10402         patch to work around FTP servers that incorrectly respond to the
10403         "REST" command with the remaining size rather than the total file size.
10404
10405         * http.c (gethttp): Improved a comment and added code to tack on
10406         ".html" to text/html files without that extension when -E specified.
10407         (http_loop): Use new downloaded_file() enumerators and deal with
10408         the case of gethttp() called xrealloc() on u->local.
10409
10410         * init.c (commands): Added new "htmlextension" command.
10411         Also renamed John Daily's cmd_quad() to the more descriptive
10412         cmd_lockable_boolean(), alpha-sorted the CMD_DECLARE()s and
10413         removed duplicate cmd_boolean() declaration.
10414
10415         * main.c (print_help): Added my new -E / --html-extension option.
10416         (main): Undocumented --email-address option previously used -E synonym.
10417         Stole it away for the much more deserving --html-extension's use.
10418
10419         * options.h (struct options): Added html_extension field.
10420
10421         * url.c (convert_links): URL X that we saved as X.html locally due
10422         to -E needs to be backed up as X.orig, not X.html.orig.  Added comments.
10423         (downloaded_file): Now remembers if we added .html extension to a file.
10424
10425         * url.h (downloaded_file_t): Added extra enumerators to support above.
10426         (downloaded_file): Now takes and returns a downloaded_file_t.
10427
10428         * wget.h (unnamed "dt" enum): Added ADDED_HTML_EXTENSION enumerator.
10429
10430 2000-10-09  Dan Harkless  <wget@harkless.org>
10431
10432         * html.c (htmlfindurl): Added unneeded initialization to quiet warning.
10433
10434         * main.c (print_help): Clarified what --retr-symlinks does.
10435
10436 2000-09-15  John Daily  <jdaily@cyberdude.com>
10437
10438         * init.c: Add support for "always" and "never" values to allow
10439         .wgetrc to override commandline (useful e.g. with .pm files
10440         calling `wget --passive-ftp' when your firewall doesn't allow that).
10441
10442         * ftp.c (getftp): passive_ftp is first option to support always/never.
10443
10444 2000-08-30  Dan Harkless  <wget@harkless.org>
10445
10446         * ftp.c (ftp_retrieve_list): Use new INFINITE_RECURSION #define.
10447
10448         * html.c: htmlfindurl() now takes final `dash_p_leaf_HTML' parameter.
10449         Wrapped some > 80-column lines.  When -p is specified and we're at a
10450         leaf node, do not traverse <A>, <AREA>, or <LINK> tags other than
10451         <LINK REL="stylesheet">.
10452
10453         * html.h (htmlfindurl): Now takes final `dash_p_leaf_HTML' parameter.
10454
10455         * init.c: Added new -p / --page-requisites / page_requisites option.
10456
10457         * main.c (print_help): Clarified that -l inf and -l 0 both allow
10458         infinite recursion.  Changed the unhelpful --mirrior description
10459         to simply give the options it's equivalent to.  Added new -p option.
10460         (main): Added some comments; handle new -p / --page-requisites.
10461
10462         * options.h (struct options): Added new page_requisites field.
10463
10464         * recur.c: Changed "URL-s" to "URLs" and "HTML-s" to "HTMLs".
10465         Calculate and pass down new `dash_p_leaf_HTML' parameter to
10466         get_urls_html().  Use new INFINITE_RECURSION #define.
10467
10468         * retr.c: Changed "URL-s" to "URLs".  get_urls_html() now takes
10469         final `dash_p_leaf_HTML' parameter.
10470
10471         * url.c: get_urls_html() and htmlfindurl() now take final
10472         `dash_p_leaf_HTML' parameter.
10473
10474         * url.h (get_urls_html): Now takes final `dash_p_leaf_HTML' parameter.
10475
10476         * wget.h: Added some comments and new INFINITE_RECURSION #define.
10477
10478 2000-08-23  Dan Harkless  <wget@harkless.org>
10479
10480         * main.c (print_help): -B / --base was not mentioned.
10481
10482 2000-08-22  Dan Harkless  <wget@harkless.org>
10483
10484         * main.c (print_help): Modified -nc description to mention that it
10485         also prevents the creation of multiple versions of the same file
10486         with ".<number>" suffixes.
10487
10488 2000-07-14  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
10489
10490         * retr.c (retrieve_url): Consistently strdup opt.referer when
10491         setting u->referer.
10492
10493 2000-06-09  Dan Harkless  <wget@harkless.org>
10494
10495         * main.c (print_help): --help output for --waitretry was over 80 cols.
10496
10497 2000-06-09  Hrvoje Niksic  <hniksic@iskon.hr>
10498
10499         * url.c (encode_string): Fix comment.
10500         Suggested by Herold Heiko <Heiko.Herold@previnet.it>.
10501
10502 2000-06-01  Const Kaplinsky  <const@ce.cctpu.edu.ru>
10503
10504         * ftp.c (ftp_retrieve_list): Change permissions only on plain
10505         files.
10506
10507 2000-06-01  Hrvoje Niksic  <hniksic@iskon.hr>
10508
10509         * url.c (str_url): Print the port number only if it's different
10510         from the default port number for that protocol.
10511
10512 2000-05-22  Dan Harkless  <wget@harkless.org>
10513
10514         * main.c (print_help): Added --help line for Damir Dzeko
10515         <ddzeko@zesoi.fer.hr>'s until-now-undocumented --referer option.
10516         Removed comments that --referer and --waitretry were undocumented.
10517         Changed "`.wgetrc' command" to "`.wgetrc'-style command" on --help
10518         line for --execute.
10519
10520 2000-05-18  Hrvoje Niksic  <hniksic@iskon.hr>
10521
10522         * ftp.c (getftp): Ditto.
10523
10524         * http.c (gethttp): Check for return value of fclose/fflush.
10525
10526 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
10527
10528         * host.c (store_hostaddress): Instead of shifting ADDR, start
10529         copying from the correct address.
10530
10531 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
10532
10533         * http.c (gethttp): Don't free REQUEST -- it was allocated with
10534         alloca().
10535         Pointed out by Gisle Vanem <gvanem@eunet.no>.
10536
10537 2000-04-04  Dan Harkless  <wget@harkless.org>
10538
10539         * host.c (store_hostaddress): R. K. Owen's patch introduces a
10540         "left shift count >= width of type" warning on 32-bit
10541         architectures.  Got rid of it by tricking the compiler w/ a variable.
10542
10543         * url.c (UNSAFE_CHAR): The macro didn't include all the illegal
10544         characters per RFC1738, namely everything above '~'.  It also
10545         generated a warning on OSes where char =~ unsigned char.  Fixed.
10546
10547 1998-10-17  Hrvoje Niksic  <hniksic@srce.hr>
10548
10549         * http.c (http_process_type): Removed needless strdup(), a memory
10550         leak.
10551
10552 1998-09-25  Hrvoje Niksic  <hniksic@srce.hr>
10553
10554         * html.c (htmlfindurl): Set PH to the first occurrence of `#'.
10555
10556 1998-09-25  Simon Munton  <simonm@m4data.co.uk>
10557
10558         * init.c (wgetrc_file_name): Don't free HOME under Windows.
10559
10560 1998-12-01  "R. K. Owen"  <rkowen@Nersc.GOV>
10561
10562         * host.c (store_hostaddress): Fix for big endian 64-bit machines.
10563
10564 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
10565
10566         * url.c (UNSAFE_CHAR): New macro.
10567         (contains_unsafe): Use it.
10568         (encode_string): Ditto.
10569
10570 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
10571
10572         * main.c (i18n_initialize): Use LC_MESSAGES only if available.
10573
10574 2000-03-31  Hrvoje Niksic  <hniksic@srce.hr>
10575
10576         * Use TOUPPER/TOLOWER.
10577
10578 1998-12-22  Alexander V. Lukyanov  <lav@yars.free.net>
10579
10580         * ftp-opie.c (btoe): Zero-terminate OSTORE.
10581
10582 2000-03-21  Hrvoje Niksic  <hniksic@iskon.hr>
10583
10584         * wget.h (DO_REALLOC_FROM_ALLOCA): Ditto.
10585
10586         * sysdep.h (ISALNUM): New macro.
10587         (TOLOWER): Ditto.
10588         (TOUPPER): Ditto.
10589
10590 2000-03-10  Dan Harkless  <wget@harkless.org>
10591
10592         * html.c (idmatch): Implemented checking of my new --follow-tags
10593         and --ignore-tags options.
10594
10595         * init.c (commands): Added comment reminding people adding new
10596         entries doing allocation to add corresponding freeing in cleanup().
10597         (commands): Added new followtags and ignoretags commands.
10598         (cleanup): Free storage for new followtags and ignoretags.
10599
10600         * main.c: Use of "comma-separated list" was random -- normalized
10601         it.  Did some alphabetization.  Added comments pointing out
10602         "Options without arguments" and "Options accepting an argument"
10603         sections of long_options[].  Added new options --follow-tags and
10604         -G / --ignore-tags.  Added comment that Damir's --referer is
10605         currently undocumented.  Added comment that Heiko's --waitretry is
10606         partially undocumented (mentioned in --help but not in
10607         wget.texi).  Moved improperly sorted 24, 129, and 'G' cases.
10608
10609         * options.h (struct options): Added new fields follow_tags and
10610         ignore_tags.
10611
10612         * wget.h: Added "#define EQ 0" so we can say "strcmp(a, b) == EQ".
10613
10614 2000-03-02  Dan Harkless  <wget@harkless.org>
10615
10616         * ftp.c (ftp_loop_internal): Heiko introduced "suggest explicit
10617         braces to avoid ambiguous `else'" warnings.  Eliminated them.
10618
10619         * http.c (gethttp): Dan Berger's query string patch is totally
10620         bogus.  If you have two different URLs, gen_page.cgi?page1 and
10621         get_page.cgi?page2, they'll both be saved as get_page.cgi and the
10622         second will overwrite the first.  Also, parameters to implicit
10623         CGIs, like "http://www.host.com/db/?2000-03-02" cause the URLs to
10624         be printed with trailing garbage characters, and could seg fault.
10625         Backing out the patch, which Dan B. informed me by email was just
10626         a kludge to download StarOffice from Sun made necessary due to
10627         wget's unconditional escaping of certain characters (room for an
10628         option there?).
10629         (http_loop): Heiko introduced "suggest explicit braces to avoid
10630         ambiguous `else'" warnings.  Eliminated them.
10631
10632         * main.c: Heiko's --wait / --waitretry backwards compatibility
10633         code looks to have been totally untested -- automatic variable
10634         'wr' was used without being initialized, and a long int was passed
10635         into setval()'s char* val parameter.
10636
10637         * recur.c (parse_robots): Applied Edward J. Sabol
10638         <sabol@alderaan.gsfc.nasa.gov>'s patch for Guan Yang's reported
10639         problem with "User-agent:<space>*<space>" lines in robots.txt.
10640
10641         * url.c (parseurl, str_url): Removing Dan Berger's code (see
10642         http.c above for explanation).
10643
10644 1999-08-25  Heiko Herold  <Heiko.Herold@previnet.it>
10645
10646         * ftp.c: Respect new option waitretry.
10647
10648 2000-01-30  Damir Dzeko  <ddzeko@zesoi.fer.hr>
10649
10650         * http.c (gethttp): Send custom Referer, if required.
10651
10652 1999-09-24  Charles G Waldman  <cgw@fnal.gov>
10653
10654         * netrc.c (parse_netrc): Allow passwords to contain spaces.
10655
10656         * netrc.c (parse_netrc): New function.
10657
10658 1999-09-17  Dan Berger  <dberger@ix.netcom.com>
10659
10660         * http.c (gethttp): Send it.
10661
10662         * url.c (parseurl): Detect query string in HTTP URL-s.
10663         (str_url): Print it.
10664
10665 2000-03-02  HIROSE Masaaki  <hirose31@t3.rim.or.jp>
10666
10667         * html.c (html_allow): Add <link href=...> and <script src=...>.
10668
10669 1999-05-02  andrew deryabin  <djsf@softhome.net>
10670
10671         * http.c (gethttp): Specify port in `Host' header only if it's
10672         different from 80.
10673
10674 1998-11-03  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
10675
10676         * recur.c (recursive_retrieve): If a finite maximum depth is
10677         specified, and we're are already at that depth, don't download the
10678         HTML file for parsing.
10679
10680 2000-03-01  Dan Harkless  <wget@harkless.org>
10681
10682         * ftp.c (ftp_loop_internal): Call new downloaded_file() function,
10683         even though we don't do conversion on HTML files retrieved via
10684         FTP, so _current_ usage of downloaded_file() makes this call unneeded.
10685         (ftp_retrieve_list): Added a comment saying where we need to
10686         stat() a .orig file if FTP'd HTML file conversion is ever implemented.
10687         (ftp_retrieve_list): "Local file '%s' is more recent," is sometimes
10688         a lie -- reworded as "Server file no newer than local file '%s' --".
10689
10690         * http.c (http_loop): Fixed a typo and clarified a comment.
10691         (http_loop): When -K and -N are specified together, compare size
10692         and timestamp of server file X against local file X.orig (if
10693         extant) rather than converted local file X.
10694         (http_loop): "Local file '%s' is more recent," is sometimes a lie
10695         -- reworded as "Server file no newer than local file '%s' --".
10696         (http_loop): Call new downloaded_file() function to prevent
10697         wrongful overwriting of .orig file when -N is specified.
10698
10699         * url.c (convert_links): When -K specified, only rename X to
10700         X.orig if downloaded_file() returns TRUE.  Otherwise when we skip
10701         file X due to -N, we clobber an X.orig from a previous invocation.
10702         (convert_links): Call the failsafe xstrdup(), not the real strdup().
10703         (convert_links): Added a note asking anyone who understands how
10704         multiple URLs can correspond to a single file to comment it.
10705         (downloaded_file): Added this new function.
10706
10707         * url.h (downloaded_file): Added prototype for this new function
10708         as well as its downloaded_file_t enum type.
10709
10710         * wget.h (boolean): Added this new typedef and TRUE and FALSE #defines.
10711
10712 2000-02-29  Dan Harkless  <wget@harkless.org>
10713
10714         * version.c: Upped version to developer-only "1.5.3+dev".
10715
10716 2000-02-18  Dan Harkless  <wget@harkless.org>
10717
10718         * init.c (backup_converted): Added this new option.
10719
10720         * main.c (-K / --backup-converted): Added this new option.
10721
10722         * options.h (backup_converted): Added this new option.
10723
10724         * url.c (convert_links): When backup_converted is specified, save
10725         file X as X.orig before converting.
10726
10727         * url.h (urlpos): Fixed typo -- said "Rekative" instead of "Relative".
10728
10729 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
10730
10731         * version.c: Wget 1.5.3 is released.
10732
10733 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
10734
10735         * host.c (ftp_getaddress): Don't warn when reverse-lookup of local
10736         address doesn't yield FQDN.
10737
10738 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
10739
10740         * cmpt.c (strerror): Fix declaration of sys_errlist.
10741
10742 1998-09-11  Hrvoje Niksic  <hniksic@srce.hr>
10743
10744         * main.c (main): Don't use an array subscript as the first
10745         argument to STRDUP_ALLOCA.
10746         From Kaveh R. Ghazi.
10747
10748 1998-09-11  Szakacsits Szabolcs  <szaka@sienet.hu>
10749
10750         * html.c (htmlfindurl): Download table background.
10751
10752 1998-09-11  Hans Grobler  <grobh@conde.ee.sun.ac.za>
10753
10754         * init.c (parse_line): Would free *com before allocating it.
10755         (parse_line): Would free com instead of *com.
10756
10757 1998-09-10  Howard Gayle  <howard@fjst.com>
10758
10759         * url.c (get_urls_html): Would drop the last character of the
10760         link.
10761
10762 1998-09-10  Hrvoje Niksic  <hniksic@srce.hr>
10763
10764         * http.c (http_loop): Don't print status code if quiet.
10765
10766 1998-09-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10767
10768         * log.c: Use <stdarg.h> only when __STDC__.
10769
10770 1998-09-10  Adam D. Moss  <adam@foxbox.org>
10771
10772         * html.c (htmlfindurl): Download <layer src=...>.
10773
10774 1998-09-10  Howard Gayle  <howard@fjst.com>
10775
10776         * ftp.c (ftp_retrieve_list): Don't update the time stamp of a file
10777         not retrieved.
10778
10779 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
10780
10781         * utils.c: Include <libc.h> on NeXT.
10782
10783 1998-06-26  Heinz Salzmann  <heinz.salzmann@intermetall.de>
10784
10785         * url.c (get_urls_html): Fix calculation of URL position.
10786
10787 1998-06-23  Hrvoje Niksic  <hniksic@srce.hr>
10788
10789         * version.c: Wget 1.5.2 is released.
10790
10791 1998-06-23  Dave Love  <d.love@dl.ac.uk>
10792
10793         * ftp.c, init.c, netrc.c: Include errno.h.
10794
10795         * http.c: Include errno.h and time header.
10796
10797         * Makefile.in (exext): Define.
10798         (install.bin, uninstall.bin): Use it.
10799
10800 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
10801
10802         * http.c (http_loop): Don't attempt to compare local and remote
10803         sizes if the remote size is unknown.
10804
10805 1998-06-16  Hrvoje Niksic  <hniksic@srce.hr>
10806
10807         * url.c (get_urls_html): Use malloc() instead of alloca in the
10808         loop.
10809
10810 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
10811
10812         * version.c: Wget 1.5.2-b4 is released.
10813
10814 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
10815
10816         * url.c (get_urls_html): Ignore spaces before and after the URI.
10817
10818 1998-06-08  Wanderlei Antonio Cavassin  <cavassin@conectiva.com.br>
10819
10820         * ftp.c (getftp): Translate `done'.
10821
10822 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
10823
10824         * version.c: Wget 1.5.2-b3 is released.
10825
10826 1998-06-06  Alexander Kourakos  <awk@bnt.com>
10827
10828         * init.c (cleanup): Close dfp, don't free it.
10829
10830 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
10831
10832         * utils.c (make_directory): Twiddle.
10833
10834         * config.h.in: Added template for access().
10835
10836 1998-06-05  Mathieu Guillaume  <mat@cythere.com>
10837
10838         * html.c (htmlfindurl): Download <input src=...>
10839
10840 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
10841
10842         * utils.c (file_exists_p): Use access() with two arguments.
10843
10844 1998-05-27  Martin Kraemer  <Martin.Kraemer@mch.sni.de>
10845
10846         * netrc.c (parse_netrc): Correct logic.
10847
10848 1998-05-27  Hrvoje Niksic  <hniksic@srce.hr>
10849
10850         * ftp.c (getftp): Added `break'; suggested by Lin Zhe Min
10851         <ljm@ljm.wownet.net>.
10852
10853 1998-05-24  Hrvoje Niksic  <hniksic@srce.hr>
10854
10855         * version.c: Wget 1.5.2-b2 is released.
10856
10857 1998-05-18  Juan Jose Rodriguez  <jcnsoft@jal1.telmex.net.mx>
10858
10859         * mswindows.h: Don't translate mkdir to _mkdir under Borland.
10860
10861 1998-05-17  Hrvoje Niksic  <hniksic@srce.hr>
10862
10863         * retr.c (elapsed_time): Return correct value when
10864         HAVE_GETTIMEOFDAY is undefined.
10865
10866 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
10867
10868         * version.c: Wget 1.5.2-b1 is released.
10869
10870 1998-05-08  Hrvoje Niksic  <hniksic@srce.hr>
10871
10872         * getopt.c (_getopt_internal): Use exec_name instead of argv[0].
10873         (_getopt_internal): Don't translate `#if 0'-ed strings.
10874
10875 1998-05-06  Douglas E. Wegscheid  <wegscd@whirlpool.com>
10876
10877         * mswindows.c (ws_handler): Use fork_to_background().
10878
10879 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
10880
10881         * version.c: Wget 1.5.1 is released.
10882
10883 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
10884
10885         * http.c (parse_http_status_line): Avoid `minor' and `major'
10886         names.
10887
10888 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
10889
10890         * utils.c (mkdirhier): Renamed to make_directory.
10891
10892 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
10893
10894         * mswindows.c (fork_to_background): Define under Windows.
10895
10896         * utils.c (fork_to_background): New function.
10897
10898         * html.c (htmlfindurl): Removed rerdundant casts.
10899
10900 1998-05-01  Douglas E. Wegscheid  <wegscd@whirlpool.com>
10901
10902         * mswindows.c (ws_mypath): Cache the path.
10903
10904 1998-04-30  Douglas E. Wegscheid  <wegscd@whirlpool.com>
10905
10906         * ftp.h: Prefix enum ftype members with FT_.
10907
10908         * ftp-ls.c, ftp.c, html.h: Adjust accordingly.
10909
10910         * mswindows.h: Use stat under Borland, _stat under MSVC.
10911
10912 1998-04-28  Hrvoje Niksic  <hniksic@srce.hr>
10913
10914         * http.c (known_authentication_scheme_p): New function.
10915         (gethttp): Handle authorization more correctly.
10916
10917         * ftp-basic.h: Removed.
10918
10919         * cmpt.h: Removed.
10920
10921         * utils.c: Include <unistd.h> before <pwd.h>; needed under SunOS
10922         with gcc 2.8.
10923         (numdigit): Use `while' loop.
10924
10925         * http.c (create_authorization_line): Detect authentication
10926         schemes case-insensitively.
10927
10928         * http.c (extract_header_attr): Use strdupdelim().
10929         (digest_authentication_encode): Move declaration of local
10930         variables to smaller scope.
10931         (digest_authentication_encode): Reset REALM, OPAQUE and NONCE.
10932         (create_authorization_line): Detect authentication schemes
10933         case-insensitively.
10934
10935         * utils.c (touch): Constify.
10936
10937         * http.c (gethttp): Report a nicer error when no data is received.
10938
10939         * rbuf.h (RBUF_READCHAR): Ditto.
10940
10941         * ftp-basic.c (ftp_response): Use sizeof.
10942
10943 1998-04-27  Hrvoje Niksic  <hniksic@srce.hr>
10944
10945         * retr.c (print_percentage): EXPECTED is long, not int.
10946         (print_percentage): Use floating-point arithmetic to avoid
10947         overflow with large files' sizes multiplied with 100.
10948
10949 1998-04-27  Gregor Hoffleit  <flight@mathi.uni-heidelberg.de>
10950
10951         * config.h.in: Added pid_t stub.
10952
10953         * sysdep.h (S_ISREG): Moved here from mswindows.h (NeXT doesn't
10954         define it).
10955
10956 1998-04-20  Hrvoje Niksic  <hniksic@srce.hr>
10957
10958         * version.c: Wget 1.5.0 is released.
10959
10960 1998-04-18  Hrvoje Niksic  <hniksic@srce.hr>
10961
10962         * url.c (str_url): Ditto.
10963
10964         * ftp-basic.c (ftp_rest): Use new name.
10965
10966         * utils.c (long_to_string): Renamed from prnum().
10967
10968 1998-04-16  Hrvoje Niksic  <hniksic@srce.hr>
10969
10970         * version.c: Wget 1.5-b17 is released.
10971
10972 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
10973
10974         * headers.c (header_get): New argument FLAGS.
10975
10976         * http.c (gethttp): If request is malformed, bail out of the
10977         header loop.
10978         (gethttp): Check for empty header *after* the status line checks.
10979         (gethttp): Disallow continuations for status line.
10980
10981 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
10982
10983         * version.c: Wget 1.5-b16 is released.
10984
10985 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
10986
10987         * init.c (commands): Renamed `always_rest' to `continue'.
10988
10989 1998-04-05  Hrvoje Niksic  <hniksic@srce.hr>
10990
10991         * all: Use it.
10992
10993         * log.c (logputs): New argument.
10994         (logvprintf): Ditto.
10995         (logprintf): Ditto.
10996
10997 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
10998
10999         * http.c (http_atotm): Update comment.
11000
11001         * main.c (i18n_initialize): Set LC_MESSAGES, not LC_ALL.
11002
11003         * wget.h: Renamed ENABLED_NLS to HAVE_NLS.
11004
11005         * main.c (i18n_initialize): New function.
11006         (main): Use it.
11007
11008         * log.c: Include <unistd.h>.
11009
11010         * retr.c (show_progress): Cast alloca to char *.
11011
11012 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
11013
11014         * version.c: Wget 1.5-b15 is released.
11015
11016 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
11017
11018         * utils.h: Declare file_non_directory_p().
11019
11020 1998-04-03  Hrvoje Niksic  <hniksic@srce.hr>
11021
11022         * main.c (main): It's `tries', not `numtries' now.
11023
11024 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
11025
11026         * init.c (getperms): Removed.
11027
11028 1998-04-01  Tim Charron  <tcharron@interlog.com>
11029
11030         * log.c (logvprintf): Don't use ARGS twice.
11031
11032 1998-04-01  John  <john@futuresguide.com>
11033
11034         * mswindows.c: Cleaned up.
11035
11036 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
11037
11038         * version.c: Wget 1.5-b14 is released.
11039
11040 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
11041
11042         * ftp-opie.c (STRLEN4): New macro.
11043         (btoe): Use it.
11044
11045 1998-04-01  Junio Hamano  <junio@twinsun.com>
11046
11047         * http.c: Document all the Digest functions.
11048
11049 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
11050
11051         * utils.c (file_non_directory_p): Renamed from isfile().
11052
11053         * mswindows.h (S_ISREG): New macro, suggested by Tim Adam.
11054
11055 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
11056
11057         * utils.c (mkdirhier): Use 0777 instead of opt.dirmode.
11058
11059         * init.c (cmd_spec_dotstyle): Use 48 dots per line for binary
11060         style.
11061         (cmd_permissions): Removed.
11062
11063         * config.h.in: Add template for WORDS_BIGENDIAN.
11064
11065 1998-03-31  Junio Hamano  <junio@twinsun.com>
11066
11067         * http.c (HEXD2asc): New macro.
11068         (dump_hash): Use it.
11069
11070 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
11071
11072         * version.c: Wget 1.5-b13 is released.
11073
11074 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
11075
11076         * main.c (main): Don't try to use `com'.
11077
11078 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
11079
11080         * init.c (cmd_permissions): New function.
11081
11082 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
11083
11084         * version.c: Wget 1.5-b12 is released.
11085
11086 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
11087
11088         * init.c (commands): Renamed `numtries' to `tries'.
11089         (cmd_spec_debug): Removed.
11090         (home_dir): Under Windows, return `C:\' if HOME is undefined.
11091
11092 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
11093
11094         * config.h.in: Define _XOPEN_SOURCE.
11095
11096         * init.c (check_user_specified_header): New function.
11097         (cmd_spec_header): Use it.
11098         (cmd_spec_useragent): New function.
11099
11100 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
11101
11102         * version.c: Wget 1.5-b11 is released.
11103
11104 1998-03-28  Hrvoje Niksic  <hniksic@srce.hr>
11105
11106         * wget.h: Include <libintl.h> only if NLS is enabled.
11107
11108 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
11109
11110         * options.h (struct options): Made `wait' a long.
11111         (struct options): Ditto for `timeout'.
11112
11113 1998-03-19  Hrvoje Niksic  <hniksic@srce.hr>
11114
11115         * utils.c (exists): Renamed to file_exists_p.
11116         (file_exists_p): Use access() if available.
11117
11118 1998-03-17  Hrvoje Niksic  <hniksic@srce.hr>
11119
11120         * utils.c (memfatal): Set save_log_p to 0 to avoid potential
11121         infloop.
11122
11123         * log.c: do_logging -> save_log_p.
11124
11125         * config.h.in: Added template for HAVE_VSNPRINTF.
11126
11127 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
11128
11129         * init.c: Ditto.
11130
11131         * http.c: Protect declaration against non-ANSI compiler.
11132
11133         * log.c (logvprintf): Use vsnprintf() if available.
11134
11135         * getopt.c (main): Don't translate test stuff.
11136
11137 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
11138
11139         * version.c: Wget 1.5-b10 is released.
11140
11141 1998-03-11  Hrvoje Niksic  <hniksic@srce.hr>
11142
11143         * ftp.c (getftp): Don't translate "CWD %s".
11144
11145         * wget.h (GCC_FORMAT_ATTR): Renamed from FORMAT_ATTR.
11146
11147 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
11148
11149         * ftp-opie.c (btoe): Use memcpy() instead of strncat().
11150
11151         * log.c (logputs): New function.
11152         (logvprintf): Renamed from vlogmsg; use logputs().
11153
11154         * retr.c (show_progress): Print `[100%]' when the retrieval is
11155         finished.
11156
11157         * init.c (run_wgetrc): Use FILE, not PATH.
11158         (wgetrc_file_name): Ditto.
11159
11160 1998-03-07  Tim Adam  <tma@osa.com.au>
11161
11162         * recur.c (parse_robots): Correctly reset `entries' on empty
11163         disallow.
11164
11165 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
11166
11167         * init.c (cmd_spec_debug): Use cmd_boolean().
11168
11169 1998-02-23  Hrvoje Niksic  <hniksic@srce.hr>
11170
11171         * http.c (gethttp): Create proxy-authorization correctly.
11172
11173 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
11174
11175         * md5.c: Ditto.
11176
11177         * getopt.c: Use ANSI function definitions.
11178
11179         * ftp-opie.c: New file.
11180
11181         * options.h: Don't redefine EXTERN.
11182
11183         * init.c: Sort it correctly.
11184
11185 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
11186
11187         * version.c: Wget 1.5-b9 is released.
11188
11189 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
11190
11191         * recur.c (recursive_retrieve): Reset `first_time'.
11192
11193         * ftp.c (getftp): Added `default' clause to switches of uerr_t.
11194
11195         * rbuf.c (rbuf_peek): Simplified.
11196         (rbuf_flush): Use MINVAL.
11197
11198         * wget.h (MINVAL): Moved from url.h.
11199
11200         * rbuf.h (RBUF_FD): New macro.
11201
11202         * url.c (add_url): Add to the head of the list.
11203
11204         * ftp.c (ftp_retrieve_list): Set the permissions to downloaded
11205         file.
11206         (getftp): Set the default permissions to 0600.
11207
11208 1998-02-21  Hrvoje Niksic  <hniksic@srce.hr>
11209
11210         * url.c (get_urls_html): Ditto.
11211         (convert_links): Ditto.
11212
11213         * recur.c (parse_robots): Ditto.
11214
11215         * html.c (ftp_index): Ditto.
11216
11217         * ftp-ls.c (ftp_parse_unix_ls): Open file as binary.
11218
11219         * init.c (defaults): Initialize `opt' to zero via memset.
11220
11221         * http.c (digest_authentication_encode): goto considered harmful.
11222
11223 1998-02-19  Hrvoje Niksic  <hniksic@srce.hr>
11224
11225         * ftp.c (delelement): Simplify and fix leak.
11226
11227 1998-02-18  Hrvoje Niksic  <hniksic@srce.hr>
11228
11229         * http.c (dump_hash): Use HEXD2ASC instead of home-grown stuff.
11230
11231         * url.h (HEXD2ASC): Removed warning.
11232
11233         * init.c (comind): Use binary search.
11234         (commands): Reorganized.
11235         (setval): Ditto.
11236         (cmd_boolean): New function.
11237         (cmd_number): Ditto.
11238         (cmd_number_inf): Ditto.
11239         (cmd_string): Ditto.
11240         (cmd_vector): Ditto.
11241         (cmd_directory_vector): Ditto.
11242         (cmd_bytes): Ditto.
11243         (cmd_time): Ditto.
11244         (cmd_spec_debug): Ditto.
11245         (cmd_spec_dirmode): Ditto.
11246         (cmd_spec_dirstruct): Ditto.
11247         (cmd_spec_dotstyle): Ditto.
11248         (cmd_spec_header): Ditto.
11249         (cmd_spec_htmlify): Ditto.
11250         (cmd_spec_mirror): Ditto.
11251         (cmd_spec_outputdocument): Ditto.
11252         (cmd_spec_recursive): Ditto.
11253         (settime): Merged with cmd_time().
11254         (setbytes): Merged with cmd_bytes().
11255         (setonoff): Merged with cmd_boolean().
11256         (onoff): Ditto.
11257
11258 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
11259
11260         * Makefile.in (distclean): Remove `config.h'.
11261
11262 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
11263
11264         * version.c: Wget 1.5-b8 is released.
11265
11266 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
11267
11268         * http.c (digest_authentication_encode): New function.
11269         (create_authorization_line): Use it.
11270         (dump_hash): New function.
11271         (digest_authentication_encode): Use it.
11272
11273         * fnmatch.c: Renamed from `mtch.c'.
11274
11275 1998-02-15  Karl Eichwalder  <ke@suse.de>
11276
11277         * main.c (main): Tag "Written by..." string as translatable.
11278
11279 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
11280
11281         * wget.h (FREE_MAYBE): New macro.
11282
11283         * http.c (create_authorization_line): Don't use ANSI C string
11284         concatenation feature.
11285         (basic_authentication_encode): Use alloca() for temporary
11286         variables.
11287
11288         * recur.h: Ditto.
11289
11290         * http.c: Ditto.
11291
11292         * headers.h: Ditto.
11293
11294         * ftp-basic.c: Protect declaration against non-ANSI compiler.
11295
11296         * http.c (create_authorization_line): Cast `unsigned char *' to
11297         `char *' for sprintf, to shut up the noisy Digital Unix cc.
11298
11299 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
11300
11301         * version.c: Wget 1.5-b7 is released.
11302
11303 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
11304
11305         * cmpt.c (strstr): Synched with glibc-2.0.6.
11306
11307         * ftp-basic.c (calculate_skey_response): Ditto.
11308         (calculate_skey_response): Use alloca().
11309
11310         * http.c (create_authorization_line): Work with FSF's version of
11311         md5.c.
11312
11313         * md5.c: New file, from GNU libc.
11314
11315 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
11316
11317         * url.h (URL_CLEANSE): Name the temporary variable more carefully.
11318
11319 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
11320
11321         * http.c (basic_authentication_encode): New function, instead of
11322         the macro.
11323
11324 1998-02-13  Junio Hamano  <junio@twinsun.com>
11325
11326         * http.c: Add HTTP-DA support.
11327         * ftp-basic.c: Add Opie/S-key support.
11328         * config.h.in, Makefile.in: Add HTTP-DA and Opie/S-key support.
11329         * md5.c, md5.h: New files.
11330
11331 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
11332
11333         * http.c (http_process_range): Renamed from hprocrange().
11334         (http_process_range): Parse the whole header.
11335
11336         * headers.c: New file.
11337         (header_process): New function.
11338         (header_get): Renamed from fetch_next_header.
11339
11340         * all: Include utils.h only where necessary.
11341
11342         * wget.h: Declare xmalloc(), xrealloc() and xstrdup() here.
11343
11344         * wget.h: Add provisions for dmalloc.
11345
11346 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
11347
11348         * version.c: Wget 1.5-b6 is released.
11349
11350 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
11351
11352         * ftp.c (ftp_loop): Determine `filename' more precisely.
11353
11354         * init.c (setval): Don't set `opt.quiet' if output-document is
11355         `-'.
11356
11357         * log.c (log_init): Print to STDERR instead of STDOUT.
11358         (vlogmsg): Use STDERR by default.
11359         (logflush): Ditto.
11360
11361 1998-02-11  Simon Josefsson  <jas@pdc.kth.se>
11362
11363         * host.c: Use addr_in again.
11364
11365 1998-02-08  Karl Eichwalder  <karl@suse.de>
11366
11367         * http.c (gethttp): Fixed typo.
11368
11369 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
11370
11371         * version.c: Wget 1.5-b5 is released.
11372
11373 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
11374
11375         * retr.c (show_progress): Use it.
11376
11377         * log.c (logflush): New function.
11378
11379         * wget.h: Utilize __attribute__ if on gcc.
11380
11381 1998-02-07  Hrvoje Niksic  <hniksic@srce.hr>
11382
11383         * http.c (base64_encode_line): New argument LENGTH.
11384         (BASIC_AUTHENTICATION_ENCODE): Use it.
11385         (BASIC_AUTHENTICATION_ENCODE): Take length of HEADER into account.
11386
11387         * main.c (main): Fixed fprintf() format mismatch.
11388
11389 1998-02-06  Hrvoje Niksic  <hniksic@srce.hr>
11390
11391         * version.c: Wget 1.5-b4 is released.
11392
11393 1998-02-03  Simon Josefsson  <jas@pdc.kth.se>
11394
11395         * host.c: use sockaddr_in instead of addr_in.
11396
11397 1998-02-04  Hrvoje Niksic  <hniksic@srce.hr>
11398
11399         * init.c (cleanup): Use it.
11400
11401         * recur.c (recursive_cleanup): New function.
11402
11403         * retr.c (retrieve_from_file): Ditto.
11404
11405         * main.c (main): Use it.
11406
11407         * recur.c (recursive_reset): New function.
11408
11409         * retr.c (retrieve_from_file): Ditto.
11410
11411         * main.c (main): Simplify call to recursive_retrieve().
11412
11413         * recur.c (recursive_retrieve): Removed FLAGS argument.
11414
11415         * http.c (gethttp): Changed call to iwrite().
11416
11417 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
11418
11419         * url.c (get_urls_html): Ditto.
11420         (free_urlpos): Ditto.
11421         (mkstruct): Ditto.
11422         (construct): Ditto.
11423
11424         * retr.c (retrieve_url): Move declaration of local variables to
11425         smaller scope.
11426
11427         * url.c (urlproto): Use it.
11428         (parseurl): Ditto.
11429         (str_url): Ditto.
11430         (get_urls_html): Ditto.
11431
11432         * utils.h (ARRAY_SIZE): New macro.
11433
11434         * url.c (proto): Moved from url.h.
11435
11436         * url.h (URL_CLEANSE): Reformatted.
11437         (USE_PROXY_P): Renamed from USE_PROXY.
11438
11439         * ftp-basic.c: Adjust to the new interface of iwrite().
11440
11441         * ftp-basic.c (ftp_port): Use alloca().
11442
11443 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
11444
11445         * version.c: Wget 1.5-b3 is released.
11446
11447         * host.c (ftp_getaddress): Don't print to stderr directly.
11448
11449         * init.c (setbytes): Support `g' for gigabytes.
11450         (cmdtype): New specification CTIME.
11451         (setval): Use it with settime().
11452         (commands): Use it for WAIT and TIMEOUT.
11453
11454 1998-02-02  Hrvoje Niksic  <hniksic@srce.hr>
11455
11456         * http.c (BASIC_AUTHENTICATION_ENCODE): New macro.
11457         (gethttp): Use it.
11458
11459         * utils.c (unique_name_1): Moved from url.c.
11460         (unique_name): Ditto.
11461
11462         * url.c (url_filename): Ditto.
11463
11464         * log.c (redirect_output): Changed call to unique_name().
11465
11466         * url.c (unique_name_1): Renamed from unique_name().
11467         (unique_name): Changed interface.
11468
11469         * init.c (enum cmdid): Moved from init.h.
11470         (cmdtype): Ditto.
11471         (struct cmd): Ditto.
11472
11473         * main.c (main): Use it.
11474         (main): Moved `--backups' to not have a short option.
11475
11476         * options.h (struct options): New member BACKGROUND.
11477
11478         * main.c (print_help): Rearranged.
11479         (main): New long options for -n* short options: --no-directories,
11480         --no-host-directories, --non-verbose, --no-host-lookup and
11481         --dont-remove-listing.
11482
11483 1998-02-01  Hrvoje Niksic  <hniksic@srce.hr>
11484
11485         * main.c (main): Use log_close().
11486
11487         * log.c: New variable LOGFP.
11488         (vlogmsg): Use it.
11489         (redirect_output): Don't open /dev/null; set LOGFP to stdin
11490         instead.
11491         (log_close): New function.
11492
11493         * options.h (struct options): Removed LFILE.
11494
11495         * log.c (log_enable): Removed.
11496
11497         * main.c (main): Use it.
11498
11499         * log.c (log_init): New function.
11500
11501         * url.c (get_urls_html): Removed needless assignment to BASE.
11502
11503         * host.c (add_hlist): Don't set CMP needlessly.
11504
11505         * utils.c (match_backwards): Ditto.
11506         (in_acclist): Ditto.
11507
11508         * url.c (findurl): Ditto.
11509
11510         * netrc.c (parse_netrc): Ditto.
11511
11512         * log.c (log_dump): Ditto.
11513
11514         * html.c (html_quote_string): Ditto.
11515
11516         * ftp-basic.c (ftp_request): Made static.
11517
11518         * connect.c: Made global variables static.
11519
11520         * url.c (construct): Ditto.
11521
11522         * init.c (init_path): Avoid assignment inside `if'-condition.
11523
11524         * ftp.c: Don't include in.h or winsock.h.
11525
11526         * ftp.c (ftp_loop): Use SZ.
11527
11528         * connect.c (bindport): Cast &addrlen to int *.
11529         (conaddr): Ditto.
11530
11531         * init.c (initialize): Don't use SYSTEM_WGETRC unconditionally.
11532
11533 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
11534
11535         * ftp.c (getftp): Initialize opt.ftp_pass here.
11536         (ftp_retrieve_dirs): Use alloca().
11537
11538         * init.c (defaults): Don't initialize opt.ftp_pass.
11539
11540         * sysdep.h (S_ISLNK): Declare for OS/2; ditto for lstat.
11541         From Ivan F. Martinez <ivanfm@ecodigit.com.br>.
11542
11543 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
11544
11545         * recur.c (parse_robots): Check for comments more correctly.
11546
11547         * host.c (ftp_getaddress): Use STRDUP_ALLOCA.
11548         (ftp_getaddress): Add diagnostics when reverse-lookup yields only
11549         hostname.
11550
11551 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
11552
11553         * version.c: Wget 1.5-b2 is released.
11554
11555         * netrc.c (NETRC_FILE_NAME): Moved from netrc.h.
11556
11557         * utils.c (proclist): Pass FNM_PATHNAME to fnmatch().
11558
11559         * ftp-basic.c (ftp_pasv): Avoid unnecessary casting to unsigned
11560         char.
11561
11562         * log.c: Don't attempt to hide arguments from ansi2knr.
11563
11564         * cmpt.c: Synched strptime() and mktime() with glibc-2.0.6.
11565
11566         * ansi2knr.c: Use a later version, from fileutils-3.16l alpha.
11567
11568         * ftp.c (getftp): Ditto.
11569
11570         * http.c (gethttp): Use it.
11571
11572         * retr.c (get_contents): New argument EXPECTED; pass it to
11573         show_progress().
11574         (show_progress): New argument EXPECTED; use it to display
11575         percentages.
11576
11577         * init.c (setval): Ditto.
11578
11579         * http.c (gethttp): Ditto.
11580         (http_loop): Ditto.
11581
11582         * ftp.c (getftp): Ditto.
11583         (ftp_loop_internal): Ditto.
11584
11585         * ftp-ls.c (ftp_parse_unix_ls): Use abort() instead of assert(0).
11586
11587         * sysdep.h (CLOSE): Simplify; use DEBUGP.
11588
11589         * netrc.c (search_netrc): Use alloca().
11590
11591         * init.c (defaults): Initialize no_flush.
11592
11593         * log.c (vlogmsg): Don't flush if no_flush.
11594
11595         * options.h (struct options): New variable no_flush.
11596
11597         * main.c (main): Don't play games with buffering.
11598
11599         * log.c (vlogmsg): Flush the output after every message.
11600
11601 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
11602
11603         * init.c (parse_line): Ditto.
11604
11605         * url.c (get_urls_html): Ditto.
11606
11607         * main.c (main): Don't cast to unsigned char.
11608
11609         * init.c (run_wgetrc): Don't cast to unsigned char.
11610         (parse_line): Accept char instead of unsigned char.
11611
11612         * html.c (htmlfindurl): Use char instead of unsigned char.
11613
11614         * all: Use them.
11615
11616         * sysdep.h: Add wrappers to ctype macros to make them
11617         eight-bit-clean:
11618
11619 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
11620
11621         * html.c (htmlfindurl): Download <img lowsrc=...>
11622
11623         * main.c (main): Ignore SIGPIPE.
11624
11625         * connect.c (select_fd): New argument WRITEP.
11626         (iwrite): Call select_fd().
11627
11628 1997-02-27  Fila Kolodny <fila@ibi.com>
11629
11630         * ftp.c (ftp_retrieve_list): If retrieving symlink and the proper
11631         one already exists, just skip it.
11632
11633 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
11634
11635         * http.c (gethttp): Cosmetic changes.
11636
11637         * http.c (check_end): Allow `+D...' instead of `GMT'.
11638         From Fabrizio Pollastri <pollastri@cstv.to.cnr.it>.
11639
11640         * url.c (process_ftp_type): New function.
11641         (parseurl): Use it.
11642
11643         * connect.c (iwrite): Allow writing in a few chunks.
11644         (bindport): Made SRV static, so addr can point to it.
11645         (select_fd): Removed HPUX kludge.
11646
11647         * host.c (free_hlist): Incorporated into clean_hosts().
11648
11649 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
11650
11651         * host.c (hlist): Made static.
11652         (search_address): Cosmetic change.
11653
11654 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
11655
11656         * version.c: Wget v1.5-b1 is released.
11657
11658         * http.c (hgetlen): Use sizeof() to get the header length.
11659         (hgetrange): Ditto.
11660         (hgettype): Ditto.
11661         (hgetlocation): Ditto.
11662         (hgetmodified): Ditto.
11663         (haccepts_none): Ditto.
11664
11665         * main.c (main): Updated `--version' and `--help' output, as per
11666         Francois Pinard's suggestions.
11667
11668         * main.c: Include locale.h; call setlocale(), bindtextdomain() and
11669         textdomain().
11670
11671         * config.h.in: Define stubs for I18N3.
11672
11673         * wget.h: Include libintl.h.
11674
11675 1998-01-28  Hrvoje Niksic  <hniksic@srce.hr>
11676
11677         * url.c (mkstruct): Check for opt.cut_dirs.
11678         (mkstruct): alloca()-te more, xmalloc() less.
11679
11680         * utils.c (load_file): Check for ferror().
11681
11682         * url.c (get_urls_file): Close only the files we opened.
11683         (get_urls_html): Ditto.
11684         (count_slashes): New function.
11685
11686         * http.h: Removed.
11687
11688         * http.c (gethttp): Respect username and password provided by
11689         proxy URL.
11690         (base64_encode_line): Write into an existing buffer instead of
11691         malloc-ing a new one.
11692         (struct http_stat): Moved from http.h
11693
11694         * retr.c (retrieve_url): Free SUF.
11695
11696         * all: Removed lots of unnecessary .h dependencies.
11697
11698         * html.c (global_state): Made static.
11699
11700         * utils.h (ALLOCA_ARRAY): New macro.
11701
11702         * main.c (main): New option `--cut-dirs'.
11703
11704         * url.c (construct): Use alloca() for T.
11705
11706         * utils.c (mkdirhier): Use STRDUP_ALLOCA.
11707
11708         * host.c (_host_t): Moved from host.h.
11709         (struct host): Renamed from _host_t.
11710         (store_hostaddress): Use STRDUP_ALLOCA for INET_S.
11711         (realhost): Ditto.
11712
11713         * host.h: Don't include url.h.
11714
11715         * ftp.c (LIST_FILENAME): Moved from ftp.h.
11716
11717         * init.c (DEFAULT_FTP_ACCT): Moved from ftp.h.
11718
11719         * main.c (main): Enable log if the output goes to a TTY.
11720
11721         * connect.h: Removed unused constant `BACKLOG'.
11722
11723         * config.h.in: Check for isatty().
11724
11725         * Makefile.in (LINK): Use CFLAGS when linking.
11726
11727 1998-01-27  Hrvoje Niksic  <hniksic@srce.hr>
11728
11729         * mswindows.c (ws_hangup): Use redirect_output().
11730
11731         * main.c (redirect_output_signal): New function; use
11732         redirect_output().
11733
11734         * log.c (redirect_output): New function, based on hangup(), which
11735         is deleted.
11736
11737         * log.c (vlogmsg): New function.
11738
11739         * wget.h (DEBUGP): Use debug_logmsg().
11740
11741         * main.c (hangup): Use it.
11742
11743         * log.c (log_dump): New function.
11744
11745         * utils.h (DO_REALLOC): Use `long' for various sizes.
11746
11747         * http.c (hskip_lws): Use `while', for clarity.
11748         (HTTP_DYNAMIC_LINE_BUFFER): New constant.
11749         (fetch_next_header): Use it instead of DYNAMIC_LINE_BUFFER.
11750
11751         * ftp-basic.c (FTP_DYNAMIC_LINE_BUFFER): New constant.
11752         (ftp_response): Use it instead of DYNAMIC_LINE_BUFFER.
11753
11754         * utils.c (DYNAMIC_LINE_BUFFER): Moved from utils.c.
11755         (LEGIBLE_SEPARATOR): Ditto.
11756         (FILE_BUFFER_SIZE): Ditto.
11757
11758         * retr.c (BUFFER_SIZE): Moved from retr.h.
11759
11760         * log.c: New file.
11761         (logmsg): Moved from utils.c.
11762         (debug_logmsg): New function.
11763
11764         * mswindows.h: Include it here.
11765
11766         * init.c: Ditto.
11767
11768         * utils.c: Don't include <windows.h>.
11769
11770 1998-01-25  Hrvoje Niksic  <hniksic@srce.hr>
11771
11772         * host.c (ftp_getaddress): Ditto.
11773
11774         * main.c (main): Use it.
11775
11776         * utils.h (STRDUP_ALLOCA): New macro.
11777
11778         * init.c: Prepend `wget: ' to error messages printed on stderr.
11779
11780         * utils.c (mkdirhier): Renamed from mymkdir.
11781         (touch): Renamed from my_touch.
11782         (pwd_cuserid): Renamed from my_cuserid().
11783
11784 1998-01-24  Andy Eskilsson  <andy.eskilsson@telelogic.se>
11785
11786         * utils.c (accdir): Process wildcards.
11787         (proclist): New function.
11788         (accdir): Use it to avoid code repetition.
11789
11790 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
11791
11792         * recur.c (parse_robots): Respect opt.useragent; use alloca().
11793
11794         * http.c (gethttp): Construct useragent accordingly.
11795
11796         * version.c: Changed version string to numbers-only.
11797
11798         * main.c (print_help): List all the options.
11799
11800         * mswindows.c (windows_main_junk): Initialize argv0 here.
11801
11802 1998-01-24  Karl Heuer  <kwzh@gnu.org>
11803
11804         * netrc.c (search_netrc): Initialize `l' only after processing
11805         netrc.
11806
11807         * main.c (main): Don't trap SIGHUP if it's being ignored.
11808
11809 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
11810
11811         * all: Use logmsg().
11812
11813         * utils.c (time_str): Moved from retr.c.
11814         (logmsg): New function.
11815         (logmsg_noflush): Ditto.
11816
11817         * rbuf.c: New file, moved buf_* functions here.
11818
11819         * ftp.c (ftp_expected_bytes): Moved from ftp-basic.c.
11820
11821         * ftp-basic.c (ftp_rest): Use prnum().
11822
11823         * ftp-basic.c: Ditto.
11824
11825         * ftp.c: Use the new reading functions and macros.
11826
11827         * retr.c (buf_initialize): New function.
11828         (buf_initialized_p): Ditto.
11829         (buf_uninitialize): Ditto.
11830         (buf_fd): Ditto.
11831
11832         * http.c (fetch_next_header): Use the BUF_READCHAR macro for
11833         efficiency.
11834         (gethttp): Use alloca() where appropriate.
11835
11836         * retr.c (buf_readchar): Use it.
11837         (buf_peek): Use rstreams.
11838
11839         * retr.h (BUF_READCHAR): New macro.
11840
11841         * init.c (home_dir): Rewritten for clarity.
11842         (init_path): Ditto.
11843
11844         * mswindows.c (ws_backgnd): Made static.
11845         (read_registry): Ditto.
11846         (ws_cleanup): Ditto.
11847         (ws_handler): Ditto.
11848
11849 1998-01-23  Hrvoje Niksic  <hniksic@srce.hr>
11850
11851         * alloca.c: New file.
11852
11853         * Makefile.in (ALLOCA): Define.
11854
11855         * mswindows.c (ws_help): Constify.
11856         (ws_help): Use alloca.
11857
11858         * mswindows.c: Reformat.
11859
11860         * all: Added _(...) annotations for I18N snarfing and translation.
11861
11862         * host.c (ftp_getaddress): Nuke SYSINFO.
11863         (ftp_getaddress): Don't use getdomainname().
11864         (ftp_getaddress): Use uname(), where available.
11865
11866         * http.c (gethttp): Protect a stray fprintf().
11867
11868         * init.c (settime): New function.
11869         (setval): Treat WAIT specially, allowing suffixes like `m' for
11870         minutes, etc.
11871
11872 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
11873
11874         * url.c (get_urls_html): Use alloca() for TEMP.
11875
11876 1998-01-21  Jordan Mendelson  <jordy@wserv.com>
11877
11878         * url.c (rotate_backups): New function.
11879
11880         * http.c (gethttp): Ditto.
11881
11882         * ftp.c (getftp): Rotate backups.
11883
11884 1997-12-18  Hrvoje Niksic  <hniksic@srce.hr>
11885
11886         * all: Renamed nmalloc(), nrealloc() and nstrdup() to xmalloc(),
11887         xrealloc() and xstrdup().  Use the new functions.
11888
11889         * url.c (decode_string): Made static.
11890         (has_proto): Ditto.
11891         (parse_dir): Ditto.
11892         (parse_uname): Ditto.
11893         (mkstruct): Ditto.
11894         (construct): Ditto.
11895         (construct_relative): Ditto.
11896
11897         * retr.c (show_progress): Made static.
11898
11899         * recur.c (robots_url): Made static.
11900         (retrieve_robots): Ditto.
11901         (parse_robots): Ditto.
11902         (robots_match): Ditto.
11903
11904         * main.h: Removed.
11905
11906         * main.c (printhelp): Made static.
11907         (hangup): Ditto.
11908
11909         * init.c (comind): Made static.
11910         (defaults): Ditto.
11911         (init_path): Ditto.
11912         (run_wgetrc): Ditto.
11913         (onoff): Ditto.
11914         (setonoff): Ditto.
11915         (setnum): Ditto.
11916         (myatoi): Ditto.
11917         (getperms): Ditto.
11918         (setbytes): Ditto.
11919
11920         * http.c (fetch_next_header): Made static.
11921         (hparsestatline): Ditto.
11922         (hskip_lws): Ditto.
11923         (hgetlen): Ditto.
11924         (hgetrange): Ditto.
11925         (hgettype): Ditto.
11926         (hgetlocation): Ditto.
11927         (hgetmodified): Ditto.
11928         (haccepts_none): Ditto.
11929         (gethttp): Ditto.
11930         (base64_encode_line): Ditto.
11931         (mktime_from_utc): Ditto.
11932         (http_atotm): Ditto.
11933
11934         * html.c (idmatch): Made static.
11935
11936         * host.c (search_host): Made static.
11937         (search_address): Ditto.
11938         (free_hlist): Ditto.
11939
11940         * ftp.c (getftp): Made static.
11941         (ftp_loop_internal): Ditto.
11942         (ftp_get_listing): Ditto.
11943         (ftp_retrieve_list): Ditto.
11944         (ftp_retrieve_dirs): Ditto.
11945         (ftp_retrieve_glob): Ditto.
11946         (freefileinfo): Ditto.
11947         (delelement): Ditto.
11948
11949         * ftp-ls.c (symperms): Made static.
11950         (ftp_parse_unix_ls): Ditto.
11951
11952         * connect.c (select_fd): Made static.
11953
11954         * utils.c (xmalloc): Renamed from nmalloc.
11955         (xrealloc): Renamed from nrealloc.
11956         (xstrdup): Renamed from nstrdup.
11957
11958         * getopt.c (exchange): Use alloca.
11959
11960         * mswindows.c (mycuserid): Use strncpy.
11961
11962         * New files mswindows.c, mswindows.h, sysdep.h.  winjunk.c,
11963         systhings.h, windecl.h and winjunk.h removed.
11964
11965         * mswindows.c (sleep): New function.
11966
11967         * utils.c: Include <windows.h> under Windows.
11968
11969 1997-06-12  Darko Budor  <dbudor@zesoi.fer.hr>
11970
11971         * url.h (URL_UNSAFE): Change default under Windows.
11972
11973         * retr.c (retrieve_from_file): Respect opt.delete_after.
11974
11975         * main.c (main): Call ws_help on Windows.
11976
11977         * winjunk.c (windows_main_junk): New function.
11978
11979         * main.c (main): Junk-process argv[0].
11980
11981         * http.c (mktime_from_utc): Return -1 if mktime failed.
11982
11983         * http.c (http_loop): Ditto.
11984
11985         * ftp.c (ftp_loop_internal): Change title on Windows when using a
11986         new URL.
11987
11988         * winjunk.c (getdomainname): Lots of functions.
11989
11990 1997-06-12  Hrvoje Niksic  <hniksic@srce.hr>
11991
11992         * cmpt.c (strptime_internal): Handle years more correctly for
11993         `%y'.
11994
11995 1997-06-09  Mike Thomas <mthomas@reality.ctron.com>
11996
11997         * http.c (gethttp): Allocate enough space for
11998         `Proxy-Authorization' header.
11999
12000 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
12001
12002         * version.c: Wget/1.4.5 is released.
12003
12004 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
12005
12006         * retr.c (get_contents): Check return value of fwrite more
12007         carefully.
12008
12009 1997-03-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
12010
12011         * cmpt.c (strptime_internal) [case 'Y']: Always subtract 1900 from
12012         year, regardless of century.
12013
12014 1997-03-30  Hrvoje Niksic  <hniksic@srce.hr>
12015
12016         * utils.c (isfile): Use `lstat' instead of `stat'.
12017
12018 1997-03-29  Hrvoje Niksic  <hniksic@srce.hr>
12019
12020         * utils.c (numdigit): Use explicit test.
12021
12022 1997-03-21  Hrvoje Niksic  <hniksic@srce.hr>
12023
12024         * http.c (http_loop): Always use `url_filename' to get u->local.
12025
12026 1997-03-20  Hrvoje Niksic  <hniksic@srce.hr>
12027
12028         * url.c: Recognize https.
12029
12030 1997-03-13  Hrvoje Niksic  <hniksic@srce.hr>
12031
12032         * recur.c (recursive_retrieve): Lowercase just the host name.
12033
12034 1997-03-09  Hrvoje Niksic  <hniksic@srce.hr>
12035
12036         * url.c (get_urls_file): Use the correct test.
12037         (get_urls_html): Ditto.
12038
12039 1997-03-07  Hrvoje Niksic  <hniksic@srce.hr>
12040
12041         * connect.c: Reverted addrlen to int.
12042
12043         * init.c (parse_line): Check for -1 instead of NONE.
12044
12045         * version.c: Changed version to 1.4.5.
12046
12047 1997-02-17  Hrvoje Niksic  <hniksic@srce.hr>
12048
12049         * init.c: New option netrc.
12050         (initialize): Don't parse .netrc.
12051
12052         * cmpt.c (recursive): Return rp.
12053         (strptime_internal): Match the long strings first, the abbreviated
12054         second.
12055
12056 1997-02-16  Hrvoje Niksic  <hniksic@srce.hr>
12057
12058         * http.c (check_end): New function.
12059         (http_atotm): Use it.
12060
12061 1997-02-13  gilles Cedoc  <gilles@cedocar.fr>
12062
12063         * http.c (gethttp): Use them.
12064
12065         * init.c: New options proxy_user and proxy_passwd.
12066
12067 1997-02-14  Hrvoje Niksic  <hniksic@srce.hr>
12068
12069         * ftp.c (ftp_retrieve_list): Create links even if not relative.
12070
12071 1997-02-10  Hrvoje Niksic  <hniksic@srce.hr>
12072
12073         * recur.c (recursive_retrieve): Lowercase the host name, if the
12074         URL is not "optimized".
12075
12076         * host.c (realhost): Return l->hostname, even if it matches with
12077         host.
12078
12079 1997-02-10  Marin Purgar  <pmc@asgard.hr>
12080
12081         * connect.c: Make addrlen size_t instead of int.
12082         (conaddr): Ditto.
12083
12084 1997-02-09  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
12085
12086         * systhings.h: Define S_ISLNK on NeXT too.
12087
12088 1997-02-09  Hrvoje Niksic  <hniksic@srce.hr>
12089
12090         * version.c: Released 1.4.3.
12091
12092         * url.c: Futher update to list of protostrings.
12093         (skip_proto): Skip `//' correctly for FTP and HTTP.
12094
12095         * url.c (get_urls_html): Handle bogus `http:' things a little
12096         different.
12097
12098         * main.c (main): Removed `follow-ftp' from `f'.
12099         (main): Dumped the `prefix-files' and `file-prefix' options and
12100         features; old and bogus.
12101         (main): Exit on failed setval() in `-e'.
12102
12103         * http.c (fetch_next_header): Use it to detect header continuation
12104         correctly.
12105
12106         * retr.c (buf_peek): New function.
12107
12108 1997-02-08  Hrvoje Niksic  <hniksic@srce.hr>
12109
12110         * wget.h: Include time.h and stuff.
12111
12112 1997-02-08  Roger Beeman  <beeman@cisco.com>
12113
12114         * ftp.c: Include <time.h>
12115
12116 1997-02-07  Hrvoje Niksic  <hniksic@srce.hr>
12117
12118         * url.c (findurl): Would read over buffer limits.
12119
12120 1997-02-06  Hrvoje Niksic  <hniksic@srce.hr>
12121
12122         * ftp-ls.c (ftp_parse_unix_ls): Allow spaces in file names.
12123
12124 1997-02-05  Hrvoje Niksic  <hniksic@srce.hr>
12125
12126         * http.c (http_atotm): Initialize tm.is_dst.
12127
12128 1997-02-02  Hrvoje Niksic  <hniksic@srce.hr>
12129
12130         * http.c (gethttp): Don't print the number of retrieved headers.
12131
12132         * main.c (main): New option `--no-clobber', alias for `-nc'.
12133
12134         * url.c: Recognize `https://'.
12135
12136 1997-02-01  Hrvoje Niksic  <hniksic@srce.hr>
12137
12138         * host.c (herrmsg): Don't use h_errno.
12139
12140 1997-01-30  Hrvoje Niksic  <hniksic@srce.hr>
12141
12142         * host.c (accept_domain): Use it.
12143
12144         * main.c (main): New option `--exclude-domains'.
12145
12146         * retr.c (retrieve_url): Use it.
12147         (retrieve_url): Bail out when an URL is redirecting to itself.
12148
12149         * url.c (url_equal): New function.
12150
12151 1997-01-29  Hrvoje Niksic  <hniksic@srce.hr>
12152
12153         * connect.c: Include arpa/inet.h instead of arpa/nameser.h.
12154
12155         * http.c (mk_utc_time): New function.
12156         (http_atotm): Use it; handle time zones correctly.
12157
12158 1997-01-28  Hrvoje Niksic  <hniksic@srce.hr>
12159
12160         * http.c: Ditto.
12161
12162         * ftp-basic.c: Use it instead of WRITE.
12163
12164         * connect.c (iwrite): New function.
12165
12166 1997-01-27  Hrvoje Niksic  <hniksic@srce.hr>
12167
12168         * cmpt.c (mktime): New function.
12169
12170         * netrc.c: Include <sys/types.h>.
12171
12172         * main.c (main): Wouldn't recognize --spider.
12173
12174         * retr.c (rate): Use `B', `KB' and `MB'.
12175         (reset_timer,elapsed_time): Moved from utils.c.
12176
12177         * ftp.c (ftp_retrieve_list): Ditto.
12178
12179         * http.c (http_loop): Don't touch the file if opt.dfp.
12180
12181 1997-01-24  Hrvoje Niksic  <hniksic@srce.hr>
12182
12183         * cmpt.c: New file.
12184
12185         * ftp.c (ftp_retrieve_glob): New argument semantics.
12186         (ftp_retrieve_dirs): Use it.
12187         (ftp_loop): Ditto.
12188
12189         * html.c (htmlfindurl): Recognize `'' as the quote char.
12190
12191 1997-01-23  Hrvoje Niksic  <hniksic@srce.hr>
12192
12193         * ftp.c (ftp_loop_internal): Use it.
12194
12195         * utils.c (remove_link): New function.
12196
12197 1997-01-22  Hrvoje Niksic  <hniksic@srce.hr>
12198
12199         * retr.c (retrieve_url): Require STRICT redirection URL.
12200
12201         * url.c (parseurl): New argument STRICT.
12202
12203         * http.c (hparsestatline): Be a little-bit less strict about
12204         status line format.
12205
12206 1997-01-21  Hrvoje Niksic  <hniksic@srce.hr>
12207
12208         * http.c (gethttp): Use it.
12209
12210         * main.c (main): Don't use '<digit>' as options.
12211
12212         * init.c: New option ignore_length.
12213
12214         * http.c (gethttp): Ditto.
12215         (http_loop): Check for redirection without Location:.
12216         (gethttp): Don't print Length unless RETROKF.
12217
12218         * ftp.c (getftp): Use it.
12219
12220         * url.c (mkalldirs): New function.
12221
12222         * utils.c (mymkdir): Don't check for existing non-directory.
12223
12224         * url.c (mkstruct): Don't create the directory.
12225
12226 1997-01-20  Hrvoje Niksic  <hniksic@srce.hr>
12227
12228         * init.c (setval): Removed NO_RECURSION checks.
12229
12230 1997-01-19  Hrvoje Niksic  <hniksic@srce.hr>
12231
12232         * version.c: "Released" 1.4.3-pre2.
12233
12234         * recur.c (recursive_retrieve): Bypass host checking only if URL
12235         is ftp AND parent URL is not ftp.
12236
12237         * ftp-basic.c (ftp_request): Print out Turtle Power.
12238
12239         * ftp.c (ftp_loop): Call ftp_retrieve_glob with 0 if there's no
12240         wildcard.
12241         (ftp_retrieve_glob): Call ftp_loop_internal even on empty list, if
12242         not glob.
12243
12244         * http.c (gethttp): Be a little bit smarter about status codes.
12245
12246         * recur.c (recursive_retrieve): Always reset opt.recursive when
12247         dealing with FTP.
12248
12249 1997-01-18  Hrvoje Niksic  <hniksic@srce.hr>
12250
12251         * retr.c (retrieve_url): New variable location_changed; use it for
12252         tests instead of mynewloc.
12253         (retrieve_url): Allow heuristic adding of html.
12254
12255         * url.c (url_filename): Don't use the `%' in Windows file names.
12256
12257         * http.c (http_loop): Always time-stamp the local file.
12258
12259         * http.c (http_loop): Ditto.
12260
12261         * ftp.c (ftp_retrieve_list): Use it.
12262
12263         * utils.c (my_touch): New function.
12264
12265         * ftp.c (ftp_retrieve_list): Use #ifdef HAVE_STRUCT_UTIMBUF
12266         instead of #ifndef NeXT.
12267
12268         * utils.c (strptime): New version, by Ulrich Drepper.
12269
12270 1997-01-17  Hrvoje Niksic  <hniksic@srce.hr>
12271
12272         * http.c (haccepts_none): Renamed from `haccepts_bytes'.
12273         (gethttp): If haccepts_none(), disable ACCEPTRANGES.
12274         (http_loop): Would remove ACCEPTRANGES.
12275
12276         * ftp.c (getftp): Call ftp_list with NULL.
12277
12278 1997-01-15  Hrvoje Niksic  <hniksic@srce.hr>
12279
12280         * html.c (ftp_index): Don't print minutes and seconds if we don't
12281         know them; beautify the output.
12282
12283         * ftp.c (getftp): Don't close the socket on FTPNSFOD.
12284
12285 1997-01-14  Hrvoje Niksic  <hniksic@srce.hr>
12286
12287         * utils.c (strptime): New function.
12288         (strptime): Don't use get_alt_number.
12289         (strptime): Don't use locale.
12290         (match_string): Made it a function.
12291
12292 1997-01-12  Hrvoje Niksic  <hniksic@srce.hr>
12293
12294         * http.c (http_atotm): New function.
12295         (http_loop): Use it.
12296
12297         * atotm.c: Removed from the distribution.
12298
12299         * http.c (base64_encode_line): Rewrite.
12300
12301 1997-01-09  Hrvoje Niksic  <hniksic@srce.hr>
12302
12303         * ftp.c (getftp): Use ftp_expected_bytes; print size.
12304
12305         * ftp-basic.c (ftp_response): Use ftp_last_respline.
12306         (ftp_expected_bytes): New function.
12307
12308         * ftp.c (getftp): Print the unauthoritative file length.
12309
12310         * ftp-ls.c: Renamed from ftp-unix.c.
12311         (ftp_parse_ls): Moved from ftp.c.
12312         (ftp_parse_unix_ls): Recognize seconds in time spec.
12313         (ftp_parse_unix_ls): Recognize year-less dates of the previous
12314         year.
12315
12316 1997-01-08  Hrvoje Niksic  <hniksic@srce.hr>
12317
12318         * ftp-basic.c: Don't declare errno if #defined.
12319
12320         * host.c (ftp_getaddress): Check for sysinfo legally.
12321
12322 1997-01-08  Darko Budor  <dbudor@diana.zems.fer.hr>
12323
12324         * connect.c (iread): Use READ.
12325
12326 1996-12-23  Hrvoje Niksic  <hniksic@srce.hr>
12327
12328         * url.c: Recognize finger, rlogin, tn3270, mid and cid as valid
12329         schemes.
12330
12331 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
12332
12333         * host.c (ftp_getaddress): Allow `.' in hostname.
12334
12335 1996-12-26  Darko Budor <dbudor@zems.fer.hr>
12336
12337         * wget.h: READ and WRITE macros for use instead of read and write
12338         on sockets, grep READ *.c, grep WRITE *.c
12339
12340         * wsstartup.c: new file - startup for winsock
12341
12342         * wsstartup.h: new file
12343
12344         * win32decl.h: new file - fixup for <errno.h> and winsock trouble
12345
12346         * configure.bat: Configure utility for MSVC
12347
12348         * src/Makefile.ms,config.h.ms: new files for use with MSVC 4.x
12349
12350 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
12351
12352         * version.c: Released 1.4.3-pre.
12353
12354         * utils.c (prnum): Accept long.
12355         (legible): Use prnum().
12356
12357         * connect.c (make_connection): Accept port as short.
12358         (bindport): Ditto.
12359
12360         * http.c (gethttp): Use search_netrc.
12361
12362 1996-12-21  Hrvoje Niksic  <hniksic@srce.hr>
12363
12364         * ftp.c (getftp): Use search_netrc.
12365
12366         * netrc.c (free_netrc): New function.
12367
12368         * init.c (home_dir): New function.
12369
12370         * url.c (convert_links): Allow REL2ABS changes.
12371
12372 1996-12-21  Gordon Matzigkeit  <gord@gnu.ai.mit.edu>
12373
12374         * netrc.c: New file.
12375         (parse_netrc, maybe_add_to_list): New functions.
12376
12377 1996-12-17  Hrvoje Niksic  <hniksic@srce.hr>
12378
12379         * retr.c (retrieve_url): Reset opt.recursion before calling
12380         ftp_loop if it is reached through newloc.
12381
12382         * init.c (run_wgetrc): Print the wgetrc path too, when reporting
12383         error; don't use "Syntax error", since we don't know if it is
12384         really a syntax error.
12385
12386 1996-12-16  Hrvoje Niksic  <hniksic@srce.hr>
12387
12388         * utils.c (acceptable): Extract the filename part of the path.
12389
12390         * recur.c (recursive_retrieve): Call acceptable() with the right
12391         argument; would bug out on wildcards.
12392
12393         * init.c (parse_line): Likewise.
12394
12395         * html.c (htmlfindurl): Cast to char * when calling stuff.
12396
12397 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
12398
12399         * ftp.c (getftp): Use ftp_pasv.
12400
12401         * ftp-basic.c (ftp_request): Accept NULL value.
12402         (ftp_pasv): New function.
12403
12404         * options.h (struct options): Add passive FTP option.
12405
12406 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
12407
12408         * url.c (parseurl): Debug output.
12409
12410         * utils.c (path_simplify): New one, adapted from bash's
12411         canonicalize_pathname().
12412
12413 1996-12-14  Hrvoje Niksic  <hniksic@srce.hr>
12414
12415         * ftp.c (getftp): Don't discard the buffer.
12416
12417         * retr.c (get_contents): New parameter nobuf.
12418
12419 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
12420
12421         * html.c (htmlfindurl): Recognize <meta contents="d; URL=...".
12422
12423         * init.c (setval): Strip the trailing slashes on CVECDIR.
12424
12425 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
12426
12427         * init.c: Make excludes and includes under CVECDIR instead of
12428         CVEC.
12429
12430 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
12431
12432         * url.c (get_urls_html): Skip "http:".
12433
12434 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
12435
12436         * utils.c (strcasecmp): From glibc.
12437         (strncasecmp): Also.
12438         (strstr): Also.
12439
12440         * url.c: Added javascript: to the list of URLs prefixes.
12441
12442 1996-12-12  Shawn McHorse  <riffraff@txdirect.net>
12443
12444         * recur.c (retrieve_robots): Print the warning message only if
12445         verbose.
12446
12447 1996-12-12  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
12448
12449         * ftp.c (ftp_retrieve_list): Use NeXT old utime interface.
12450
12451 1996-12-12  Hrvoje Niksic  <hniksic@srce.hr>
12452
12453         * systhings.h: New file.
12454
12455         * ../configure.in: Check for utime.h
12456
12457         * ftp.c: Check whether we have unistd.h.
12458
12459 1996-11-27  Hrvoje Niksic  <hniksic@srce.hr>
12460
12461         * recur.c (recursive_retrieve): Send the canonical URL as referer.
12462         (recursive_retrieve): Call get_urls_html with the canonical URL.
12463
12464 1996-12-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12465
12466         * (configure.in, config.h.in, src/Makefile.in, src/*.[ch]): Add
12467         ansi2knr support for compilers which don't support ANSI style
12468         function prototypes and signatures.
12469
12470         * (aclocal.m4, src/ansi2knr.c, src/ansi2knr.1): New files.
12471
12472 1996-11-26  Hrvoje Niksic  <hniksic@srce.hr>
12473
12474         * url.c: Use it; Recognize paths ending with "." and ".." as
12475         directories.
12476         (url_filename): Append .n whenever file exists and could be a
12477         directory.
12478
12479         * url.h (ISDDOT): New macro.
12480
12481         * init.c (parse_line): Use unsigned char.
12482
12483         * url.c (get_urls_html): Cast to unsigned char * when calling
12484         htmlfindurl.
12485
12486         * html.c (htmlfindurl): Use unsigned char.
12487
12488         * version.c: Changed version to 1.4.3.
12489
12490 1996-11-25  Hrvoje Niksic  <hniksic@srce.hr>
12491
12492         * version.c: Released 1.4.2.
12493
12494         * ftp.c (getftp): Simplified assertion.
12495         (ftp_loop_internal): Remove symlink before downloading.
12496         (ftp_retrieve_list): Unlink the symlink name before attempting to
12497         create a symlink!
12498
12499         * options.h (struct options): Renamed print_server_response to
12500         server_response.
12501
12502         * ftp.c (rel_constr): Removed.
12503         (ftp_retrieve_list): Don't use it.
12504         (ftp_retrieve_list): Use opt.retr_symlinks.
12505
12506 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
12507
12508         * main.c (main): New option retr_symlinks.
12509
12510         * url.c (convert_links): Print verbose message.
12511
12512 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
12513
12514         * http.c (http_loop): Reset newloc in the beginning of function;
12515         would cause FMR in retrieve_url.
12516
12517 1996-11-23  Hrvoje Niksic  <hniksic@srce.hr>
12518
12519         * recur.c (convert_all_links): Find the URL of each HTML document,
12520         and feed it to get_urls_html; would bug out.
12521         (convert_all_links): Check for l2 instead of dl; removed dl.
12522
12523         * url.c (convert_links): Don't refer to freed newname.
12524
12525         * recur.c (recursive_retrieve): Add this_url to urls_downloaded.
12526
12527         * main.c (main): Print the OS_TYPE in the debug output, too.
12528
12529         * recur.c (recursive_retrieve): Check for opt.delete_after.
12530
12531         * main.c (main): New option delete-after.
12532
12533         * init.c (setval): Cleaned up.
12534
12535 1996-11-21  Hrvoje Niksic  <hniksic@srce.hr>
12536
12537         * Makefile.in (wget): Make `wget' the default target.
12538
12539         * ftp.c (ftp_loop_internal): Move noclobber checking out of the
12540         loop.
12541         (ftp_retrieve_list): Warn about non-matching sizes.
12542
12543         * http.c (http_loop): Made -nc non-dependent on opt.recursive.
12544
12545         * init.c (setnum): Renamed from setnuminf; New argument flags.
12546         (setval): Use it.
12547
12548         * main.c (main): Sorted the options.
12549         (main): New option --wait.
12550
12551 1996-11-21  Shawn McHorse  <riffraff@txdirect.net>
12552
12553         * html.c (htmlfindurl): Reset s->in_quote after getting out of
12554         quotes.
12555
12556 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
12557
12558         * version.c: Changed version to 1.4.2.
12559
12560 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
12561
12562         * version.c: Released 1.4.1.
12563
12564         * html.c (html_quote_string): New function.
12565         (ftp_index): Use it.
12566         (htmlfindurl): A more gentle ending debug message.
12567
12568         * ftp.c (ftp_loop): Check for opt.htmlify.
12569
12570         * init.c: New command htmlify.
12571
12572         * ftp.c (getftp): Nicer error messages, with `'-encapsulated
12573         strings.
12574         (ftp_loop): Print size of index.html.
12575
12576         * init.c (setval): Implement "styles".
12577
12578         * main.c (main): New option dotstyle.
12579
12580 1996-11-19  Hrvoje Niksic  <hniksic@srce.hr>
12581
12582         * ftp.c (getftp): Close the master socket in case of errors, after
12583         bindport().
12584
12585         * connect.c (bindport): Initialize msock to -1.
12586
12587         * ftp.c (getftp): Initialize dtsock to -1.
12588
12589         * connect.c (closeport): Don't close sock if sock == -1.
12590
12591 1996-11-18  Hrvoje Niksic  <hniksic@srce.hr>
12592
12593         * init.c (setnuminf): Nuked default value -- just leave unchanged.
12594         (setval): Don't send default values.
12595         (defaults): Use DEFAULT_TIMEOUT -- aaargh.
12596
12597         * options.h (struct options): Use long for dot_bytes.
12598
12599         * init.c (setquota): Renamed to setbytes.
12600         (setval): Use setbytes on DOTBYTES.
12601
12602 1996-11-17  Hrvoje Niksic  <hniksic@srce.hr>
12603
12604         * ftp.c (getftp): Initialize con->dltime.
12605
12606         * recur.c (recursive_retrieve): Use same_host instead of
12607         try_robots; simply load robots_txt whenever the host is changed.
12608         (recursive_retrieve): Free forbidden before calling parse_robots.
12609
12610 1996-11-16  Hrvoje Niksic  <hniksic@srce.hr>
12611
12612         * retr.c (show_progress): Use them.
12613
12614         * options.h (struct options): New options dot_bytes, dots_on_line
12615         and dot_spacing.
12616
12617 1996-11-16  Mark Boyns  <boyns@sdsu.edu>
12618
12619         * recur.c (recursive_retrieve): Retrieve directories regardless of
12620         acc/rej rules; check for empty u->file.
12621
12622 1996-11-14  Hrvoje Niksic  <hniksic@srce.hr>
12623
12624         * init.c (setval): Use it.
12625
12626         * utils.c (merge_vecs): New function.
12627
12628         * init.c (setval): Reset the list-type functions when encountering
12629         "".
12630
12631 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
12632
12633         * recur.c (recursive_retrieve): Use base_url instead of this_url
12634         for no_parent.
12635
12636 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
12637
12638         * html.c (htmlfindurl): Reset s->in_quote after exiting the quote.
12639
12640 1996-11-13  Hrvoje Niksic  <hniksic@srce.hr>
12641
12642         * utils.c (sepstring): Rewrote; don't use strtok.
12643
12644         * recur.c (recursive_retrieve): Enter assorted this_url to slist
12645         when running the first time.
12646         (retrieve_robots): Warn to ignore errors when robots are loaded.
12647
12648         * utils.c (load_file): Moved from url.c.
12649
12650         * http.c: Made static variables const too in h* functions.
12651
12652         * main.c (main): Renamed --continue-ftp to --continue.
12653
12654         * recur.c (recursive_retrieve): Use it.
12655
12656         * utils.c (frontcmp): New function.
12657
12658         * url.c (accdir): New function.
12659
12660         * html.c (htmlfindurl): Recognize <area href=...>.
12661
12662         * ftp.c (ftp_retrieve_dirs): Implemented opt.includes.
12663
12664         * init.c (setval): Free the existing opt.excludes and
12665         opt.includes, if available.
12666
12667         * main.c (main): New option -I.
12668
12669 1996-11-12  Hrvoje Niksic  <hniksic@srce.hr>
12670
12671         * ftp.c (ftp_retrieve_glob): Do not weed out directories.
12672
12673         * version.c: Changed version to 1.4.1.
12674
12675 1996-11-11  Hrvoje Niksic  <hniksic@srce.hr>
12676
12677         * version.c: Released 1.4.0.
12678
12679 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
12680
12681         * main.c (main): Free com and val after parse_line.
12682         (printhelp): Reorder the listing.
12683
12684         * http.c: More robust header parsing.
12685
12686         * http.c: Allow any number of spaces, or no spaces, precede ':'.
12687         (hskip_lws): New function.
12688         (haccepts_bytes): New function.
12689         (gethttp): Use it.
12690
12691         * init.c (setval): Check header sanity.
12692         (setval): Allow resetting of headers.
12693
12694 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
12695
12696         * http.c (http_loop): Don't use has_wildcards.
12697
12698         * http.c (gethttp): Free all_headers -- would leak.
12699
12700         * recur.c (recursive_retrieve): Initialize depth to 1 instead of
12701         0 -- this fixes a long-standing bug in -rl.
12702
12703 1996-11-09  Hrvoje Niksic  <hniksic@srce.hr>
12704
12705         * ftp.c: Use -1 as "impossible" value for con->fd.
12706
12707         * url.h (URL_SEPARATOR): Don't treat `*' and `+' as separators.
12708
12709         * init.c (parse_line): Use isalpha.
12710
12711         * ftp-unix.c: Use HAVE_UNISTD_H.
12712
12713         * mtch.c (has_wildcards): Don't match \.
12714
12715         * http.c (http_loop): Warn on HTTP wildcard usage.
12716
12717 1996-11-08  Hrvoje Niksic  <hniksic@srce.hr>
12718
12719         * url.c (url_filename): Do not create numbered suffixes if
12720         opt.noclobber -- would bug out on -nc.
12721
12722 1996-11-07  Hrvoje Niksic  <hniksic@srce.hr>
12723
12724         * recur.c (parse_robots): Don't chuck out the commands without
12725         arguments (`Disallow:<empty>' didn't work).
12726         (parse_robots): Compare versions lowercase.
12727         (parse_robots): Match on base_version, not version_string!
12728         (parse_robots): Handle comments properly.
12729         (parse_robots): Match versions in a sane way.
12730
12731         * init.c: Print nicer error messages.
12732
12733         * version.c: Changed version to 1.4.0.
12734
12735 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
12736
12737         * version.c: Released 1.4.0-test2.
12738
12739         * init.c (run_wgetrc): Close fp.
12740
12741         * ftp.c (ftp_retrieve_dirs): Allocate the correct length for
12742         u->dir.
12743
12744 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
12745
12746         * init.c (setquota): Allow inf as quota specification.
12747
12748 1996-11-05  Hrvoje Niksic  <hniksic@srce.hr>
12749
12750         * ftp.c (ftp_retrieve_dirs): Return QUOTEXC if quota exceeded.
12751         (ftp_retrieve_glob): Return QUOTEXC on quota exceeded.
12752
12753         * main.c (main): Check for quota by comparison with downloaded
12754         stuff, not from status.
12755
12756         * connect.c (select_fd): Should compile on HPUX without warnings now.
12757
12758         * ftp.c (ftp_get_listing): Check whether ftp_loop_internal
12759         returned RETROK.
12760
12761 1996-11-04  Hrvoje Niksic  <hniksic@srce.hr>
12762
12763         * ftp.c (ftp_retrieve_glob): Print the pattern nicely.
12764         (getftp): Return FTPRETRINT on control connection error.
12765
12766         * html.c (htmlfindurl): Recognize <embed src=...> and
12767         <bgsound src=...>.
12768         (ftp_index): Handle username and password correctly.
12769
12770         * main.c (main): Made `-np' a synonim for --no-parent.
12771
12772 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
12773
12774         * ftp.c (ftp_loop): Check for opt.ftp_glob too before calling
12775         ftp_retrieve_glob.
12776
12777         * version.c: Changed version to 1.4.0-test2.
12778
12779 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
12780
12781         * version.c: Released 1.4.0-test1.
12782
12783         * url.c (str_url): Don't use sprintf when creating %2F-prefixed
12784         directory.
12785         (convert_links): Removed definition of make_backup.
12786
12787         * http.h: Removed definition of MAX_ERROR_LENGTH.
12788
12789         * host.c (ftp_getaddress): Check for "(none)" domains.
12790
12791         * ftp.c (ftp_retrieve_dirs): Docfix.
12792
12793         * http.c (gethttp): Use ou->referer instead of u->referer.
12794
12795         * retr.c (retrieve_url): Reset u to avoid freeing pointers twice;
12796         this was known to cause coredumps on Linux.
12797
12798         * html.c (ftp_index): Cast the argument to local_time to time_t *.
12799
12800 1996-11-01  Hrvoje Niksic  <hniksic@srce.hr>
12801
12802         * connect.c (select_fd): Use exceptfds -- once and for all.
12803
12804         * retr.c (retrieve_from_file): Free filename after
12805         recursive_retrieve.
12806         (retrieve_from_file): Send RFIRST_TIME to recursive_retrieve on
12807         first-time retrieval.
12808         (retrieve_from_file): Return uerr_t; new argument, count.
12809         (retrieve_from_file): Break on QUOTEXC.
12810
12811         * init.c (setquota): Fixed a bug that caused rejection of
12812         non-postfixed values..
12813
12814 1996-10-30  Hrvoje Niksic  <hniksic@srce.hr>
12815
12816         * version.c: Changed name to wget.
12817
12818         * connect.c (iread): Smarter use of select.
12819         (select_fd): Set errno on timeout.  If not timeout, return 1
12820         instead of 0.
12821
12822 1996-10-29  Hrvoje Niksic  <hniksic@srce.hr>
12823
12824         * ftp.c (ftp_loop_internal): Don't use con->cmd before
12825         establishing it.
12826
12827 1996-10-26  Hrvoje Niksic  <hniksic@srce.hr>
12828
12829         * http.c (gethttp): Send correct referer when using proxy.
12830         (gethttp): Use struct urlinfo ou to access the relevant data; send
12831         correct authorization in all cases.
12832
12833         * host.c (same_host): Use skip_uname to skip username and
12834         password.
12835
12836         * url.c (skip_uname): New function.
12837         (parseurl): Use it.
12838
12839         * host.c (same_host): Do not assume HTTP -- same_host should now
12840         be totally foolproof.
12841
12842         * url.c (skip_proto): New function.
12843         (parse_uname): Use it.
12844
12845         * http.c (gethttp): Create local user and passwd from what is
12846         given.
12847
12848         * url.c (parseurl): Check for HTTP username and password too.
12849
12850 1996-10-25  Hrvoje Niksic  <hniksic@srce.hr>
12851
12852         * config.h.in: Removed #define gethostbyname R...
12853
12854 1996-10-22  Hrvoje Niksic  <hniksic@srce.hr>
12855
12856         * version.c: Changed version to 1.4.0-test1.
12857
12858 1996-10-21  Hrvoje Niksic  <hniksic@srce.hr>
12859
12860         * version.c: "Released" 1.4b29.
12861
12862         * recur.c (recursive_retrieve): Check for no_parent.
12863
12864         * init.c (setval): Option update.
12865
12866         * main.c (main): New option no-parent.
12867
12868         * options.h (struct options): New variable no_parent.
12869
12870         * recur.c (recursive_retrieve): Only files are checked for
12871         opt.accepts and opt.rejects.
12872         (recursive_retrieve): Check directories for opt.excludes.
12873         (recursive_retrieve): Make the dir absolute when checking
12874         opt.excludes.
12875
12876         * html.c (htmlfindurl): Recognize <applet code=...> and <script
12877         src=...>
12878
12879 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
12880
12881         * ftp.c (getftp): Do not line-break assert entries at all.
12882         (ftp_retrieve_dirs): docfix.
12883
12884         * connect.c (select_fd): Use fd + 1 as nfds.
12885
12886         * version.c: Changed version to 1.4b29.
12887
12888 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
12889
12890         * version.c: "Released" 1.4b28.
12891
12892         * ftp.c (ftp_loop_internal): Check whether f->size == len and
12893         don't continue the loop if it is.
12894         (ftp_get_listing): Remove list_filename on unsuccesful loop.
12895
12896 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
12897
12898         * ftp.c (ftp_loop_internal): Use strcpy to initialize tmp.
12899         (getftp): Do not use multiline assert.
12900
12901         * http.c (hparsestatline): Use mjr and mnr instead of major and
12902         minor, which don't compile on Ultrix.
12903         (http_loop): Use strcpy() to initialize tmp.
12904
12905         * all: Geturl -> Fetch
12906
12907 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
12908
12909         * recur.c (parse_robots): Fixed an off-by-one bug when looking for
12910         ':'.
12911
12912         * html.c (htmlfindurl): Fixed several possible off-by-one bugs by
12913         moving `bufsize &&' to the beginning of each check in for-loops.
12914
12915         * recur.c (parse_robots): Close fp on exit.
12916
12917         * url.c (mymkdir): Check for each directory before creating.
12918
12919 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
12920
12921         * version.c: Changed version to 1.4b28.
12922
12923 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
12924
12925         * version.c: "Released" 1.4b27.
12926
12927         * init.c (parse_line): Use isspace.
12928         (parse_line): Free *com on all errors.
12929
12930         * ftp.c (ftp_loop): Change FTPOK to RETROK before exiting.
12931         (delelement): Use next instead of f->next and prev instead of
12932         f->prev.
12933         (delelement): Free the members of the deleted element.
12934
12935         * http.c (http_loop): Do not return RETROK on code != 20x.
12936
12937         * init.c (cleanup): Free opt.user_header.
12938         (cleanup): Free opt.domains.
12939
12940         * url.c (freelists): Moved to cleanup().
12941
12942         * http.c (hparsestatline): Docfix.
12943
12944         * main.c (main): Return with error status on unsuccesful
12945         retrieval.
12946
12947         * init.c (setval): Do not remove listing when mirroring.
12948
12949         * url.c (url_filename): Use opt.fileprefix.
12950
12951         * ftp.c (ftp_get_listing): Use url_filename to get filename for
12952         .listing.
12953
12954         * main.c (main): New option: -rn.
12955
12956 1996-10-15  Hrvoje Niksic  <hniksic@srce.hr>
12957
12958         * Makefile.in (RM): Added RM = rm -f.
12959
12960         * host.c (clean_hosts): New function.
12961         (free_hlist): Just free the list, no reset.
12962
12963         * version.c: Changed version to 1.4b27.
12964
12965 1996-10-13  Hrvoje Niksic  <hniksic@srce.hr>
12966
12967         * version.c: "Released" 1.4b26.
12968
12969         * retr.c (retrieve_from_file): If call get_urls_html with
12970         opt.spider to make it silent in spider mode.
12971
12972         * url.c (str_url): Use CLEANDUP instead of URL_CLEANSE.
12973
12974         * url.h (CLEANDUP): New macro.
12975
12976         * http.c (gethttp): Fixed a bug that freed location only when it
12977         was NULL.
12978
12979         * retr.c (retrieve_url): Free url if it will not be stored,
12980         i.e. newloc is NULL.
12981
12982         * html.c (htmlfindurl): Handle exiting from quotes correctly; the
12983         old version would bug out on <a href="x#a"href="y">.
12984
12985         * html.h (state_t): New member in_quote.
12986
12987         * html.c (htmlfindurl): Free s->attr at the beginning of
12988         attr-loop.
12989
12990         * recur.c (recursive_retrieve): Recognize RCLEANUP.
12991         (tried_robots): Make hosts a global variable.
12992         (recursive_retrieve): Free constr after URL host optimization.
12993         (tried_robots): Free urlinfo before exiting.
12994
12995         * utils.c (free_slist): New function.
12996
12997         * recur.c (recursive_retrieve): Use flags to add cleanup
12998         possibility.
12999
13000         * main.c (main): Free filename after recursive_retrieve.
13001
13002         * http.c (gethttp): Store successful responses too.
13003
13004 1996-10-12  Hrvoje Niksic  <hniksic@srce.hr>
13005
13006         * all: Constified the whole source.  This required some minor
13007         changes in many functions in url.c, possibly introducing bugs -- I
13008         hope not.
13009
13010         * ftp-basic.c: Removed last_respline.
13011
13012         * http.c (gethttp): Free type.
13013
13014         * host.c (same_host): Free real1 and real2.
13015
13016         * main.c (main): New option --spider.
13017
13018         * retr.c (get_contents): Don't reset errno.
13019
13020         * main.c (main): Sorted the options.
13021
13022         * connect.c (iread): Set errno to ETIMEDOUT only if it was left
13023         uninitialized by select().
13024
13025         * http.c (http_loop): Print the time when the connection is
13026         closed.
13027         (gethttp): Debug-print the HTTP request.
13028
13029 1996-10-11  Hrvoje Niksic  <hniksic@srce.hr>
13030
13031         * connect.c (iread): Do not try reading after timeout.
13032
13033         * main.c (main): Would bug out on -T.
13034
13035         * connect.c (select_fd): Do not use exceptfds.
13036         (iread): Set ETIMEDOUT on select_fd <= 0.
13037
13038         * version.c: Changed version to 1.4b26.
13039
13040 1996-10-10  Hrvoje Niksic  <hniksic@srce.hr>
13041
13042         * version.c: "Released" 1.4b25.
13043
13044         * ftp-unix.c (ftp_parse_unix_ls): Ignore lines without file name
13045         or link name.
13046
13047         * http.c (gethttp): Add errcode to struct hstat.
13048         (http_loop): Use it.
13049
13050         * url.c (no_proxy_match): Simplify using char** for no_proxy.
13051
13052         * options.h (struct options): Make opt.no_proxy a vector.
13053
13054         * utils.c (sepstring): Use !*s instead of !strlen(s).
13055
13056         * init.c (setval): Set opt.maxreclevel to 0 on --mirror.
13057         (getperms): Use ISODIGIT instead of isdigit.
13058
13059         * ftp.c (getftp): Print time.
13060
13061         * main.c (main): Use legible output of downloaded quantity.
13062
13063         * ftp.c (getftp): Use elapsed_time().
13064         (ftp_loop_internal): Use rate().
13065
13066         * http.c (http_loop): Add download ratio output; Use rate().
13067
13068         * utils.c (rate): New function.
13069
13070 1996-10-09  Hrvoje Niksic  <hniksic@srce.hr>
13071
13072         * http.c (http_loop): Use timer.
13073
13074         * ftp.c: Split to ftp-basic.c and ftp.c
13075
13076         * utils.c (reset_timer): New function.
13077         (elapsed_time): New function.
13078
13079         * retr.c (show_progress): Make bytes_in_line and offs long; should
13080         work on 16-bit machines.
13081
13082 1996-10-08  Hrvoje Niksic  <hniksic@srce.hr>
13083
13084         * url.c (in_acclist): New argument backward.
13085
13086         * ftp.c (ftp_retrieve_glob): Use acceptable() to determine whether
13087         a file should be retrieved according to suffix.
13088         (ftp_get_listing): Check the return value of unlink; Do not call
13089         ftp_retrieve_dirs if depth reached maxreclevel.
13090         (ftp_retrieve_dirs): Check whether the directory is in
13091         exclude-list.
13092
13093         * main.c (main): Print the version number at the beginning of
13094         DEBUG output.
13095         (main): Use strrchr when creating exec_name.
13096
13097         * ftp.c (ftp_retrieve_glob): Do not close control connection.
13098
13099         * version.c: Changed version to 1.4b25.
13100
13101 1996-10-07  Hrvoje Niksic  <hniksic@srce.hr>
13102
13103         * version.c: "Released" 1.4b24.
13104
13105         * Makefile.in: Rewrite.
13106
13107         * ftp.c (ftp_loop_internal): Likewise.
13108
13109         * retr.c (time_str): Check for failed time().
13110
13111         * html.c (htmlfindurl): Recognize <fig src> and <overlay src> from
13112         HTML3.0.
13113
13114         * retr.c (time_str): Return time_t *.
13115
13116         * connect.c (bindport): Close msock on unsuccesful bind.
13117         (bindport): The same for getsockname and listen.
13118
13119         * retr.c (retrieve_url): Allow any number of retries on
13120         proxy.
13121
13122         * http.c (gethttp): Do not treat errno == 0 as timeout.
13123         (http_loop): Likewise.
13124         (http_loop): Cosmetic changes.
13125
13126         * connect.c (iread): Set errno to ETIMEDOUT in case of timeout.
13127
13128         * retr.c (get_contents): Reset errno.
13129
13130         * ftp.c (getftp): Minor fixes.
13131
13132 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
13133
13134         * http.c: Do not use backups.
13135
13136         * geturl.1 (WARNING): Warn that man-page could be obsolete.
13137
13138         * getopt.c (getopt_long): Moved to getopt.c
13139
13140         * geturl.texi: Enhanced.
13141
13142         * main.c (main): Use it.
13143
13144         * recur.c (convert_all_links): New function.
13145
13146         * utils.c (add_slist): New argument flags.
13147
13148         * recur.c (recursive_retrieve): Update a list of downloaded URLs.
13149         (parse_robots): Do not chuck out empty value fields.
13150         (parse_robots): Make yourself welcome on empty Disallow.
13151
13152         * version.c: Changed version to 1.4b24.
13153
13154 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
13155
13156         * version.c: "Released" 1.4b23.
13157
13158         * ftp.c (ftp_loop_internal): Get the time after getftp.
13159
13160         * Makefile.in (install.info): New target.
13161         (install): Use it.
13162
13163         * http.c (http_loop): Fix output when doing -O.
13164
13165 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
13166
13167         * geturl.texi: New file.
13168
13169         * main.c (main): Do not print the warnings and download summary if
13170         opt.quiet is set.
13171
13172         * version.c: Changed version to 1.4b23.
13173
13174 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
13175
13176         * "Released" 1.4b22.
13177
13178         * atotm.c (atotm): Use True and False instead of TRUE and FALSE,
13179         to avoid redefinition warnings.
13180
13181         * host.c (store_hostaddress): Use memcpy() to copy the address
13182         returned by inet_addr.
13183
13184         * version.c: Changed version to 1.4b22.
13185
13186 1996-10-04  Hrvoje Niksic  <hniksic@srce.hr>
13187
13188         * version.c: "Released" 1.4b21.
13189
13190         * ftp-unix.c (ftp_parse_ls): Renamed to ftp_parse_unix_ls.
13191
13192         * ftp.c (ftp_port): Use conaddr.
13193         (getftp): Print the file length.
13194         (ftp_retrieve_list): Check the stamps of plain files only.
13195
13196         * connect.c (closeport): Do not call shutdown().
13197         (conaddr): New function.
13198
13199         * html.c (ftp_index): Made it dfp-aware.
13200
13201         * init.c (cleanup): New name of freemem. Close opt.dfp.
13202
13203         * ftp.c (getftp): Use opt.dfp if it is set.
13204
13205         * ftp-unix.c (ftp_parse_ls): Recognize time in h:mm format.
13206
13207         * ftp.c (ftp_retrieve_dirs): Fixed a bug that caused incorrect
13208         CWDs to be sent with recursive FTP retrievals.
13209
13210 1996-10-03  Hrvoje Niksic  <hniksic@srce.hr>
13211
13212         * recur.c (parse_robots): Made it more compliant with "official"
13213         specifications.
13214
13215         * http.c: New function.
13216
13217         * ftp-unix.c (ftp_parse_ls): Added better debug output.
13218
13219         * ftp.c (getftp): Print out the LIST in case of
13220         opt.print_server_response.
13221
13222         * version.c: Changed version to 1.4b21.
13223
13224 1996-10-01  Hrvoje Niksic  <hniksic@srce.hr>
13225
13226         * version.c: "Released" 1.4b20.
13227
13228         * README: Update.
13229
13230         * http.c (gethttp): Preset lengths of various headers instead of
13231         calculating them dynamically.
13232         (gethttp): Check for 206 partial contents.
13233
13234 1996-09-30  Hrvoje Niksic  <hniksic@srce.hr>
13235
13236         * configure.in: Set SYSTEM_GETURLRC to $libdir/geturlrc
13237
13238         * http.c (gethttp): Send the port number in the Host: header.
13239
13240 1996-09-29  Hrvoje Niksic  <hniksic@srce.hr>
13241
13242         * http.c (gethttp): Send host: header.
13243         (gethttp): Add the possibility of user-defined headers.
13244         (gethttp): Move decision about pragma: no-cache to http_loop,
13245         where it belongs.
13246         (gethttp): Pass a struct instead of enormous argument list.
13247         (http_loop): Use a new, fancier display format.
13248         (ftp_loop): Likewise.
13249
13250         * main.c: (hangup): Turn off buffering of the new log file.
13251
13252         * install-sh: Likewise.
13253
13254         * config.sub: Replace with the one in autoconf-2.10
13255
13256         * geturl.1: Update.
13257
13258         * init.c: New options httpuser and httppasswd.
13259
13260         * http.c: (base64_encode_line): New function.
13261         (gethttp): Send authentication.
13262
13263         * connect.c (make_connection): Use store_hostaddress.
13264
13265 1996-09-28  Hrvoje Niksic  <hniksic@srce.hr>
13266
13267         * host.c (store_hostaddress): New function.
13268
13269         * NEWS: Update.
13270
13271         * http.c (hgetrange): New function.
13272         (gethttp): Use ranges.
13273
13274         * utils.c (numdigit): Accept long instead of int.
13275
13276         * http.c (http_loop): Add restart capabilities.
13277
13278         * ftp.c (ftp_retrieve_glob): Fixed a bug that could cause matchres
13279         being used uninitialized.
13280         (ftp_retrieve_list): Similar fix.
13281
13282         * host.c (add_hlist): Fixed a bug that could cause cmp being used
13283         uninitialized.
13284
13285         * url.c (construct_relative): New function.
13286
13287         * recur.c (recursive_retrieve): Use it.
13288
13289         * retr.c (convert_links): New function.
13290
13291 1996-09-27  Hrvoje Niksic  <hniksic@srce.hr>
13292
13293         * url.c (free_urlpos): New function.
13294
13295         * recur.c (recursive_retrieve): Adapt.
13296
13297         * url.c (get_urls_html): Return a linked list instead of a vector.
13298
13299         * url.c (get_urls_file): Return a linked list instead of a vector.
13300
13301         * geturl.1: Update.
13302
13303         * http.c (gethttp): Implement it.
13304
13305         * init.c (setval): New option: SAVEHEADERS
13306
13307         * ftp.c (ftp_loop_internal): Do not set restval if listing is to
13308         be retrieved. Lack of this test caused bugs when the connection
13309         was lost during listing.
13310
13311         * retr.c (retrieve_url): Fixed a bug that caused
13312         coredumps. *newloc is now reset by default.
13313         (retrieve_url): Lift the twenty-tries limit on proxies.
13314
13315         * version.c: Changed version to 1.4b20.
13316
13317 1996-09-20  Hrvoje Niksic  <hniksic@srce.hr>
13318
13319         * version.c: "Released" 1.4b19.
13320
13321 1996-09-19  Hrvoje Niksic  <hniksic@srce.hr>
13322
13323         * ftp.c (ftp_loop_internal): Renamed from ftp_1fl_loop.
13324         (getftp): Changed prototype to accept ccon *.
13325
13326 1996-09-17  Hrvoje Niksic  <hniksic@srce.hr>
13327
13328         * ftp.c (ftp_retrieve_list): Fixed a bug that caused setting
13329         incorrect values to files pointed to by symbolic links.
13330         (ftp_1fl_loop): Do not count listings among the downloaded URL-s.
13331
13332 1996-09-16  Hrvoje Niksic  <hniksic@srce.hr>
13333
13334         * url.c (mkstruct): Do not prepend "./" in front of a pathname.
13335
13336         * main.c (main): New option: --user-agent.
13337
13338         * geturl.1: Ditto.
13339
13340         * init.h: Ditto.
13341
13342         * init.c (setval): Ditto.
13343
13344         * main.c (main): Rename "server-headers" to "server-response".
13345
13346         * ftp-unix.c (ftp_parse_ls): Check for asterisks at the end of
13347         executables in 'ls -F' listings.
13348
13349 1996-09-15  Hrvoje Niksic  <hniksic@srce.hr>
13350
13351         * url.c (parseurl): Remove realloc() and sprintf().
13352         (str_url): Get rid of sprintf().
13353
13354         * recur.c (recursive_retrieve): Enable FTP recursion through proxy
13355         servers.
13356
13357         * url.h (URL_CLEANSE): Made it else-resistant.
13358         (USE_PROXY): New macro.
13359
13360 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
13361
13362         * NEWS: Update.
13363
13364         * version.c: Changed version to 1.4b19.
13365
13366 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
13367
13368         * version.c: "Released" 1.4b18.
13369
13370         * url.c: Made it reallocate space exponentially.
13371
13372 1996-09-14  Drazen Kacar  <dave@fly.cc.fer.hr>
13373
13374         * html.c (htmlfindurl): Added <frame src> and <iframe src> among
13375         the list of stuff to fetch.
13376
13377 1996-09-13  Hrvoje Niksic  <hniksic@srce.hr>
13378
13379         * url.c (get_urls_html): Fixed a bug that caused SIGSEGV's with
13380         -Fi.
13381
13382         * html.c (htmlfindurl): Rewrite.
13383
13384         * http.c (gethttp): Use opt.proxy_cache.
13385
13386         * main.c (main): Added --cache option.
13387
13388         * ftp.c (ftp_response): Print server response if opt.print_server
13389         response is set.
13390         (getftp): Print newlines after each request if the server response
13391         is to be printed.
13392         (ftp_response): Copy the last response line to last_respline.
13393
13394         * http.c (gethttp): Add Pragma: nocache for retried
13395         proxy-retrievals.
13396
13397         * ftp.c (getftp): Use it.
13398
13399         * retr.c (buf_discard): New function.
13400
13401         * ftp.c (ftp_response): Use buf_readchar().
13402         (getftp): Flush the control connection buffer before calling
13403         get_contents().
13404
13405         * retr.c (buf_readchar): New function.
13406         (buf_flush): New function.
13407         (get_contents): Use buf_readchar() instead of read(x, x, 1).
13408         (get_contents): Use buf_flush.
13409
13410 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
13411
13412         * ftp.c: Incorporate changes to ftp_response.
13413
13414         * ftp.c (ftp_response): Allocate the server response dynamically,
13415         as in read_whole_line and fetch_next_header.
13416
13417         * utils.c (read_whole_line): Fixed a bug that prevented reading
13418         the last line if it is not \n-terminated. Also fixed a possible
13419         memory overflow.
13420
13421         * http.c (fetch_next_header): Return malloc-ed string as large as
13422         needed.
13423         (gethttp): Use new fetch_next_header.
13424
13425 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
13426
13427         * http.c (hgetlen): Compute the header length the first time only.
13428         (hgettype): Ditto.
13429         (hgetlocation): Ditto.
13430         (hgetmodified): Ditto.
13431
13432 1996-09-11  Hrvoje Niksic  <hniksic@srce.hr>
13433
13434         * sample.geturlrc: Update.
13435
13436 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
13437
13438         * http.c (http_loop): Ditto.
13439
13440         * ftp.c (getftp): Open the output file as binary.
13441
13442         * version.c: Changed version to 1.4b18.
13443
13444 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
13445
13446         * version.c: "Released" 1.4b17.
13447
13448         * ftp-unix.c (ftp_parse_ls): If unable to open file, return NULL
13449         instead of failed assertion.
13450
13451 1996-09-09  Hrvoje Niksic  <hniksic@srce.hr>
13452
13453         * ftp.c (ftp_get_listing): Add a numbered suffix to LIST_FILENAME
13454         if a file of that name already exists.
13455
13456 1996-09-05  Hrvoje Niksic  <hniksic@srce.hr>
13457
13458         * ftp.c (ftp_1fl_loop): Handler FTPPORTERR and FOPENERR correctly.
13459
13460         * config.h.in: Define gethostbyname as Rgethostbyname when using
13461         Socks.
13462
13463         * configure.in: Check for -lresolv if using Socks.
13464
13465         * version.c: Changed version to 1.4b17.
13466
13467 1996-07-15  Hrvoje Niksic  <hniksic@srce.hr>
13468
13469         * version.c: "Released" 1.4b16.
13470
13471         * http.c (gethttp): More intelligent check for first line of HTTP
13472         response.
13473         (gethttp): Would bug out on time-stamping.
13474
13475         * version.c: Changed version to 1.4b16.
13476
13477 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
13478
13479         * version.c: Released 1.4b15.
13480
13481         * http.c (http_loop): Print \n after the loop entry, not before.
13482
13483         * url.c (url_filename): Use ISDOT.
13484
13485         * url.h (ISDOT): New macro.
13486
13487         * recur.c (recursive_retrieve): Change only opt.recursive for
13488         following FTP.
13489
13490 1996-07-11  Antonio Rosella <antonio.rosella@agip.it>
13491
13492         * socks/geturl.cgi: Fixed version No.
13493
13494         * socks/download-netscape.html: Ditto.
13495
13496         * socks/download.html: Changed socks.html to download.html.
13497
13498 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
13499
13500         * url.c (url_filename): Check for opt.dirstruct instead for
13501         opt.recursive && opt.dirstruct.
13502
13503         * init.c (defaults): Ditto.
13504         (defaults): Reset dirstruct by default.
13505         (setval): Set opt.dirstruct whenever setting recursive.
13506
13507         * init.h: Removed FORCEDIRHIER.
13508
13509         * INSTALL: Added -L to socks-description.
13510
13511         * version.c: Changed version to 1.4b15.
13512
13513 1996-07-10  Hrvoje Niksic  <hniksic@srce.hr>
13514
13515         * version.c: "Released" 1.4b14.
13516
13517         * geturl.1: Update AUTHOR to include Rosella as contributor.
13518
13519         * NEWS: Update.
13520
13521         * socks/geturl.cgi: Simplified command creation, nuked <blink>.
13522
13523         * socks/geturl.cgi: Wrap nutscape extensions within if $netscape.
13524         (cal_time): Fix == to eq.
13525
13526         * socks/geturl.cgi: GPL-ized with permission of A. Rosella.
13527
13528         * geturl.1 (hostname): Moved URL CONVENTIONS to the beginning.
13529
13530         * Makefile.in: Use @VERSION@.
13531
13532         * configure.in: Check version from version.c.
13533
13534         * socks/geturl.cgi: Changed /pub/bin/perl to /usr/bin/perl.
13535
13536         * socks/download.html: Created from download-netscape.html, made
13537         HTML-2.0 compliant.
13538
13539         * recur.c (recursive_retrieve): Set opt.force_dir_hier when
13540         following FTP links from recursions.
13541
13542 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
13543
13544         * url.c (mymkdir): Fixed a bug that prevented mymkdir() to create
13545         absolute directories correctly.
13546
13547         * version.c: Changed version to 1.4b14.
13548
13549 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
13550
13551         * version.c: "Released" 1.4b13.
13552
13553         * url.c (make_backup): New function.
13554
13555         * http.c (http_loop): Make a backup copy of the local file (using
13556         rename(2)) before opening it.
13557
13558         * main.c (main): Added --backups.
13559
13560         * host.c (ftp_getaddress): Bail out on failed mycuserid().
13561         (ftp_getaddress): Check for leading dot on MY_DOMAIN.
13562         (ftp_getaddress): Check for empty, null or (null) domain.
13563
13564         * url.c (get_urls_html): If this_url is NULL, the base must have a
13565         protocol.
13566         (parseurl): Use has_proto.
13567
13568         * retr.c (retrieve_url): Warn when proxy is used with more than 20
13569         retries.
13570
13571         * url.c (mkstruct): Create the directory (calling mymkdir()) only
13572         if it is not already there.
13573         (has_proto): New function.
13574         (get_urls_html): Eliminate the remaining call to findurl -- use
13575         has_proto.
13576
13577         * geturl.1: Ditto.
13578
13579         * main.c: Change -X to -x.
13580
13581         * url.c (url_filename): Simplify creation of filename if
13582         prefix_files is set.
13583         (url_filename): Simplify everything. And I do mean *everything*.
13584         (mkstruct): Add dir_prefix before hostname.
13585         (path_simplify): Fixed a bug that caused writing outside the path
13586         string in case of "." and ".." path strings.
13587
13588 1996-07-06  Hrvoje Niksic  <hniksic@srce.hr>
13589
13590         * init.c: Added --mirror.
13591
13592         * main.c (main): Added -X to force saving of directory hierarchy.
13593
13594         * ftp.c (ftp_retrieve_list): Added recursion depth counter.
13595         (ftp_retrieve_list): Check whether quota is exceeded.
13596
13597         * url.c (get_urls_html): Skip leading blanks for absolute URIs.
13598
13599         * http.c (gethttp): Use referer if present.
13600
13601         * recur.c (recursive_retrieve): Set u->referer before calling
13602         retrieve_url.
13603
13604         * url.c (newurl): Use memset to nullify the struct members.
13605         (freeurl): Free the referer field too.
13606
13607         * url.h: Added referer to urlinfo.
13608
13609         * geturl.1: Updated the manual to document some of the new features.
13610
13611         * utils.c (numdigit): Moved from url.c.
13612
13613         * README: Rewritten.
13614
13615         * config.h.in: Add the support for socks.
13616
13617         * configure.in: Add the support for socks.
13618
13619         * url.c (url_filename): If the dir_prefix is ".", work with just
13620         the file name.
13621         (url_filename): Do not look for .n extensions if timestamping if
13622         turned on.
13623
13624         * retr.c (show_progress): Skip the over-abundant restval data, and
13625         print the rest of it with ',' instead of '.'.
13626
13627 1996-07-05  Hrvoje Niksic  <hniksic@srce.hr>
13628
13629         * retr.c (show_progress): Changed second arg. to long (as it
13630         should be).
13631         (show_progress): Moved to retr.c.
13632         (get_contents): Moved to retr.c.
13633
13634         * version.c: Change version to 1.4b13.
13635
13636 1996-07-05  Hrvoje Lacko <hlacko@fly.cc.fer.hr>
13637
13638         * url.c (in_acclist): Would return after the first suffix.
13639
13640 1996-07-04  Hrvoje Niksic  <hniksic@srce.hr>
13641
13642         * version.c: "Released" 1.4b12.
13643
13644         * url.c (path_simplify): More kludgifications.
13645         (get_urls_html): Use new parameters for htmlfindurl.
13646
13647         * html.c: Removed memorizing "parser states", since the new
13648         organization does not require them.
13649
13650         * init.c (run_geturlrc): Use read_whole_line.
13651
13652         * ftp-unix.c (ftp_parse_ls): Use read_whole_line.
13653
13654         * recur.c (parse_robots): Use read_whole_line.
13655
13656         * utils.c (read_whole_line): New function.
13657
13658         * recur.c (tried_robots): Use add_slist/in_slist, *much* cleaner.
13659
13660         * host.c (ngethostbyname): Call inet_addr just once. Yet to be
13661         tested on OSF and Ultrix.
13662         (add_hlist): New function.
13663         (free_hlist): New function.
13664         (search_host): New function.
13665         (search_address): New function.
13666         (realhost): Use search_host, search_address and add_hlist.
13667         (same_host): Replaced realloc() with strdupdelim(), made
13668         case-insensitive, fixed a memory leak.
13669
13670         * html.c (ftp_index): Fixed tm_min and tm_sec to be tm_hour and
13671         tm_min, like intended.
13672
13673         * version.c: Change user agent information to
13674         Geturl/version.
13675
13676 1996-07-03  Hrvoje Niksic  <hniksic@srce.hr>
13677
13678         * utils.c: Renamed nmalloc.c to utils.c, .h likewise.
13679
13680         * url.c (acceptable): Always accept directories.
13681
13682         * ftp-unix.c (ftp_parse_ls): Support brain-damaged "ls -F"-loving
13683         servers by stripping trailing @ from symlinks and trailing / from
13684         directories.
13685
13686         * ftp.c (ftp_loop): Debugged the "enhanced" heuristics. :-)
13687
13688         * url.c (skip_url): Use toupper instead of UCASE.
13689
13690         * host.c (sufmatch): Made it case-insensitive.
13691
13692         * url.c (match_backwards_or_pattern): Fixed i == -1 to j == -1.
13693         (match_backwards): New function, instead of
13694         match_backwards_or_pattern.
13695
13696         * recur.c (recursive_retrieve): Increased performance by
13697         introducing inl, which reduces number of calls to in_slist to only
13698         one.
13699
13700         * ftp.c (ftp_loop): Enhanced the heuristics that decides which
13701         routine to use.
13702
13703         * main.c (printhelp): Removed the warranty stuff.
13704
13705 1996-07-02  Hrvoje Niksic  <hniksic@srce.hr>
13706
13707         * url.c (add_slist): Simplify.
13708         (match_backwards_or_pattern): New function.
13709         (in_acclist): Use match_backwards_or_pattern.
13710         (matches): Remove.
13711
13712 1996-06-30  Hrvoje Niksic  <hniksic@srce.hr>
13713
13714         * ftp.c (ftp_loop): Call ftp_index on empty file names, if not
13715         recursive.
13716
13717         * html.c (ftp_index): Fixed to work. Beautified the output.
13718
13719         * ftp.c (ftp_retrieve_glob): Another argument to control whether
13720         globbing is to be used.
13721         (ftp_retrieve_list): Compare the time-stamps of local and remote
13722         files to determine whether to download.
13723
13724 1996-06-29  Hrvoje Niksic  <hniksic@srce.hr>
13725
13726         * ftp.c (rel_constr): New function.
13727
13728         * retr.c (retrieve_from_file): Check for text/html before
13729         retrieving recursively.
13730
13731         * main.c (main): Check whether the file is HTML before going into
13732         recursive HTML retrieving.
13733
13734         * ftp.c (ftp_retrieve_list): Manage directories.
13735         (ftp_retrieve_glob): Pass all the file-types to ftp_retrieve_list.
13736         (ftp_1fl_loop): Fixed a bug that caused con->com to be incorrectly
13737         initialized, causing bugchecks in getftp to fail.
13738
13739         * configure.in: Check for symlink.
13740
13741         * ftp.c (ftp_retrieve_list): Added support for symlinks.
13742
13743         * version.c: "Released" 1.4b10.
13744
13745         * atotm.c (atotm): Redeclared as time_t.
13746
13747         * init.c: New variable "timestamping".
13748
13749         * main.c (main): New option 'N'.
13750
13751         * http.c (hgetlocation): Case-insensitive match.
13752         (hgetmodified): New function.
13753         (http_loop): Implement time-stamping.
13754
13755 1996-06-28  Hrvoje Niksic  <hniksic@srce.hr>
13756
13757         * version.c: Changed version to 1.4b10
13758
13759         * atotm.c: New file, from phttpd.
13760
13761         * options.h (struct options): New parameter timestamping.
13762
13763         * version.c: 1.4b9 "released".
13764
13765         * recur.c (recursive_retrieve): Used linked list (ulist) for
13766         faster storing of URLs.
13767
13768         * url.c (get_urls_html): Removed the old kludge with comparing the
13769         outputs of htmlfindurl and findurl.
13770         (get_urls_html): Added better protocol support here.
13771         (create_hash): Removed, as well as add_hash and in_hash.
13772         (addslist): New function.
13773         (in_slist): ditto
13774
13775         * version.c: Released 1.4b8, changed version to b9.
13776
13777 1996-06-27  Hrvoje Niksic  <hniksic@srce.hr>
13778
13779         * ftp.c (freefileinfo): New function.
13780         (delelement): New function.
13781
13782         * everywhere: GPL!
13783
13784         * ftp.c (ftp_loop): Use ccon.
13785         (ftp_retrieve_glob): Likewise.
13786
13787         * ftp.h: Define ccon, to define status of control connection.
13788
13789         * ftp.c (ftp_get_listing): New function.
13790         (ftp_retrieve_more): New function.
13791         (ftp_retrieve_glob): New function.
13792
13793 1996-06-25  Hrvoje Niksic  <hniksic@srce.hr>
13794
13795         * configure.in: Removed the search for cuserid().
13796
13797         * init.c (getmode): Renamed to getperms.
13798
13799 1996-06-24  Hrvoje Niksic  <hniksic@srce.hr>
13800
13801         * version.c: New version.
13802
13803         * main.c (hangup): New function, that handles hangup. Hangup
13804         signal now causes geturl to stop writing on stdout, and to write
13805         to a log file.
13806
13807         * ftp.c (getftp): "Released" 1.4b7.
13808
13809         * html.c (htmlfindurl): Ignore everything inside <head>...</head>.
13810         (ftp_index): Use fileinfo/urlinfo.
13811
13812         * ftp-unix.c (ftp_parse_ls): New function.
13813         (symperms): New function.
13814
13815         * ftp.c (ftp_1fl_loop): New function, to handle 1-file loops.
13816
13817         * retr.c (retrieve_url): Added FTP support.
13818
13819 1996-06-23  Hrvoje Niksic  <hniksic@srce.hr>
13820
13821         * geturl.h: Removed NOTFTP2HTML enum.
13822         Added DO_LOGIN, DO_CWD and DO_LIST. LIST_ONLY is obsolete.
13823
13824         * ftp.c (getftp): Resynched with urlinfo.
13825         (getftp): Removed HMTL-ization of index.html from getftp.
13826
13827         * version.c: 1.4b6 "released".
13828
13829         * options.h (options): New struct, to keep options in.
13830
13831         * http.c (http_loop,gethttp): Synched with proxy.
13832
13833         * retr.c (retrieve_url): Implemented proxy retrieval.
13834
13835         * main.c (main): Use retrieve_from_file.
13836
13837 1996-06-22  Hrvoje Niksic  <hniksic@srce.hr>
13838
13839         * retr.c (retrieve_from_file): New function.
13840
13841         * url.c (parseurl): Modified to return URLOK if all OK. Protocol
13842         can be found in u->proto.
13843
13844         * ftp.c (ftp_response): Fixed to accept multi-line responses as
13845         per RFC 959.
13846
13847         * recr.c (recursive_retrieve): Take newloc from retrieve_url.
13848
13849         * url.c (mymkdir): Removed the file of the same name, if one
13850         exists.
13851         (isfile): New function.
13852         (mkstruct): Fixed the '/' glitches.
13853         (path_simplify): Hacked to treat something/.. correctly.
13854
13855 1996-06-21  Hrvoje Niksic  <hniksic@srce.hr>
13856
13857         * http.c (gethttp): Close the socket after error in headers.
13858         (http_loop): HEOF no longer a fatal header.
13859
13860         * loop.c (retrieve_url): When dt is NULL, do not modify it. This
13861         simplifies the syntax of calling retrieve_url.
13862
13863         * recr.c (recursive_retrieve): Modified to use get_urls_html.
13864
13865         * url.c (get_urls_file): New function.
13866         (get_urls_html): New function.
13867
13868         * recr.c (recursive_retrieve): Patched up to conform to the
13869         standards.
13870
13871         * http.c (gethttp): Synched with the rest...
13872         (gethttp): Treat only CONREFUSED specially, with connection
13873         errors.
13874
13875         * init.c,geturl.1,http.c (http_loop): Removed kill_error.
13876
13877 1996-06-20  Hrvoje Niksic  <hniksic@srce.hr>
13878
13879         * http.c (http_loop): New function.
13880
13881         * loop.c: Removed *lots* of stuff from retrieve_url.
13882
13883         * url.c (parseurl): Changed to work with urlinfo. Integrated
13884         username finding and path parsing.
13885         (newurl): New function.
13886         (freeurl): New function.
13887         (mkstruct): Removed the old bogosities, made it urlinfo-compliant.
13888         (url_filename): Likewise.
13889         (path_simplify): Accept relative paths too.
13890         (opt_url): Made urlinfo-compliant, removed bogosities.
13891         (path_simplify): Expanded to accept relative paths.
13892         (str_url): A replacement for hide_url
13893         (decode_string): Fixed a bug that caused malfunctioning when
13894         encountering an illegal %.. combination.
13895         (opt_url): Removed the argument. Dot-optimizations are now default.
13896
13897         * nmalloc.c (strdupdelim): New function.
13898
13899         * url.h: Added the urlinfo structure
13900
13901 1996-06-19  Hrvoje Niksic  <hniksic@srce.hr>
13902
13903         * url.c (hide_url): Thrown out the protocol assertion. Do not
13904         change the URL if the protocol if not recognized.
13905         (findurl): Put continue instead of break.
13906
13907 1996-06-18  Hrvoje Niksic  <hniksic@srce.hr>
13908
13909         * sample.geturlrc: Changed the defaults to be commented out and
13910         harmless (previous defaults caused pains if copied to
13911         ~/.geturlrc).
13912
13913         * http.c (gethttp): Print the HTTP request in debug mode.
13914
13915         * connect.c (iread): Added EINTR check loop to select-ing
13916         too. EINTR is now correctly handled with select().
13917
13918         * TODO: new file
13919
13920 1996-05-07  Hrvoje Niksic  <hniksic@srce.hr>
13921
13922         * host.c (same_host): Made the function a little bit more
13923         intelligent regarding diversified URL syntaxes.
13924
13925         * url.c (skip_url): Spaces are now skipped after URL:
13926
13927         * Released 1.3.1 with the patch to prevent crashing when sending
13928         NULL to robot* functions and the patch to compile "out of the box"
13929         on AIX.
13930
13931         * recr.c (recursive_retrieve): Added checking whether this_url is
13932         NULL when calling the robot functions.
13933
13934         * ChangeLog: New file.