]> sjero.net Git - wget/blob - src/ChangeLog
[svn] Zero out sockaddr_in/sockaddr_in6. Apparently BSD-derived stacks need this
[wget] / src / ChangeLog
1 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
2
3         * connect.c (sockaddr_set_data): Zero out
4         sockaddr_in/sockaddr_in6.  Apparently BSD-derived stacks need this
5         when binding a socket to local address.
6
7 2004-02-04  Hrvoje Niksic  <hniksic@xemacs.org>
8
9         * hash.c: Make the file compilable outside Wget source tree when
10         -DSTANDALONE is used.
11
12 2004-01-29  Hrvoje Niksic  <hniksic@xemacs.org>
13
14         * utils.c (determine_screen_width): Return 0 if not running on
15         Windows or on a TIOCGWINSZ-capable system.
16
17 2004-01-28  David Fritz  <zeroxdf@att.net>
18
19         * utils.c (determine_screen_width): Correctly determine console
20         width under Windows.
21
22 2004-01-28  Christian Biere  <christianbiere@gmx.de>
23
24         * progress.c (bar_set_params): Fixed syntax error when HAVE_ISATTY
25         was undefined.
26
27         * ftp.c (ftp_loop_internal): Allocate a larger buffer in case
28         "try" gets translated to something large.  Ditto in http_loop in
29         http.c.
30
31         * http.c (response_header_copy): Don't write to buf[BUFSIZE].
32
33         * ftp-opie.c (skey_response): Eliminate unnecessary string
34         concatenation; just call gen_md5_update twice.
35
36 2004-01-25  Hrvoje Niksic  <hniksic@xemacs.org>
37
38         * utils.c (xsleep): Don't call usleep with values larger than
39         1,000,000.
40
41 2003-12-16  Hrvoje Niksic  <hniksic@xemacs.org>
42
43         * http.c (gethttp): Fix generation of `Content-Length'.
44
45 2003-12-15  Gisle Vanem  <giva@bgnett.no>
46
47         * url.c (url_skip_credentials): Fixed return value; 'url' if no
48         credentials.
49
50 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
51
52         * url.c (url_skip_credentials): Return a pointer directly.
53
54 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
55
56         * url.c (url_file_name): Ditto.
57         (parse_errors): Ditto.
58
59         * retr.c (retr_rate): Ditto.
60
61         * progress.c (create_image): Ditto.
62
63         * netrc.c (parse_netrc): Ditto.
64
65         * main.c (struct cmdline_option): Ditto.
66         (redirect_output_signal): Ditto.
67
68         * init.c (commands): Ditto.
69
70         * ftp-ls.c (ftp_index): Ditto.
71
72         * cookies.c (check_domain_match): Declare the pointer to a literal
73         string as `const'.
74
75 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
76
77         * retr.c (fd_read_body): Pass total size to progress_create, not
78         the remaining amount.
79
80 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
81
82         * retr.c (fd_read_body): Don't fiddle with "interactive timeout"
83         if read timeout is unset.
84
85 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
86
87         * connect.c (bind_local): Don't set the IPV6_V6ONLY option on the
88         socket.
89
90 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
91
92         * url.c (url_file_name): Respect the setting of
93         opt.protocol_directories.
94
95         * main.c (main): Only check for ret=='?' when longindex is unset.
96         (option_data): New option --protocol-directories.
97
98 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
99
100         * ftp.c (getftp): Ditto.
101
102         * http.c (gethttp): Correctly calculate bandwidth as total data
103         read divided with download time.
104
105         * retr.c (fd_read_body): Separate the return values for data
106         written and read.
107
108 2003-12-05  Hrvoje Niksic  <hniksic@xemacs.org>
109
110         * http.c (H_REDIRECTED): Respect the HTTP/1.1 "303 See Other"
111         response code.
112         Suggested by Dan Razzell.
113
114 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
115
116         * retr.c (fd_read_body): Report the amount of data *written* as
117         amount_read.  This is not entirely logical, but that's what the
118         callers expect, and it's not easy to change.
119
120         * ftp.c (ftp_loop_internal): Ditto.
121
122         * http.c (http_loop): Be smarter about assigning restval; if we're
123         in the nth pass of a download, simply use the information we have
124         about how much data has been retrieved as restval.
125
126         * ftp.c (getftp): Ditto for FTP "REST" command.
127
128         * http.c (gethttp): When the server doesn't respect range, skip
129         the first RESTVAL bytes of the read body.  Never truncate the
130         output file.
131
132         * retr.c (fd_read_body): Support skipping initial STARTPOS octets.
133
134 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
135
136         * http.c (skip_short_body): Renamed skip_body to skip_short_body;
137         don't bother calling fd_read_body.
138
139 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
140
141         * retr.c (fd_read_body): Sanitize arguments and document them
142         better.  Make sure the timer is created and updated only if
143         necessary.  Updated callers.
144
145 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
146
147         * http.c (skip_body): New function.
148         (gethttp): Use it to skip the body of the responses we don't care
149         to download.  That allows us to reuse the connection.
150         (gethttp): Trust that the HEAD requests will not generate body
151         data.
152
153         * retr.c (fd_read_body): Don't write to OUT if it's NULL.
154
155 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
156
157         * http.c (gethttp): Initialize SSL only the first time when SSL
158         URL is downloaded.
159
160 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
161
162         * cookies.c (cookie_header): Only generate the contents of the
163         header, not the leading "Cookie: " or the trailing "\r\n".
164
165         * http.c (gethttp): When adding headers specified with `--header',
166         allow them to override the headers generated by Wget.
167
168         * init.c (cmd_spec_header): Made opt.user_headers a vector.
169
170         * http.c (request_new): New function.  Returns a request structure
171         which can be modified in various ways, most notably by adding HTTP
172         headers to the request.
173         (request_set_header): New function for adding the header to the
174         request.  If the header is already available, it gets replaced.
175         (request_send): Construct and send the request.
176         (gethttp): Use the request_* functions to generate the request.
177
178 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
179
180         * http.c (gethttp): Don't include the Proxy-Authorization header
181         in the request tunneled through proxy.
182
183 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
184
185         * http.c (gethttp): Use the CONNECT handle to establish SSL
186         passthrough through non-SSL proxies.
187
188 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
189
190         * init.c: Don't #include netinet/Winsock stuff.
191
192 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
193
194         * http.c: Deleted the old functions header_process,
195         header_extract_number, header_exists, header_strdup,
196         http_process_range, http_process_none, http_process_type, and
197         http_process_connection.
198
199         * http.c (response_new): New function.
200         (response_header_bounds): Ditto.
201         (response_header_copy): Ditto.
202         (response_header_strdup): Ditto.
203         (response_status): Ditto.
204         (gethttp): Use the new response_* functions to parse the response.
205         Support HTTP/0.9 responses.
206
207 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
208
209         * progress.c (create_image): Don't calculate ETA if nothing has
210         been downloaded yet, because it causes division by zero.
211
212 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
213
214         * connect.c (bind_local): Rename sa_len to addrlen because IRIX
215         headers define sa_len as a macro.
216
217 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
218
219         * html-parse.c (convert_and_copy): Remove embedded newlines when
220         AP_TRIM_BLANKS is specified.
221
222 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
223
224         * ftp.c: Set con->csock to -1 where rbuf_uninitialize was
225         previously used.
226
227 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
228
229         * Makefile.in (http$o): Added the trailing backslash that was
230         missing.
231
232 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
233
234         * headers.c: Removed.  The file is no longer relevant, now that no
235         special handling of headers is done by the rbuf code.  Moved
236         portions to http.c.
237
238 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
239
240         * rbuf.c: Removed.
241
242         * ftp-basic.c (ftp_response): Use fd_read_line.  No longer use
243         struct rbuf.  Updated all callers.
244
245         * http.c (gethttp): Use fd_read_head to read all the headers in
246         one go.
247         (next_header): New function.
248
249         * retr.c (fd_read_line): New function: reads a line from FD,
250         leaving the rest of the data unread.
251         (fd_read_head): New function.
252
253         * connect.c (fd_peek): New function, implements peeking.
254         (poll_internal): New function.
255         (fd_read): Use it.
256         (fd_write): Ditto.
257         (fd_peek): Ditto.
258         (fd_register_transport): Allow registering a "peeker" callback.
259
260 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
261
262         * connect.c: Renamed xread/xwrite/xclose to
263         fd_read/fd_write/fd_close.  The "x" prefix is not appropriate
264         because the semantics have diverged from read/write/close too
265         significantly.  Updated all callers.
266
267 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
268
269         * connect.c (sock_write): It's not necessary to initialize RES.
270
271 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
272
273         * main.c (main): Don't reference opt.ipv4_only and opt.ipv6_only
274         if IPv6 is disabled.
275
276 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
277
278         * connect.c (socket_has_inet6): Only compile it if IPv6 is enabled
279         and AI_ADDRCONFIG is missing.
280
281 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
282
283         * gen_sslfunc.c (ssl_init_prng): Warn the user when using a weak
284         random seed.
285
286 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
287
288         * host.c (address_list_contains): Renamed address_list_find to
289         address_list_contains because its result is boolean.
290
291 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
292
293         * connect.c (select_fd): Return 1 if select is not available.
294
295 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
296
297         * connect.c (connect_to_host): Don't reference address list after
298         releasing it.
299
300 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
301
302         * main.c (print_help): Fix alignment of FTP options output.
303
304 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
305
306         * host.c (lookup_host): Check for the ability to create IPv6
307         sockets here.
308
309         * init.c (defaults): Don't auto-set --inet4-only on IPv6-less
310         systems.
311
312 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
313
314         * main.c (print_help): Fix typo in `-O' help message.  Fix docs of
315         -Y/--proxy.  Fix docs of `--cookies' and `--glob'.  Improve docs
316         of --convert-links.  Fix docs of SSL options.
317
318 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
319
320         * ftp-basic.c: Don't include <arpa/inet.h> and others because
321         they're no longer needed.
322
323 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
324
325         * main.c (main): Don't allow setting of both opt.ipv4_only and
326         opt.ipv6_only.
327
328         * init.c (defaults): Mark opt.ipv4_only specially when set
329         automatically.
330
331 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
332
333         * host.c (lookup_host): Use AI_ADDRCONFIG only if the family is
334         unspecified.  This ensures that specifying `--no-inet4' on systems
335         where IPv6 resolves, but doesn't work behaves the same regardless
336         of the availability of AI_ADDRCONFIG.
337
338 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
339
340         * host.c: Don't refer to the now-removed function
341         forget_host_lookup in the documentation of lookup_host.
342
343 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
344
345         * http.c (persistent_available_p): Correctly specify the endpoint
346         argument to socket_ip_address.
347         (gethttp): When printing the "reusing connection to..." message,
348         specify the host name of the reused connection, not the current
349         host name.  That makes more sense because it provides a useful
350         piece of information -- we know to which host we're supposed to
351         connect anyway!
352
353 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
354
355         * init.c: Make sure the options are in alphabetic order!
356
357         * host.c (lookup_host): Merge lookup_host_passive and lookup_host
358         after all -- having both would result in some code duplication.
359         (lookup_host): Set hints.ai_family to AF_INET if ipv4_only is
360         requested.  Likewise, set it to AF_INET6 for ipv6_only.  Specify
361         AI_ADDRCONFIG where available.
362         (lookup_host): New flag LH_REFRESH that specifies that a cached
363         entry for HOST should be refreshed.
364         (cache_query): New function.
365         (cache_store): Ditto.
366         (cache_remove): Ditto.
367         (forget_host_lookup): No longer necessary, replaced with static
368         function cache_remove.
369
370 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
371
372         * main.c: Enable -4 and -6 only if IPv6 is enabled.
373
374 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
375
376         * connect.c (register_transport): Renamed from register_extended.
377         Explain the intended usage.
378
379 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
380
381         * url.c (uri_merge): Merging "foo" and "bar" should result in
382         "bar", not in "foo/bar".
383         (path_simplify): Don't remove empty path elements; don't
384         special-case leading slash.
385         (path_simplify): Don't swallow ".."'s at the beginning of string.
386         E.g. simplify "foo/../../bar" as "../bar", not as "bar".
387         (append_uri_pathel): Defang ".." path element upon encountering
388         it.
389
390 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
391
392         * http.c (persistent_available_p): Don't attempt to talk to two
393         different SSL sites over the same secure connection.
394
395 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
396
397         * http.c (gethttp): Ditto.
398
399         * ftp.c (getftp): Use retryable_socket_connect_error instead of
400         CONNECT_ERROR.
401
402         * wget.h (CONNECT_ERROR): Removed.
403
404         * connect.c (retryable_socket_connect_error): New function instead
405         of unsupported_socket_family_error.
406
407 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
408
409         * wget.h (CONNECT_ERROR): Use it.
410
411         * connect.c (unsupported_socket_family_error): New function.
412
413 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
414
415         * connect.c (bind_local): Renamed bindport to bind_local; return
416         the socket directly.  Updated callers.
417         (accept_connection): Renamed acceptport to accept_connection;
418         return the created socket directly.  Updated callers.
419
420 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
421
422         * init.c (defaults): Turn on opt.ipv4_only if we're compiling with
423         IPv6, and AI_ADDRINFO is not available, and AF_INET6 sockets can't
424         be created.
425
426 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
427
428         * host.c (lookup_host): Document the fact that the addresses are
429         returned in order.
430
431 2003-11-12  Hrvoje Niksic  <hniksic@xemacs.org>
432
433         * utils.c: Use limits.h only where available.
434
435         * hash.c: Use INVALID_PTR and INVALID_PTR_BYTE.  Include limits.h.
436
437 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
438
439         * main.c: Added options --inet4-only and --inet6-only.
440
441 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
442
443         * host.c (host_errstr): Use the more standard message "Unknown
444         host".
445
446 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
447
448         * connect.c (connect_to_host): Use that flag to decide whether to
449         re-resolve the host name.
450
451         * host.c (struct address_list): Added a flag that maintains
452         whether the connection worked at some point.
453
454 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
455
456         * host.c (lookup_host): Special-case the numeric addresses only in
457         the non-IPv6 case.
458
459 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
460
461         * connect.c (resolve_bind_address): Call lookup_host_passive.
462         Make sure that opt.bind_address is resolved only once.
463
464         * host.c (lookup_host_passive): New function, handles "passive"
465         lookups.
466         (lookup_host): Remove the passive flags.  Remove the
467         family-related flags -- use ip_default_family instead.
468
469 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
470
471         * html-url.c: Get URLs from <object data="...">.
472
473 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
474
475         * main.c (option_data): Specify the command to use for --mirror.
476
477 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
478
479         * cookies.c (cookie_handle_set_cookie): Specify exact match for
480         unspecified domains.
481
482 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
483
484         * main.c (main): Removed one-letter options `-C', `-g', `-G', and
485         `-s'.
486
487 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
488
489         * main.c (main): Add --dont-remove-listing for backward
490         compatibility with previous versions.
491         (print_help): Fix typo, spotted by Dennis Smit.
492
493 2003-11-08  Gisle Vanem  <giva@bgnett.no>
494
495         * ftp-basic.c: Support Windows-2000 ftp servers. Win-2000 *is*
496         Win-NT 5.0 so calling it ST_WINNT is okay I guess.
497
498 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
499
500         * progress.c (update_speed_ring): Clear the speed ring when the
501         download stalls.
502
503         * retr.c (get_contents): Specify 0.95s read timeout, so that the
504         progress gauge can be updated even when data arrives very slowly
505         or stalls.
506
507 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
508
509         * utils.c (wtimer_allocate): Bless the use of wtimer_read on a
510         timer that has merely been allocated because get_contents() does
511         that.
512         (wtimer_update): Abort if the timer is not initialized.
513
514 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
515
516         * retr.c (get_contents): Pass the timer to limit_bandwidth().
517
518         * utils.c (wtimer_update): New function instead of wget_elapsed;
519         just update the timer, but don't return anything.
520         (wtimer_read): Read and return the last known value of the timer.
521
522 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
523
524         * http.c (persistent_available_p): Instead of matching all the
525         addresses of HOST and last host, determine the peer's IP address
526         with socket_ip_address and see if that address is one of those
527         HOST resolves to.
528
529         * host.c (address_list_match_all): Removed.
530         (address_list_find): New function, finds an IP address in the
531         address list.
532
533         * ftp.c (ftp_do_pasv): Get the peer's address here, and pass it to
534         ftp_epsv so it doesn't need to call getpeername.
535
536         * ftp-basic.c (ftp_port): Use socket_ip_address instead of
537         getpeername.
538         (ftp_lprt): Ditto.
539
540         * connect.c (socket_ip_address): Replaces conaddr, generalized to
541         either get peer's or local address.
542         (sockaddr_get_data): Made local to this file.
543
544 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
545
546         * hash.c (HASH_POSITION): Explicitly accept the hash function.
547         (grow_hash_table): Extract ht->hash_function outside the loop.
548         (hash_table_remove): Ditto.
549         (hash_table_clear): Fill entries with 0xff to clear them.
550         (hash_table_remove): Mark entries as deleted with the correct
551         marker.
552
553 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
554
555         * http.c (persistent_available_p): No reason for the host lookup
556         to be silent -- it's a lookup like any other.
557
558 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
559
560         * connect.c (register_extended): Check that fd >= 0.
561
562 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
563
564         * connect.c (LAZY_RETRIEVE_INFO): Set LAST_INFO.
565
566 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
567
568         * hash.c (NON_EMPTY): Use the all-bit-set value as the marker that
569         the field is empty.  This allows NULL pointer and 0 value to be
570         used as keys, which is necessary for the connect.c code to work
571         when fd==0.
572         (hash_table_new): Fill mappings with 0xff.
573         (grow_hash_table): Ditto.
574
575 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
576
577         * url.c (url_parse): Allow empty ports.
578
579 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
580
581         * main.c (print_help): Break the help string into multiple chunks.
582         (cmdline_option): New option handler OPT_FUNCALL.  Generalized
583         HANDLE_CMD to generic DATA.
584         (option_data): Use the new OPT_FUNCALL feature.
585
586 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
587
588         * log.h: Declare log_init, log_close, and
589         log_request_redirect_output here.
590
591 2003-11-05  Dennis Smit  <ds@nerds-incorporated.org>
592
593         * main.c: (main): added --preserve-permissions option.
594
595         * ftp.c (ftp_retrieve_list): added support for
596         --preserve-permissions option.
597
598         * init.c: added support for --preserve-permission option.
599
600         * option.h: added support for --preserve-permission option.
601
602 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
603
604         * main.c (init_switches): New function.  Convert option_data to
605         long_options and short_options, which can be fed to getopt_long.
606         (main): Execute command-line options by consulting option_data.
607
608 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
609
610         * gen_sslfunc.c (ssl_read): Implement a more correct check for
611         EINTR.
612         (ssl_write): Ditto.
613         (init_ssl): Use a global SSL context.
614
615 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
616
617         * connect.c (xclose): Free INFO even if it doesn't provide a
618         closer.
619
620 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
621
622         * connect.c: Updated all callers of
623         iread/ssl_iread/iwrite/ssl_iwrite to use xread and xwrite instead.
624
625         * rbuf.h (struct rbuf): Removed the SSL member because SSL is
626         handled automatically by xread.
627
628         * hash.c (ptrhash): Made private.
629         (ptrcmp): Ditto.
630         (inthash): Removed.
631
632         * connect.c (select_fd): Don't set errno, leave it to the caller.
633
634         * gen_sslfunc.c (connect_ssl): Use register_extended to register
635         SSL callbacks for communication with SSL-enabled endpoints.
636         (ssl_read): New function.
637         (ssl_write): Ditto.
638         (ssl_poll): Ditto.
639         (ssl_close): Ditto.
640
641         * connect.c (register_extended): New function -- register
642         callbacks for basic socket operations.
643         (xread): Ditto.
644         (xwrite): Ditto.
645         (xclose): Ditto.
646         (sock_read): New function, default implementation for reading.
647         (sock_write): Ditto for writing.
648         (sock_poll): Ditto for polling.
649         (sock_close): Ditto for closing.
650
651 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
652
653         * connect.c (bindport): Fix compilation under pre-C99 compilers.
654
655 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
656
657         * connect.c (connect_to_ip): More compact error checking.
658         (bindport): Don't treat failed setsockopt as a fatal error.
659
660 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
661
662         * connect.c (resolve_bind_address): Use a more accurate error
663         message -- we're not binding to ANY, we're disabling bind
664         altogether.
665
666 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
667
668         * cookies.c (save_cookies_mapper): Respect the setting of
669         keep-session-cookies.
670         (cookie_jar_load): Import session cookies.
671         Based on code submitted by Nicolas Schodet.
672
673         * utils.c (datetime_str): Use information in TM when it's
674         non-NULL.
675
676         * main.c (main): New option `--keep-session-cookies'.
677
678 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
679
680         * Makefile.in (realclean): Delete config.h.in.
681
682 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
683
684         * config-post.h: New file, included from now autogenerated
685         config.h.in.
686
687 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
688
689         * progress.c (progress_handle_sigwinch): Don't call
690         determine_screen_width() from the signal handler.  Instead, just
691         set a volatile variable.
692         (bar_create): Check whether SIGWINCH was received.
693         (bar_update): Ditto.
694
695         * sysdep.h: Define SYSTEM_FNMATCH only if HAVE_FNMATCH_H is true.
696
697 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
698
699         * utils.c (xsleep): New function.  Uses nanosleep where available,
700         resuming sleeps interrupted by signals.  Updated callers of sleep
701         and usleep to use xsleep.
702
703 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
704
705         * ftp-basic.c (ftp_login): Remove shadowing (and bogus)
706         declaration of SEED.
707
708 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
709
710         * log.c (logvprintf): Documented better.  Renamed to
711         log_vprintf_internal to avoid confusion with the public API
712         functions logprintf and logputs.
713
714 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
715
716         * wget.h (N_): Don't parenthesize argument.
717
718 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
719
720         * host.h (ADDRESS_IPV4_DATA): Don't take the address of in.s_addr
721         because that doesn't work on machines that define it as bitfield.
722
723 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
724
725         * connect.c (select_fd): Generalize the third argument into WAIT,
726         so that the caller can request waiting for both read and write.
727         Updated callers.
728
729 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
730
731         * html-url.c (cleanup_html_url): Destroy the hash tables, don't
732         just call free on them.
733         (init_interesting): Use hash_table_put instead of string_set_add
734         because we don't need the strdup that the latter function
735         performs.
736
737         * init.c (cleanup): Don't pass NULL to cookie_jar_delete.
738
739         * xmalloc.c (xfree_real): Abort when passed a NULL pointer.
740         (xfree_debug): Print at the file and line of the offending call to
741         free.
742
743 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
744
745         * wget.h: Retired the `boolean' type.  Moved the DEFAULT_LOGFILE
746         define to log.h.  Moved the INFINITE_RECURSION define to recur.h.
747
748         * xmalloc.h: Renamed FREE_MAYBE to xfree_null and moved the
749         definition from wget.h to xmalloc.h.
750
751 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
752
753         * html-parse.c (decode_entity): New function; split the decoding
754         of entities here.
755         (convert_and_copy): Use it to decode entities.
756         (decode_entity): Handle the &apos entity.
757         (decode_entity): Don't decode Latin 1 numeric entities.  Don't
758         decode &#0.
759
760 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
761
762         * ftp-opie.c (calculate_skey_response): Use uint32_t instead of
763         `unsigned long' for the cheksum array.  Document the function.
764
765 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
766
767         * connect.c (acceptport): Don't call select_fd when timeout is not
768         requested.
769
770 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
771
772         * host.c: Removed the ip_default_family global variable.
773
774         * host.c (lookup_host): Document the function.  Fixed declaration
775         of VEC.
776
777 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
778
779         * various: Use new macros xnew, xnew0, xnew_array, and xnew0_array
780         in various places.
781
782 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
783
784         * wget.h: Move declarations of malloc and logging code to
785         xmalloc.h and log.h respectively to unclutter this file.
786         (STRDUP_ALLOCA): Made it side-effect free.
787
788         * xmalloc.h: New files.  Define macros xnew, xnew0, xnew_array,
789         and xnew0_array.
790
791         * xmalloc.c: New file.  Move the xmalloc routines here.
792
793 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
794
795         * connect.c (sockaddr_set_data): Remove the broken code that
796         checked for NULL address.
797
798 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
799
800         * host.c (address_list_from_single): Removed.
801         (address_list_from_ipv4_addresses): Renamed from
802         address_list_from_vector.
803
804 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
805
806         * sysdep.h (CLOSE): Don't call close on file descriptors less than
807         0, i.e. on uncreated sockets.
808
809         * connect.c (resolve_bind_address): Work on struct sockaddr
810         directly.
811         (connect_to_host): Replacement for connect_to_many.  Resolve HOST
812         and connect to any of its addresses.  If we can't connect and the
813         host name lookup was cached, try to resolve it again.  This should
814         fix problems with hosts behind dynamic DNS.  Updated all callers.
815         (connect_to_ip): Replacement for connect_to_one.  Removed SILENT;
816         added the argument PRINT instead.  Updated all callers.
817         (set_connection_host_name): Removed.
818
819         * host.c (address_list_address_at): New function instead of
820         address_list_copy_one. It returns a pointer to ip_address *, so
821         it's not necessary to copy the data.
822         (address_list_cached_p): New function.
823         (forget_host_lookup): Ditto.
824
825         * connect.c: Got rid of the MSOCK global variable.  Made bindport
826         return the local socket it creates.  Added a new argument to
827         acceptport, the socket to call accept on.  Updated callers.
828         (closeport): Removed.
829
830         * connect.c: Moved the sockaddr code from host.c to this file,
831         because most of that stuff is used for connecting, and has nothing
832         to do with host names anyway.
833         (sockaddr_set_data, sockaddr_get_data): New functions, replace the
834         old sockaddr_set_address, sockaddr_set_port, sockaddr_get_address,
835         and sockaddr_get_port.
836
837 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
838
839         * sysdep.h: Use `S >= 8' rather than `S == 8' when looking for
840         large integers.
841
842 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
843
844         * url.c (append_uri_pathel): New argument ESCAPED_P that says
845         whether [B, E) is to be treated as URL-escaped or not.  If
846         ESCAPED_P is false, don't unescape the region.
847         (url_file_name): u->file is not URL-escaped.
848
849 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
850
851         * retr.c (retrieve_from_file): Use retrieve_tree for
852         page-requisites.
853
854         * main.c (main): Don't define opt.recursive when -p is used.
855         Instead, make sure that recursion is used for HTTP in that case.
856
857 2003-10-29  Hrvoje Niksic  <hniksic@xemacs.org>
858
859         * host.h: Defined accessors for elements of ip_address.  Updated
860         all callers.
861         (address_list_match_all): Use memcmp in the non-IPv6 case.
862
863         * wget.h (CONNECT_ERROR): Don't retry connecting if connect()
864         returned EAFNOSUPPORT.
865
866 2003-10-27  Mauro Tortonesi <mauro@deepspace6.net>
867
868         * connect.h: changed bindport prototype and added the related
869         BIND_ON_IPV4_ONLY and BIND_ON_IPV6_ONLY flags.
870
871         * connect.c: changed bindport and resolve_bind_address to allow
872         protocol-version specific DNS resolution. modified conaddr,
873         acceptport and connect_to_one to make use of struct
874         sockaddr_storage and of the new ip_address structure.
875
876         * ftp-basic.c: added LPRT/LPSV (RFC1639) support, refactored
877         PORT/PASV (RFC959) and EPRT/EPSV (RFC2428) support code.
878
879         * ftp.c: added the ftp_do_port and ftp_do_pasv functions to
880         handle FTP over IPv6.
881
882         * ftp.h: changed prototype of ftp_epsv and added prototypes for
883         ftp_lpsv, ftp_lprt and ftp_eprt.
884
885         * host.c: renamed the
886         wget_sockaddr_set_address and wget_sockaddr_get_addr, and
887         wget_sockaddr_{s,g}et_port couples to sockaddr_{s,g}et_address and
888         sockaddr_{g,s}et_port respectively.  changed
889         address_list_match_all, address_list_from_addrinfo sockaddr_len,
890         pretty_print_address, lookup_host, sockaddr_{s,g}et_address and
891         sockaddr_{g,s}et_port to make use of struct sockaddr_storage and
892         of the new ip_address structure.  removed map_ipv4_to_ip and
893         map_ip_to_ipv4.
894
895         * host.h: redefined structure ip_address and removed structure
896         wget_sockaddr.
897
898 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
899
900         * sysdep.h: Include inttypes.h where available.
901
902         * host.c: Switch from u_int32_t to uint32_t.
903
904 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
905
906         * netrc.c (parse_netrc): Reset the QUOTE flag after the closing
907         quote.
908
909 2003-10-25  Hrvoje Niksic  <hniksic@xemacs.org>
910
911         * url.c (is_valid_ipv6_address): Reformat to GNU coding style.
912         Use enums for NS_IN* constants.  Use ISXDIGIT.
913
914         * convert.c (construct_relative): Document better how the function
915         works.
916
917 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
918
919         * config.h.in: Deploy preprocessor magic to avoid Ultrix's
920         <netdb.h> include <bitypes.h> which defines its own u_int32_t.
921         Reported by Bernhard Simon.
922
923 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
924
925         * version.c: Bump version.
926
927 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
928
929         * url.c: Ditto.
930
931         * html-parse.c (advance_declaration): Don't use trailing comma in
932         enum because older compilers don't support it.
933
934         * utils.c: Don't redefine HAVE_SIGSETJMP.
935
936 2003-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
937
938         * convert.c (construct_relative): Don't handle absolute files
939         specially -- for example, -P/tmp/foo shouldn't imply that
940         converted files must refer to "/tmp/foo/..."!
941
942 2003-10-15  Hrvoje Niksic  <hniksic@xemacs.org>
943
944         * http.c: Consider status 307 a valid redirect.
945
946 2003-10-15  Philip Stadermann  <philip.stadermann@credativ.de>
947
948         * ftp.c (ftp_retrieve_glob): Correctly loop through the list whose
949         elements might have been deleted.
950
951 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
952
953         * html-url.c (tag_handle_meta): Set the Refresh link to expect
954         HTML.
955         (append_one_url): Renamed to append_url.
956
957 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
958
959         * sysdep.h: Only define u_int32_t.
960
961 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
962
963         * utils.c (large_int_to_string): Use snprintf() to print the
964         number.  This will work even on systems where libc doesn't
965         understand %lld, but the compiler does, because it will use our
966         snprintf replacement.
967
968         * init.c (parse_bytes_helper): New function.
969         (cmd_bytes): Use it to parse bytes, but cast the result to long.
970         (cmd_bytes_large): Ditto, but store the result to LARGE_INT.  Used
971         for --quota so that --quota=10G works even on machines without
972         long long.
973
974         * options.h (struct options): Declare quota as LARGE_INT.
975
976         * retr.c (downloaded_exceeds_quota): Removed.
977         (downloaded_increase): Ditto.
978         (total_downloaded_bytes): New variable, replaces opt.downloaded,
979         which was the wrong place for it anyway.  Updated callers of
980         downloaded_exceeds_quota and downloaded_increase to check this
981         variable directly.
982
983         * sysdep.h: Get rid of VERY_LONG_TYPE.  Use LARGE_INT for the same
984         purpose, defined as `long', `long long' or `double', depending on
985         size of long and whether long long is available.
986
987 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
988
989         * sysdep.h: Also check size of short for int32_t.
990
991 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
992
993         * host.c (lookup_host): Use u_int32_t to store the result of
994         inet_addr().  That removes the need for offset fiddling, caring
995         about endian-ness, etc.
996
997         * sysdep.h: Define int32_t and u_int32_t if not available.
998
999 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
1000
1001         * ftp-basic.c (ftp_epsv): Use socklen_t * as the third argument to
1002         getpeername.
1003
1004         * config.h.in: Define socklen_t stub.
1005
1006         * host.c (sockaddr_len): Return socklen_t.
1007
1008         * connect.c (conaddr): Use socklen_t as the third argument to
1009         accept, getsockname, and connect.
1010
1011 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
1012
1013         * recur.c (retrieve_tree): Don't descend into documents that are
1014         not expected to contain HTML, regardless of their content-type.
1015
1016         * html-url.c (tag_url_attributes): Record which attributes are
1017         supposed to yield HTML links that can be followed.
1018         (tag_find_urls): Propagate that information to the caller through
1019         struct urlpos.
1020
1021 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
1022
1023         * hash.c (find_mapping): Return the next available mapping when
1024         the key is not found, not NULL.
1025         (hash_table_put): Use find_mapping to find the storage for the new
1026         data.
1027         (hash_table_put): Grow the table before exceeding maximum
1028         fullness, not afterwards.
1029
1030 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
1031
1032         * hash.c (hash_table_new): Slightly change the meaning of the
1033         first parameter.  Instead of being the minimum initial size, it is
1034         now the minimum number of items that the hash table can take
1035         without needing to resize.
1036
1037 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
1038
1039         * html-url.c (init_interesting): Initialize interesting_tags and
1040         interesting_attributes as hash tables.  This simplifies the code
1041         immensely because hash tables handle allocation and remove
1042         duplicates automatically.
1043         (find_tag): Removed.
1044         (collect_tags_mapper): Instead of calling find_tag, simply get the
1045         entry from interesting_tags hash table, which is both simpler and
1046         faster.
1047
1048 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
1049
1050         * hash.c (hash_table_get): Declare hash-table argument as const.
1051         (find_mapping): Ditto.
1052         (hash_table_get_pair): Ditto.
1053         (hash_table_contains): Ditto.
1054         (hash_table_count): Ditto.
1055
1056 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
1057
1058         * html-url.c (get_urls_html): Parse the appropriate flags to
1059         html-parse.c.
1060
1061         * html-parse.c (map_html_tags): Accept FLAGS from the caller
1062         instead of examining OPT.
1063
1064 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
1065
1066         * html-url.c (find_tag): Switch to binary search.
1067
1068 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
1069
1070         * main.c (print_help): Fix typo; stured -> stored.
1071
1072 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
1073
1074         * getopt.c: Add definitions of getopt_long and getopt_long_only.
1075
1076 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
1077
1078         * config.h.in: Renamed DEBUG to ENABLE_DEBUG.  ENABLE_DEBUG is, I
1079         think, a better name, because it implies that debugging output is
1080         merely possible, not "on by default", as might be construed from
1081         just DEBUG.
1082
1083 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
1084
1085         * ftp.c (has_insecure_name_p): Define it here.
1086
1087         * utils.c (has_wildcards_p): Define it here.
1088
1089         * sysdep.h: Declare fnmatch-related macros here, if not using
1090         system fnmatch().  Update .c files to not declare fnmatch.h
1091         directly.
1092
1093         * cmpt.c (fnmatch): Moved here.  Use it only under non-GNU libc.
1094
1095 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
1096
1097         * getopt.c: Newer version, imported from Free libit.
1098
1099 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
1100
1101         * cookies.c (struct cookie): Remove unused backpointer to cookie
1102         jar.
1103
1104 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
1105
1106         * cmpt.c (memmove): Comment out, since it's no longer used.
1107
1108         * cookies.c (cookie_jar_generate_cookie_header): Allocate room for
1109         chains in one pass.
1110         (find_chains_of_host): Assume that the caller has allocated DEST
1111         to be sufficiently large to take all the data.
1112         (eliminate_dups): Run through the array and eliminate dups on the
1113         fly instead of using memmove.
1114         (cookie_jar_process_set_cookie): Free cookie->domain before
1115         re-setting it.
1116
1117 2003-10-05  Gisle Vanem  <giva@bgnett.no>
1118
1119         * mswindows.c (set_sleep_mode): Fix type of
1120         _SetThreadExecutionState.
1121
1122 2003-10-05  Hrvoje Niksic  <hniksic@xemacs.org>
1123
1124         * utils.c (file_size): Return -1 if fopen() returns NULL.  Prior
1125         to this patch, wget --post-file=nosuchfile dumped core.
1126
1127 2003-10-04  Gisle Vanem  <giva@bgnett.no>
1128
1129         * mswindows.c (run_with_timeout): Use WaitForSingleObject to wait
1130         for thread termination.
1131
1132 2003-10-04  Hrvoje Niksic  <hniksic@xemacs.org>
1133
1134         * log.c: Use `...' in function definitions; ansi2knr will convert
1135         them to va_dcl.  This allowed removal of the ugly VA_START_1 and
1136         VA_START_2 macros.
1137
1138 2003-10-03  Gisle Vanem  <giva@bgnett.no>
1139
1140         * connect.c: And don't include them here.
1141
1142         * mswindows.h: Include winsock headers here.
1143
1144 2003-10-03  Hrvoje Niksic  <hniksic@xemacs.org>
1145
1146         * html-parse.c (convert_and_copy): Move variable declarations
1147         before statements.
1148
1149 2003-10-02  Gisle Vanem  <giva@bgnett.no>
1150         
1151         * mswindows.c (run_with_timeout): For Windows: Run the 'fun' in a
1152         thread via a helper function. Continually query the thread's
1153         exit-code until finished or timed out.
1154
1155 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
1156
1157         * wget.h (XMALLOC_ARRAY): Removed.
1158         (ALLOCA_ARRAY): Ditto.
1159
1160         * html-parse.c: Renamed alloca_p to resized.
1161         (GROW_ARRAY): Renamed DO_REALLOC_FROM_ALLOCA to GROW_ARRAY and
1162         returned it to html-parse.c, since nothing else was using it.
1163
1164 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
1165
1166         * retr.c (retrieve_url): Initialize DUMMY storage for DT.  Caught
1167         by valgrind.
1168
1169 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
1170
1171         * html-parse.c (convert_and_copy): Handle numeric entities in
1172         hexadecimal, &#xHH.
1173         (convert_and_copy): Copy the contents directly to the pool without
1174         a stack-allocated intermediary.
1175
1176 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
1177
1178         * utils.c (alarm_set): New function; use either setitimer or alarm
1179         to set up the alarm.
1180         (alarm_cancel): New function; cancel the alarm set up by
1181         alarm_set.
1182         (run_with_timeout): Use them.
1183
1184 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
1185
1186         * url.c (url_parse): Don't leak memory when a reencoded URL turns
1187         out to be invalid.
1188
1189         * url.c (parse_errors): Mark error messages for translation.
1190         (url_error): Translate error messages returned to the caller.
1191
1192 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
1193
1194         * ftp.c (ftp_loop_internal): Initialize TMRATE to NULL to shut up
1195         the compiler.
1196
1197 2003-09-26  Gisle Vanem  <giva@bgnett.no>
1198
1199         * src/mswindows.c: Added ws_percenttitle() showing progress in the
1200         window titlebar. Called from retr.c. Secured ws_mypath().
1201
1202         * windows/config.h.ms: alloca() prototype not needed.  Removed
1203         "#undef ENABLE_NLS"; should be in Makefile IMHO. Moved
1204         WGET_USE_STDARG from mswindows.h to config.ms.h because of #ifdef
1205         in log.c. (MSVC's vararg.h and stdarg.h are incompatible).
1206
1207 2003-09-29  Aaron Hawley <Aaron.Hawley@uvm.edu>
1208
1209         * ftp.c (getftp): --spider option should now work with FTP
1210         downloads.
1211         (ftp_loop_internal): quiet reports and calculations of downloads
1212         when --spider option set, nor try deleting when --delete-after
1213         also set.
1214         (ftp_loop): --spider will skip HTML-ification of .listing file.
1215
1216 2003-09-26  Gisle Vanem  <giva@bgnett.no>
1217
1218         * mswindows.c (read_registry): Removed.
1219         (set_sleep_mode): New function.
1220         (windows_main_junk): Call it.
1221
1222 2003-09-26  Gisle Vanem  <giva@bgnett.no>
1223
1224         * mswindows.c (read_registry): Fix invocation of registry
1225         functions.
1226
1227         * mswindows.c (read_registry): Condition definitions of sleep and
1228         usleep with not HAVE_SLEEP and HAVE_USLEEP respectively.  Define
1229         HAVE_SLEEP and HAVE_USLEEP under __DMC__.
1230
1231 2003-09-24  Hrvoje Niksic  <hniksic@xemacs.org>
1232
1233         * url.c (url_escape_1): Revert unintentional change to lowercase
1234         xdigit escapes.
1235         (url_escape_dir): Document that this function depends on the
1236         output of url_escape_1.
1237
1238 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
1239
1240         * progress.c (create_image): Print the current ETA if we're done
1241         with the download.
1242         (create_image): Change '-' display char to '+' in the progress bar.
1243
1244         * Makefile.in (clean): Remove .libs.
1245
1246 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
1247
1248         * cookies.c (struct cookie): New flag domain_exact.
1249         (update_cookie_field): Skip leading dot in domain.
1250         (find_matching_chains): Match numeric addresses exactly; don't
1251         needlessly copy HOST to the stack.
1252         (matching_cookie): Added argument HOST.  If cookie->domain_exact
1253         is set, check that HOST is equal to cookie->domain.
1254         (cookie_jar_load): Only use TAB as delimiter.  Document the
1255         meaning of DOMAIN-FLAG.  Skip leading dot in domain.
1256         (cookie_jar_load): Don't ignore DOMAIN-FLAG -- instead, set
1257         domain_exact to true if DOMAIN-FLAG is false.
1258         (save_cookies_mapper): If domain_exact is false, prepend the
1259         domain with dot, like Mozilla does.
1260
1261 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
1262
1263         * progress.c (create_image): Print the initial part of the
1264         download with '-' characters, analogous to how dot progress prints
1265         the initial part with ','.
1266
1267         * hash.c (ptrhash): New function.
1268         (ptrcmp): Ditto.
1269         (hash_table_new): Default to identity hash table.
1270
1271 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
1272
1273         * safe-ctype.h (_sch_test): The cast of BIT to unsigned char was
1274         broken -- _sch_istable bitmasks are 16-bit, not 8-bit!  Cast BIT
1275         to unsigned short instead.
1276
1277 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
1278
1279         * url.c (path_simplify): Instead of calls to memmove, handle "./"
1280         and "../" by advancing pointers.
1281
1282 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
1283
1284         * retr.c (getproxy): Moved from url.c.
1285
1286         * convert.c: Split off link conversion from url.c into separate
1287         file.  Also included the book-keeping stuff from recur.c.
1288
1289 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
1290
1291         * init.c: Improved documentation of functions.
1292         (cmd_boolean): Attempt to make code that tries to avoid calling
1293         strcmp for "speed" a bit more readable.
1294
1295         * init.c (simple_atof): Report error on encountering non-digit,
1296         non-"." character.
1297         (simple_atoi): Replacement for myatoi(), calling interface
1298         compatible with simple_atof.  Updated myatoi's callers.
1299
1300 2003-09-21  Bertrand Demiddelaer  <bert@b3rt.org>
1301
1302         * url.c (path_simplify): Would read two bytes past the end of the
1303         string in the "./" case.
1304
1305 2003-09-21  Matthew J. Mellon  <mellon@tymenet.com>
1306
1307         * http.c (gethttp): Recognize content-type "application/xhtml+xml"
1308         as what Wget considers "text/html".
1309
1310 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
1311
1312         * connect.c (connect_with_timeout): Made timeout type double.
1313
1314         * options.h (struct options): New members read_timeout,
1315         dns_timeout, and connect_timeout.
1316         Use them.
1317
1318 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
1319
1320         * init.c (simple_atof): New function.
1321         (cmd_time): Use it.
1322         (cmd_bytes): Accept things like "1.5k" and such.  Use simple_atof
1323         to parse decimals.
1324
1325         * retr.c (limit_bandwidth): Adjust each sleep by the error of the
1326         previous one.
1327
1328 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
1329
1330         * main.c (main): Use setoptval() for setting the options.  Use
1331         run_command for `-e'.
1332
1333         * init.c (parse_line): Rewritten to return COMIND right away.
1334         Changed linkage to static.
1335         (run_wgetrc): Use the available comind when calling setval, so it
1336         doesn't have to be computed twice.
1337         (setval_internal): New function, runs the command's action without
1338         any error checking.
1339         (setoptval): New function, does what setval used to do, but exits
1340         in case of error.
1341         (run_command): New function.
1342
1343 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
1344
1345         * connect.c (select_fd): Change MAXTIME's type to double.  Handle
1346         its decimal part.
1347
1348         * retr.c (sleep_between_retrievals): In the random-wait case, use
1349         random_float() to wait between 0 and 2*opt.wait seconds.
1350
1351         * utils.c (run_with_timeout): Accept `double' timeouts.  Correctly
1352         handle timeout values in (0, 1) range.
1353         (random_float): New function.
1354
1355         * options.h (struct options): Change the types of wait, waitretry,
1356         and timeout to double.
1357
1358         * init.c (cmd_time): Accept floating point time.
1359
1360 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
1361
1362         * retr.c (get_contents): Cosmetic fixes.
1363
1364 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
1365
1366         * url.c (uri_merge): Get rid of uri_merge_1.
1367         (uri_merge): Merge "foo//", "bar" as "foo//bar", not "foo///bar",
1368         i.e. don't add an extra slash merely because BASE ends with two
1369         slashes.
1370         (parse_credentials): Renamed from parse_uname.  Rewrittern in
1371         standard [beg, end) calling style.
1372         (url_skip_credentials): Renamed from url_skip_uname.  Made static.
1373         (url_skip_credentials): Include # and ; as terminators.  Old code
1374         would mistakenly consider "http://foo.com#hniksic@iskon.hr" to
1375         contain a username.
1376         (url_skip_scheme): Removed because it was unused.
1377         (url_has_scheme): Require "scheme" to be at least one char long.
1378
1379 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
1380
1381         * url.c (url_file_name): Expect NULL dir_prefix.
1382
1383         * init.c (cmd_file): Use a macro to prevent multiple #ifdef
1384         WINDOWS.
1385         (defaults): Set dir_prefix to NULL by default.
1386
1387 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
1388
1389         * safe-ctype.h (_sch_test): Cast BIT to unsigned char, like latest
1390         gcc does.
1391
1392 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
1393
1394         * wget.h (BOUNDED_TO_ALLOCA): Evaluate PLACE only once.
1395         (ARRAY_SIZE): Renamed to countof.  All callers updated.
1396
1397 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
1398
1399         * main.c (main): New option --strict-comments.
1400
1401         * html-parse.c (find_comment_end): New function: simple BM search
1402         for "-->".
1403         (map_html_tags): Use it if looking at a comment and not in strict
1404         comments mode.
1405
1406 2003-09-17  Aurelien Marchand  <artaxerxes@users.sf.net>
1407
1408         * ftp.h: Added OS400 system in enum
1409         * ftp-basic.c: recognize OS400 systems
1410         * ftp.c: don't prepend the CWD if talking to OS400, since it
1411         breaks the change in library
1412
1413 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
1414
1415         * retr.c (get_contents): Pass the correct argument to ssl_iread.
1416
1417 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
1418
1419         * safe-ctype.h: Don't #define ctype.h macros to errors because
1420         that loses when someone #include's ctype.h after safe-ctype.h.
1421
1422 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
1423
1424         * url.c: Undef U, W, C after use.
1425
1426 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
1427
1428         * init.c (cmd_spec_restrict_file_names): Allow the OS setting to
1429         be augmented by ",nocontrol" which means don't escape the control
1430         characters, but otherwise keep OS settings.
1431
1432         * url.c (file_unsafe_char): Deleted.
1433         (append_uri_pathel): Query filechr_table directly.
1434         (filechr_table): Separated Unix, Windows, and control-unsafe
1435         characters.
1436
1437 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
1438
1439         * url.c (url_escape_1): New function.
1440         (url_escape): Use it.
1441         (sync_path): Handle pathological cases where u->file and u->dir
1442         contain really strange characters.
1443         (ENCODE): Deleted.
1444         (REENCODE): Deleted.
1445
1446 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
1447
1448         * url.c (url_file_name): Don't reallocate FNAME if the file
1449         doesn't exist, as is usually the case.
1450
1451         * utils.c (unique_name): New flag allow_passthrough.
1452
1453 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
1454
1455         * utils.c (wtimer_sys_diff): Convert the time difference to signed
1456         __int64, then to double.  This works around MS VC++ 6 which can't
1457         convert unsigned __int64 to double directly.
1458
1459 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
1460
1461         * Makefile.in (clean): Also remove the core.<number> files
1462         produced by recent Linux systems.
1463
1464 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
1465
1466         * http.c (post_file): Don't pad the file if it's not large
1467         enough.  Bail out instead.
1468
1469 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
1470
1471         * retr.c (get_contents): Reduce the buffer size to the amount of
1472         data that may pass through for one second.  This prevents long
1473         sleeps when limiting bandwidth.
1474
1475         * connect.c (connect_to_one): Reduce the socket's RCVBUF when
1476         bandwidth limitation to small values is requested.
1477
1478 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
1479
1480         * progress.c (update_speed_ring): Moved the speed ring update to a
1481         separate function and documented it better.
1482
1483         * progress.c: Use `double' for most timers to support granularity
1484         smaller than 1ms.
1485
1486 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
1487
1488         * wget.h (XDIGIT_TO_XCHAR): Implement as index into a literal
1489         string.
1490         (XDIGIT_TO_xchar): Ditto.
1491
1492 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
1493
1494         * utils.c: Change the type of timer-related functions from long to
1495         double, for better precision.  On machines supporting gettimeofday
1496         the timers now work with granularity of less than one millisecond.
1497
1498 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
1499
1500         * cookies.c (parse_set_cookies): Fixed the parser to handle more
1501         edge conditions.
1502         (test_cookies): New function, contains a test suite for
1503         parse_set_cookies.
1504
1505 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
1506
1507         * url.c (strpbrk_or_eos): Implement as a macro under Gcc.
1508
1509 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
1510
1511         * cookies.c (parse_set_cookies): Allow trailing space in
1512         set-cookies header.  Also, allow any amount of whitespace, not
1513         only one character.  Allow empty set-cookies header without
1514         spewing an error.
1515
1516 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
1517
1518         * url.c (append_uri_pathel): Use opt.restrict_file_names when
1519         calling file_unsafe_char.
1520
1521         * init.c: New command restrict_file_names.
1522
1523         * main.c (main): New option --restrict-file-names[=windows,unix].
1524
1525         * url.c (url_file_name): Renamed from url_filename.
1526         (url_file_name): Add directory and hostdir prefix here, not in
1527         mkstruct.
1528         (append_dir_structure): New function, does part of the work that
1529         used to be in mkstruct.  Iterates over path elements in u->path,
1530         calling append_uri_pathel on each one to append it to the file
1531         name.
1532         (append_uri_pathel): URL-unescape a path element and reencode it
1533         with a different set of rules, more appropriate for handling of
1534         files.
1535         (file_unsafe_char): New function, uses a lookup table to decide
1536         whether a character should be escaped for use in file name.
1537         (append_string): New utility function.
1538         (append_char): Ditto.
1539         (file_unsafe_char): New argument restrict_for_windows, decide
1540         whether Windows file names should be escaped in run-time.
1541
1542         * connect.c: Include <stdlib.h> to get prototype for abort().
1543
1544 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
1545
1546         * utils.c (wtimer_sys_set): Extracted the code that sets the
1547         current time here.
1548         (wtimer_reset): Call it.
1549         (wtimer_sys_diff): Extracted the code that calculates the
1550         difference between two system times here.
1551         (wtimer_elapsed): Call it.
1552         (wtimer_elapsed): Don't return a value smaller than the previous
1553         one, which could previously happen when system time is set back.
1554         Instead, reset start time to current time and note the elapsed
1555         offset for future calculations.  The returned times are now
1556         guaranteed to be monotonically nondecreasing.
1557
1558 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
1559
1560         * host.c (lookup_host): Print the result of the DNS lookup.
1561
1562 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
1563
1564         * init.c (cmd_boolean): Accept yes/no along with on/off.
1565         (cmd_lockable_boolean): Ditto.
1566
1567 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
1568
1569         * init.c: New command dns_cache.
1570
1571         * main.c (main): New option --dns-cache[=off].
1572
1573 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
1574
1575         * config.h.in: Initialize HAVE_GETADDRINFO and ENABLE_IPV6.
1576
1577         * all: Use #ifdef ENABLE_IPV6 instead of the older INET6.  Use
1578         HAVE_GETADDRINFO for getaddrinfo-related stuff.
1579
1580 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
1581
1582         * url.c (url_parse): Return an error if the URL contains a [...]
1583         IPv6 numeric address and we don't support IPv6.
1584
1585 2003-09-05  Hrvoje Niksic  <hniksic@xemacs.org>
1586
1587         * url.c (is_valid_ipv6_address): Modified to not require
1588         zero-terminated strings.
1589         (is_valid_ipv4_address): Ditto.
1590
1591 2003-09-05  Mauro Tortonesi <mauro@deepspace6.net>
1592
1593         src/url.c: added RFC 2732 compliance for URL parsing. The
1594         functions is_*_address valid are a modified version of
1595         glibc 2.3.2 inet_pton's code.
1596
1597 2003-09-03  Ahmon Dancy  <dancy@dancysoft.com>
1598
1599         * main.c init.c options.h: Added --retry-connrefused option so
1600         that Connection Refused failures are treated as non-fatal (when
1601         trying to retrieve from busy servers).
1602
1603         * wget.h: New CONNECT_ERROR macro for encapsulating this
1604         modification.
1605
1606         * ftp.c http.c : Use CONNECT_ERROR macro in places where
1607         ECONNREFUSED was checked.
1608
1609 2003-01-11  Ian Abbott  <abbotti@mev.co.uk>
1610
1611         * ftp.c (ftp_retrieve_glob): Reject insecure filenames as determined
1612         by calling new function has_insecure_name_p.  This is based on a
1613         patch by Red Hat.
1614
1615         * fnmatch.c (has_insecure_name_p): New function: returns non-zero
1616         if filename starts with `/' or contains `../' and is therefore
1617         considered insecure.
1618
1619         * fnmatch.h: Declare has_insecure_name_p().
1620
1621 2002-08-03  Hrvoje Niksic  <hniksic@xemacs.org>
1622
1623         * init.c (cmd_file): Allocate RESULT correctly.
1624
1625 2002-07-24  Hrvoje Niksic  <hniksic@xemacs.org>
1626
1627         * recur.c (retrieve_tree): Check whether downloaded_html_set is
1628         non-NULL before using it.
1629
1630 2002-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
1631
1632         * html-parse.c (NAME_CHAR_P): Allow almost any character here.
1633
1634 2002-05-24  Hrvoje Niksic  <hniksic@arsdigita.com>
1635
1636         * progress.c (bar_set_params): Fall back to dot progress if the
1637         terminal type is "emacs".
1638
1639 2002-05-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1640
1641         * log.c: Don't #undef WGET_USE_STDARG.
1642
1643 2002-05-16  Hrvoje Niksic  <hniksic@arsdigita.com>
1644
1645         * hash.c (prime_size): Store the offset of the prime number in the
1646         prime table.  When searching, start with the given offset.
1647         (hash_table_new): Pass the pointer to ht->prime_offset to
1648         prime_size.
1649         (grow_hash_table): Ditto.
1650         (prime_size): Make 13 the first prime to make empty hash tables
1651         slightly smaller.
1652
1653 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
1654
1655         * recur.c (download_child_p): Minor optimization to avoid an
1656         unnecessary additional call to schemes_are_similar_p function.
1657
1658 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
1659
1660         * url.c (schemes_are_similar_p): New function to test enumerated
1661         scheme codes for similarity.
1662
1663         * url.h: Declare it.
1664
1665         * recur.c (download_child_p): Use it to compare schemes.  This
1666         also fixes a bug that allows hosts to be spanned (without the
1667         -H option) when the parent scheme is https and the child's is
1668         http or vice versa.
1669
1670 2002-05-14  Bill Richardson  <bill@riverstonenet.com>
1671
1672         * ftp.c (getftp): Don't ftruncate stdout.
1673
1674         * http.c (gethttp): Don't ftruncate stdout.
1675
1676 2002-05-09  Ian Abbott  <abbotti@mev.co.uk>
1677
1678         * cmpt.c (strptime_internal): Synched with glibc-2.1.3.
1679         (get_number): Ditto.
1680         (get_alt_number): Ditto.
1681         (__isleap): New function-like macro used by strptime.
1682         (day_of_the_week): New function used by strptime.
1683         (day_of_the_year): Ditto.
1684         (__mon_yday): Now shared by mktime and strptime implementations.
1685
1686 2002-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
1687
1688         * cookies.c (check_domain_match): Use match_tail in case
1689         insensitive mode.
1690
1691         * utils.c (match_tail): Allow the caller to specify case
1692         insensitive mode.
1693
1694         * cookies.c (store_cookie): When expiry_time is 0, print it as
1695         undefined, not indefinite.
1696
1697 2002-05-07  Ian Abbott  <abbotti@mev.co.uk>
1698
1699         * cookies.c (cookie_jar_process_set_cookie): Do not store
1700         discarded cookie.
1701
1702 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
1703
1704         * cookies.c (check_domain_match): Allow cookies to be set for
1705         subdomains of unknown top-level domains under some circumstances.
1706
1707 2002-04-21  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
1708
1709         * gen_ssl.c:
1710         - allow checking of server cert
1711         - allow defining client cert type
1712         - allow limit of ssl protocol
1713         - check more return values
1714         - added debug message on break
1715
1716 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
1717
1718         * recur.c (download_child_p): Revert order of items in check
1719         number 6 for clarity.
1720
1721 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1722
1723         * init.c: Ditto.
1724
1725         * main.c: Ditto.
1726
1727         * http.c: Use the new interface.
1728
1729         * cookies.c: Provide an OO-style "cookie jar" interface to enable
1730         separate cookie jars.
1731
1732         * http.c (http_atotm): Declare argument as const.
1733
1734 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1735
1736         * cookies.c (cookie_new): Default to PORT_ANY.
1737         (find_cookie_chain_exact): Only search by DOMAIN.
1738         (find_matching_cookie): Also check that PORT matches.
1739         (store_cookie): Only match the domain.
1740         (set_cookie_header_cb): When a cookie "fakes" a domain, assume it
1741         is valid for that host rather than discarding it completely.
1742         (find_matching_chains): Don't search by PORT.
1743         (matching_cookie): Also match PORT.
1744         (load_cookies): Set the port if specified, otherwise leave it as
1745         ANY.
1746         (save_cookies_mapper): Save the port if specified, otherwise leave
1747         it empty.
1748
1749 2002-04-19  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
1750
1751         * init.c: The option `egdfile' was not in sort order.
1752
1753 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
1754
1755         * ftp.c (getftp): Treat directories that begin with <letter>: as
1756         absolute.
1757         (getftp): Strip trailing slashes from con->id before merging it
1758         with TARGET.
1759
1760 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
1761
1762         * http.c (gethttp): If Content-Type is not given, assume
1763         text/html.
1764
1765 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
1766
1767         * recur.c (download_child_p): Don't ignore rejection of HTML
1768         documents that are themselves leaves of recursion.
1769
1770 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
1771
1772         Makefile.in: Updated several dependencies for object files to take
1773         account of nested include files.
1774
1775 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
1776
1777         Makefile.in: The target `connect$o' (connect.o) now depends on
1778         `utils.h'
1779
1780 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
1781
1782         * host.c (SET_H_ERRNO): New function-like macro to set `h_errno'.
1783         (gethostbyname_with_timeout): Use it.
1784
1785         * utils.c: Don't define `SETJMP()', `run_with_timeout_env' or
1786         `abort_run_with_timeout()' when `USE_SIGNAL_TIMEOUT' is undefined.
1787
1788 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
1789
1790         * host.c (getaddrinfo_with_timeout): New function.
1791         (gethostbyname_with_timeout): Ditto.
1792         (lookup_host): Use them.
1793
1794 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
1795
1796         * utils.c (number_to_string): Handle the case when n < -INT_MAX.
1797
1798 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
1799
1800         * init.c (comind): Use a marginally faster implementation of
1801         binary search.  To quote Martin Buchholz, "a nanosecond saved is a
1802         nanosecond earned."
1803
1804 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
1805
1806         * main.c (print_help): Document `--post-data' and `--post-file'.
1807
1808 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
1809
1810         * http.c (gethttp): Ditto.
1811
1812         * retr.c (retrieve_url): Initialize variables to appease the
1813         compiler.
1814
1815         * gen_sslfunc.c (ssl_iread): Don't handle EINTR when calling
1816         select_fd.
1817         (ssl_iwrite): Ditto.
1818
1819         * connect.c (select_fd): Rewrite to handle EINTR.  Set errno to
1820         ETIMEDOUT in case of timeout.
1821         (iread): No need to handle EINTR when calling select_fd.
1822         (iwrite): Ditto.
1823
1824 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
1825
1826         * retr.c (retrieve_url): Make sure that POST is not honored for
1827         redirections.
1828
1829         * http.c (gethttp): Send the POST data when requested.
1830         (post_file): New function.
1831         (gethttp): Use it.
1832
1833         * main.c (main): Ditto.
1834
1835         * init.c: Add new options.
1836
1837         * options.h (struct options): New options post_data and
1838         post_file_name.
1839
1840 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
1841
1842         * connect.c (connect_with_timeout): Firing SIGALRM can result in
1843         connect() exiting with EINTR.  Treat EINTR the same as ETIMEDOUT.
1844
1845 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
1846
1847         * connect.c (connect_with_timeout): Use it.
1848
1849         * utils.c (run_with_timeout): New function.
1850
1851 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
1852
1853         * url.c (getproxy): Accept a struct url argument.  This obviates
1854         the need for USE_PROXY_P.
1855
1856         * retr.c (retrieve_url): Allow proxy to be a non-FTP URL.
1857
1858         * ftp.c (getftp): Recognize FWTK-style proxy.
1859
1860 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
1861
1862         * config.h.in: Only define _VA_LIST when compiled with gcc.
1863
1864 2002-04012  Ian Abbott  <abbotti@mev.co.uk>
1865
1866         * http.c (http_loop): Compensate for MS Windows two-second
1867         granularity of file modification time when comparing timestamps.
1868
1869         * ftp.c (ftp_retrieve_list): Ditto.
1870
1871 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
1872
1873         * utils.c (has_html_suffix_p): New function to test filename for
1874         common html extensions.
1875
1876         * utils.h: Declare it.
1877
1878         * http.c (http_loop): Use it instead of previous test.
1879
1880         * retr.c (retrieve_url): Ditto.
1881
1882         * recur.c (download_child_p): Ditto.
1883
1884 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
1885
1886         * config.h.in: Define _VA_LIST on Solaris to prevent stdio.h from
1887         declaring va_list.
1888         From Kevin Rodgers <kevinr@ihs.com>.
1889
1890 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
1891
1892         * Makefile.in: Specify libtool mode explicitly when linking.
1893
1894 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
1895
1896         * connect.c (connect_with_timeout): New function.
1897         (connect_to_one): Use it.
1898
1899         * config.h.in: Add stubs for HAVE_SIGSETJMP, HAVE_SIGBLOCK, and
1900         HAVE_SETJMP_H.
1901
1902 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1903
1904         * log.c: Set WGET_USE_STDARG if __STDC__ is defined and stdarg.h
1905         is present.
1906
1907 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1908
1909         * progress.c (bar_create): If INITIAL is larger than TOTAL, fix
1910         TOTAL.
1911         (bar_finish): Likewise.
1912
1913 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1914
1915         * html-url.c (tag_handle_form): New function.  Pick up form
1916         actions and mark them for conversion only.
1917
1918 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1919
1920         * progress.c (struct progress_implementation): Use PARAMS when
1921         declaring the parameters of *create, *update, *finish, and
1922         *set_params.
1923
1924         * netrc.c: Ditto.
1925
1926         * http.c: Reformat some function definitions so that ansi2knr can
1927         read them.
1928
1929         * hash.c (struct hash_table): Use the PARAMS macro around
1930         parameters in the declaration of hash_function and test_function.
1931         (prime_size): Spell 2580823717UL and 3355070839UL as (unsigned
1932         long)0x99d43ea5 and (unsigned long)0xc7fa5177 respectively, so
1933         that pre-ANSI compilers can read them.
1934         (find_mapping): Use PARAMS when declaring EQUALS.
1935         (hash_table_put): Ditto.
1936
1937         * ftp.h: Wrap the parameters of ftp_index declaration in PARAMS.
1938
1939         * cookies.c (cookie_new): Use (unsigned long)0 instead of 0UL,
1940         which was unsupported by pre-ANSI compilers.
1941
1942         From Nelson H. F. Beebe <beebe@math.utah.edu>, for the most part.
1943
1944 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1945
1946         * url.c (url_filename): Use compose_file_name regardless of
1947         whether opt.dirstruct is set.
1948         (mkstruct): Don't handle the query and the reencoding of DIR; that
1949         is done in compose_file_name.
1950
1951 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1952
1953         * wget.h: Ditto for extern char *exec_name.
1954
1955         * options.h: Don't guard against OPTIONS_DEFINED_HERE -- it is
1956         perfectly legal to follow an `extern' with a non-`extern' ones,
1957         provided the types match.
1958
1959         * main.c: Don't define OPTIONS_DEFINED_HERE.
1960
1961 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1962
1963         * progress.c (create_image): Revert to calculating ETA based on
1964         average download speed.
1965         (create_image): Don't print ETA until the download has been active
1966         for at least 3 seconds.
1967         (create_image): When ETA is not available, don't print anything.
1968         The previous version would print --:--.
1969
1970 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1971
1972         * progress.c (bar_update): Keep updating a subinterval until it
1973         reaches or exceeds a watermark.  That way the measurement will be
1974         guaranteed to span a configurable minimum of time.  The current
1975         default is 3s in 30 100ms intervals.
1976
1977 2002-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
1978
1979         * progress.c (bar_update): Maintain an array of the time it took
1980         to perform previous 30 network reads.
1981         (create_image): Calculate the download speed and ETA based on the
1982         last 30 reads, not the entire download.
1983         (create_image): Make sure that the ETA is not changed more than
1984         once per second.
1985
1986 2002-04-09  Ian Abbott  <abbotti@mev.co.uk>
1987
1988         * mswindows.c (borland_utime): New function conditionally defined
1989         when `HACK_BCC_UTIME_BUG' is defined.  A reimplementation of
1990         `utime()' as Borland's `utime()' function is broken on Windows 9x
1991         systems.  (Original patch by Chin-yuan Kuo <sr1111111@yahoo.com.tw>.)
1992
1993 2002-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
1994
1995         * ftp.c (ftp_loop): Propagate the result of ftp_retrieve_glob.
1996
1997 2002-03-26  Ian Abbott  <abbotti@mev.co.uk>
1998
1999         * Makefile.in: Updated several dependencies for object files.
2000
2001 2002-03-20  Ian Abbott  <abbotti@mev.co.uk>
2002
2003         * mswindows.c: Include "utils.h".
2004
2005 2002-03-18  Ian Abbott  <abbotti@mev.co.uk>
2006
2007         * host.h: Don't include netdb.h on windows.
2008
2009 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
2010
2011         * recur.c (retrieve_tree): Handle the case when start_url doesn't
2012         parse.
2013
2014 2002-02-19  Andreas Damm  <andreas-sourceforge@radab.org>
2015
2016         * wget.h (DO_REALLOC_FROM_ALLOCA): Multiply with sizeof(type) when
2017         calling xmalloc and memcpy.
2018
2019 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
2020
2021         * host.h: Include Unix-specific includes #ifndef WINDOWS.
2022         Patch originally provided by Christian Lackas.
2023
2024 2002-02-11  Christian Lackas  <delta@lackas.net>
2025
2026         * recur.c: recurive downloading for https fixed.
2027
2028 2002-02-19  Alan Eldridge  <alane@geeksrus.net>
2029
2030         * host.h: Also include <netinet/in.h> and <sys/socket.h>.
2031
2032         * ftp-basic.c: Also include <netinet/in.h>.
2033
2034 2002-02-05  Ian Abbott  <abbotti@mev.co.uk>
2035
2036         * http.c (gethttp): when -c used, mark already fully retrieved
2037         file as successfully retrieved.
2038
2039 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
2040
2041         * url.c (url_parse): Don't treat '?' as query string separator
2042         when parsing FTP URLs.
2043
2044 2002-02-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2045
2046         * html-url.c (tag_handle_meta): Don't crash on <meta
2047         http-equiv=refresh> where content is missing.
2048
2049 2002-01-31  Herold Heiko  <Heiko.Herold@previnet.it>
2050
2051         * ftp-basic.c, host.c: don't include sys/socket.h, arpa/inet.h,
2052         netdb.h on windows.
2053
2054 2002-01-30  Hrvoje Niksic  <hniksic@arsdigita.com>
2055
2056         * retr.c (retrieve_url): Remove redirection cycle detection.  This
2057         is because some sites legitimately redirect the user back to the
2058         same location, e.g. after an authorization check performed by
2059         another page.  MAX_REDIRECTIONS is still used to prevent infinite
2060         redirection loops.
2061
2062 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2063
2064         * http.c (gethttp): Wrap host name in square brackets if it
2065         contains a colon.
2066
2067 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2068
2069         * url.c (url_parse): Allow all hex digits, not only decimal ones,
2070         to form an IP address.
2071
2072 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2073
2074         * url.c (urlchr_table): Make square braces reserved, so we can
2075         parse http://[::1]/.
2076         (url_parse): Handle host in braces.
2077         (url_string): If url->host contains colons, wrap it in braces.
2078
2079 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2080
2081         * connect.c (resolve_bind_address): New function.
2082         (connect_to_one): Use it.
2083         (bindport): Ditto.
2084
2085         * init.c: Don't resolve bind-address here.
2086
2087         * host.c (wget_sockaddr_set_address): Would bug out with ADDR == NULL.
2088
2089 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2090
2091         * host.c (lookup_host): Use sizeof(ip4_address) to calculate the
2092         offset.
2093         (address_list_new): Use map_ipv4_to_ip.
2094         (wget_sockaddr_set_address): Convert ADDR to IPv4 before using it
2095         in IPv4 context.
2096
2097 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2098
2099         * source: Integrated IPv6 support.
2100         Written by Thomas Lussnig <thomas.lussnig@bewegungsmelder.de>.
2101
2102 2002-01-15  Ian Abbott  <abbotti@mev.co.uk>
2103
2104         * init.c (cmd_file): Change `\' to `/' for Windows (yes, really!)
2105         (cmd_directory): New function. Like cmd_file(), but strips
2106         trailing directory separators.
2107         (commands): Change action for "dirprefix" from `cmd_file' to
2108         `cmd_directory'.
2109
2110         * utils.c (make_directory): Allow intermediate `mkdir' calls to
2111         fail, as not all path components that do not exist should be
2112         directory components, especially under Windows.
2113
2114 2002-01-17  Hrvoje Niksic  <hniksic@arsdigita.com>
2115
2116         * netrc.c (parse_netrc): Skip leading whitespace before testing
2117         whether the line is empty.  Empty lines still contain the line
2118         terminator.
2119
2120 2002-01-15  Hrvoje Niksic  <hniksic@arsdigita.com>
2121
2122         * gen_sslfunc.c (ssl_iread): Call select on the file descriptor
2123         only if no data is pending in SSL buffers.
2124         From tony@bluetail.com.
2125
2126 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
2127
2128         * headers.c (header_get): Strip trailing whitespace from the
2129         header.
2130
2131 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
2132
2133         * url.c (parse_uname): URL-decode *USER and *PASSWD.
2134
2135 2002-01-07  Ian Abbott <abbotti@mev.co.uk>
2136
2137         * url.c (uri_merge_1): Deal with "net path" relative URL (one that
2138         starts with "//").
2139
2140 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
2141
2142         * http.c (gethttp): Invalidate SOCK if get_contents encountered an
2143         error.
2144
2145 2001-12-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2146
2147         * version.c: Wget 1.8.1 is released.
2148
2149 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
2150
2151         * version.c: Wget 1.8.1-pre3 is released.
2152
2153 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
2154
2155         * recur.c (retrieve_tree): Enqueue the canonical representation of
2156         start_url, so that the test against dl_url_file_map works.
2157
2158 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
2159
2160         * log.c (logputs): Check for requested verbosity before printing
2161         anything.
2162
2163 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
2164
2165         * html-url.c (tag_handle_link): Treat the "shortcut icon" link as
2166         inline.
2167
2168 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
2169
2170         * recur.c (retrieve_tree): Make a copy of file obtained from
2171         dl_url_file_map because the code calls xfree(file) later.
2172
2173 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
2174
2175         * recur.c (register_html): Maintain a hash table of HTML files
2176         along with the list.  Disallow duplicates.
2177         (retrieve_tree): Use downloaded_html_set to check whether the file
2178         found in dl_url_file_map is an HTML file, and descend into it if
2179         so.
2180         (convert_all_links): Don't guard against duplicates in
2181         downloaded_html_list, since they are no longer possible.
2182
2183 2001-12-18  Ian Abbott  <abbotti@mev.co.uk>
2184
2185         * recur.c (retrieve_tree): Pass on referring URL when retrieving
2186         recursed URL.
2187
2188 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
2189
2190         * version.c: Wget 1.8.1-pre2 is released.
2191
2192 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
2193
2194         * retr.c (sleep_between_retrievals): Simplify indentation.
2195
2196 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
2197
2198         * gen_sslfunc.c (ssl_init_prng): Use random_number to get a byte
2199         of "randomness" at a time.
2200         (ssl_init_prng): Don't seed the PRNG; random_number will do that.
2201
2202         * retr.c (sleep_between_retrievals): Use it.  Make sure that the
2203         random amount averages in opt.wait.
2204         (sleep_between_retrievals): Don't seed the PRNG; random_number
2205         will do that.
2206
2207         * utils.c (random_number): New function.
2208
2209 2001-12-14  Hrvoje Niksic  <hniksic@arsdigita.com>
2210
2211         * url.c (path_simplify): Move here from utils.c, and make static.
2212
2213 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
2214
2215         * init.c (wgetrc_file_name): Print correct message when loading
2216         getenv("WGETRC") fails.
2217
2218 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
2219
2220         * recur.c (register_download): Don't abort when one URL references
2221         two different files.
2222
2223 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
2224
2225         * http.c (gethttp): Check for conn->scheme, not u->scheme, before
2226         calling ssl_iwrite.
2227
2228 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
2229
2230         * version.c: Wget 1.8.1-pre1 is released.
2231
2232 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
2233
2234         * res.c (matches): Fix broken URL in the docstring.
2235
2236 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
2237
2238         * html-url.c (tag_url_attributes): Mark <embed href=...> as
2239         external.
2240
2241 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
2242
2243         * url.c (get_urls_file): Cosmetic changes.
2244
2245 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
2246
2247         * html-url.c (append_one_url): Resurrect warning when unable to
2248         resolve a relative link.
2249
2250 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
2251
2252         * html-url.c (collect_tags_mapper): Break into several functions.
2253         (tag_url_attributes): Collect <embed href=...>.
2254
2255 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
2256
2257         * host.c: New type ipv4_address.  Use it consistently instead of
2258         `unsigned char[4]' and `unsigned char *'.
2259         (pretty_print_address): Accept a `const void *', to require even
2260         less casting.
2261
2262 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
2263
2264         * ftp-ls.c (ftp_parse_vms_ls): Fix obvious memory leaks.
2265
2266 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
2267
2268         * main.c (main): Initialize progress after fork_to_background, so
2269         that it knows when to use dots.
2270
2271         * mswindows.c (ws_hangup): Call log_request_redirect_output.
2272
2273         * utils.c (fork_to_background): Print the PID of the child
2274         process.
2275
2276         * log.c (log_request_redirect_output): Set a flag that output
2277         redirection has been requested.  Doing anything else in a signal
2278         handler is unsafe.
2279         (check_redirect_output): New function: check whether redirection
2280         has been requested and, if so, call redirect_output().
2281         (logputs): Call check_redirect_output.
2282         (logprintf): Ditto.
2283         (debug_logprintf): Ditto.
2284         (redirect_output): Print clearer messages.
2285
2286         * main.c (redirect_output_signal): Don't call
2287         redirect_output_signal directly.  Instead, call
2288         log_request_redirect_output.
2289
2290         * utils.c (memfatal): Ditto.
2291
2292         * progress.c (display_image): Use it.
2293
2294         * log.c (log_set_save_context): New function: allow the caller to
2295         turn off saving log context lines.
2296
2297 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
2298
2299         * host.c (address_list_set_faulty): Uncomment a sanity check.
2300
2301 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
2302
2303         * utils.c (long_to_string): Return a pointer after where the
2304         number ends.
2305         (long_to_string): Rename to number_to_string.
2306
2307 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
2308
2309         * utils.c (path_simplify): Correctly handle the unlikely case that
2310         b starts out as path + 1.
2311
2312 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
2313
2314         * utils.c (path_simplify): Rewrite, with better comments, and
2315         without the use of strcpy to move overlapping blocks.
2316
2317 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
2318
2319         * init.c (cmd_spec_progress): Resurrect.  Check whether VAL is a
2320         valid progress type before setting it.
2321
2322 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
2323
2324         * main.c (main): Remove stray debugging message.
2325
2326 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
2327
2328         * progress.c (create_image): Fix ETA padding when hours are prined.
2329
2330 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
2331
2332         * version.c: Wget 1.8 is released.
2333
2334 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
2335
2336         * url.c (reencode_string): Declare static.
2337
2338         * res.c (registered_specs): Declare static.
2339
2340         * progress.c (current_impl_locked): Declare static.
2341
2342         * log.c (flush_log_p): Declare static.
2343         (needs_flushing): Ditto.
2344
2345         * http.c (digest_authentication_encode): Declare static.
2346
2347         * html-url.c (init_interesting): Declare static.
2348
2349         * host.c (host_name_addresses_map): Declare static.
2350
2351         * cookies.c (find_matching_chains): Declare static.
2352
2353         * ftp-ls.c (ftp_parse_vms_ls): Warn about the memory leak
2354         indicated by lint.
2355
2356         * utils.c (path_simplify): Remove unused variable STUB_CHAR.
2357
2358         * host.c (address_list_set_faulty): Document that INDEX is
2359         currently unused.
2360
2361         * url.c (rewrite_shorthand_url): Remove unused variable PATH.
2362
2363 2001-12-08  Hrvoje Niksic  <hniksic@arsdigita.com>
2364
2365         * version.c: Wget 1.8-pre2 is released.
2366
2367 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2368
2369         * progress.c (progress_handle_sigwinch): Set up the signal again.
2370
2371         * utils.c: Include <sys/termios.h>, where Solaris defines
2372         TIOCGWINSZ.
2373
2374         * progress.c (bar_create): Don't use the last column on the screen.
2375         (create_image): Pad ETA to constant size.  Pad SIZE to nine digits
2376         only until it exceeded them.
2377
2378 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2379
2380         * version.c: Wget 1.8-pre1 is released.
2381
2382 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2383
2384         * progress.c (progress_create): Make sure that, when the output is
2385         redirected, the progress implementation gets changed to the
2386         fallback one.
2387         (bar_set_params): Set current_impl_locked to 1 when "force" is
2388         specified.
2389         (progress_create): Don't change the progress implementation if
2390         current_impl_locked is non-zero.
2391
2392         * main.c (redirect_output_signal): Call
2393         progress_schedule_redirect.
2394
2395         * progress.c (progress_schedule_redirect): New function.
2396
2397 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2398
2399         * log.c (logvprintf): Restructure to allow being called multiple
2400         times.
2401         (logprintf): Call logvprintf in a loop.
2402         (debug_logprintf): Ditto.
2403
2404 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2405
2406         * gen_sslfunc.c (ssl_init_prng): Allow the user to disable EGD by
2407         setting egd_file it to empty string.
2408
2409         * main.c (main): Change the option name from --sslegdsock to
2410         --egd-file.
2411
2412 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2413
2414         * gen_sslfunc.c (ssl_init_prng): Make the printed message
2415         translatable.
2416
2417 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2418
2419         * url.c (scheme_disable): New function.
2420
2421         * main.c (main): Call ssl_init_prng from here rather than from
2422         init_ssl, so that it has a chance to disable support for https
2423         before a URL has been resolved.
2424
2425         * gen_sslfunc.c (ssl_init_prng): Seed with rand() if all else
2426         failed.
2427         (ssl_init_prng): Disable support for https if seeding the PRNG
2428         fails.
2429
2430 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
2431
2432         * utils.c (read_whole_line): Handle lines beginning with \0.
2433
2434 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
2435
2436         * recur.c (convert_all_links): Guard against duplicates in
2437         downloaded_html_files.
2438         (register_download): Don't invalidate similar-looking URLs.
2439         (match_except_index): New function.
2440
2441 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
2442
2443         * utils.c (path_simplify): Document with test cases.
2444
2445 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
2446
2447         * gen_sslfunc.c: Ditto.
2448
2449         * rbuf.c: Include <string.h>.
2450
2451 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
2452
2453         * recur.c (retrieve_tree): Check whether the URL was already
2454         downloaded before downloading it again.
2455         (descend_child_p): Renamed to download_child_p.
2456         (register_download): When one URL is downloaded to a file already
2457         "owned" by another URL, delete all references that map any URL to
2458         that file.
2459         (register_delete_file): New function.
2460         (retrieve_tree): Use it after deleting a file.
2461
2462         * url.c (url_parse): Re-canonicalize the URL also if the path is
2463         empty, so that e.g. "http://www.server.com" ->
2464         "http://www.server.com/".
2465         (lowercase_str): Use ISUPPER instead of !ISLOWER.
2466
2467         * retr.c (retrieve_url): Use the canonical URL form when calling
2468         register_download().
2469
2470 2001-12-04  Ian Abbott <abbotti@mev.co.uk>
2471
2472         * snprintf.c (dopr): Use `unsigned int' as the second argument to
2473         va_arg when casting to `unsigned short' is intended.
2474
2475 2001-12-04  Herold Heiko  <Heiko.Herold@previnet.it>
2476
2477         * gen_sslfunc.c: on windows provide ssl crypto random 
2478           initialization through RAND_screen(); could possibly
2479           be not enough for strong ssl communication (see the 
2480           relevant manual page from the openssl package).
2481
2482 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
2483
2484         * url.c (local_quote_string): Reenable quoting of question marks,
2485         but only when `--html-extension' is used.
2486
2487 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
2488
2489         * version.c: Wget 1.8-beta3 is released.
2490
2491 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
2492
2493         * snprintf.c (dopr): Cast the result of va_arg to short int and
2494         short unsigned int where these types are expected to be used.
2495
2496 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
2497
2498         * snprintf.c (dopr): Replace `short int' and `unsigned short int'
2499         with `int' when using it as the second argument to `va_arg'.
2500
2501 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
2502
2503         * host.c (address_list_new_one): New function.
2504         (lookup_host): Use it.
2505
2506 2001-12-03  Andre Majorel  <amajorel@teaser.fr>
2507
2508         * host.c (lookup_host): Don't initialize TMPSTORE directly because
2509         it's not legal C.
2510
2511 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
2512
2513         * ftp-basic.c (ftp_port): Don't return HOSTERR if we fail getting
2514         the socket data.
2515
2516         * ftp.c: Ditto.
2517
2518         * http.c: No need to declare h_errno.
2519
2520         * host.c: Declare h_errno.
2521
2522 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
2523
2524         * utils.c (file_merge): If BASE doesn't contain a slash, just
2525         return a copy of FILE.
2526
2527 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
2528
2529         * version.c: Wget 1.8-beta2 is released.
2530
2531 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2532
2533         * ftp.c (getftp): When PWD fails, assume "/".
2534
2535         * ftp-basic.c (ftp_syst): Fix indentation.
2536
2537 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2538
2539         * url.c (get_urls_file): If opt.base_href is specified, merge each
2540         URL with the base.
2541
2542 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2543
2544         * main.c (print_help): Don't document the removed `-nh'.
2545
2546 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2547
2548         * url.c (url_full_path): Document better.
2549
2550         * http.c (gethttp): Use the full path when creating digest
2551         authorization.
2552
2553 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2554
2555         * cookies.c (path_matches): Return 0 if PREFIX doesn't begin with
2556         '/'.
2557
2558 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2559
2560         * cookies.c (path_matches): FULL_PATH doesn't begin with '/', but
2561         PREFIX does.
2562
2563 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2564
2565         * cookies.c (check_domain_match): Reimplement to match Netscape's
2566         "preliminary specification" for cookies.
2567
2568 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2569
2570         * url.c (replace_attr_refresh_hack): New function.
2571         (convert_links): Call replace_attr_refresh_hack for Refresh
2572         links.  It will add the "TMOUT; URL=" junk before the link.
2573
2574         * html-url.c (collect_tags_mapper): Set ID to the ID of the
2575         "content" attribute, not "http-equiv".
2576         (collect_tags_mapper): Don't use OFFSET to hack the raw_* values;
2577         instead, store the information that this entry belongs to a
2578         "refresh" link.
2579
2580 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2581
2582         * version.c: Wget 1.8-beta1 is released.
2583
2584 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
2585
2586         * recur.c (retrieve_tree): Allow -p retrievals to exceed maximum
2587         depth by more than one.
2588
2589 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
2590
2591         * retr.c (retrieve_url): Don't allow more than 20 redirections.
2592
2593 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
2594
2595         * recur.c (retrieve_tree): Skip the non-inline entries when
2596         enqueuing the children of a leaf HTML node in -p mode.
2597         (descend_url_p): Ignore opt.no_parent when in -p mode and UPOS is
2598         "inline".
2599
2600         * html-url.c (get_urls_html): Don't accept dash_p_leaf_HTML.
2601         (collect_tags_mapper): When an entry is "inline", mark it as such.
2602
2603         * recur.c (descend_url_p): Fix test when checking for
2604         acceptance/rejection rules.
2605
2606 2001-10-31 Daniel BODEA <dali@dali-designs.com>
2607
2608         * netrc.c (search_netrc): When slack_default is 0, still look for
2609         an account with matching password, just not the "default account".
2610         HTTP Authorization using .netrc should now work as expected.
2611
2612 2001-11-30  T. Bharath  <TBharath@responsenetworks.com>
2613
2614         * http.c (persistent_available_p): Call SHUTDOWN_SSL if
2615         test_socket_open fails.
2616
2617 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
2618
2619         * progress.c (display_image): Just print one CR to reset the
2620         cursor position.
2621
2622 2001-11-30  Christian Fraenkel  <c.fraenkel@gmx.net>
2623
2624         * init.c: New command `ssl_egd_sock'.
2625
2626         * main.c (main): New option `--sslegdsock'.
2627
2628         * gen_sslfunc.c (ssl_init_prng): Seed the RNG using EGD.
2629
2630 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
2631
2632         * cmpt.c (memmove): Include a simple memmove implementation.
2633
2634 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
2635
2636         * headers: Guard against header files being included twice.
2637
2638 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
2639
2640         * gen-md5.c: Use unsigned char * as the buffer argument to
2641         gen_md5_update.
2642
2643 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
2644
2645         * connect.h: Declare select_fd.
2646
2647 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
2648
2649         * recur.c (descend_url_p): When resolving no_parent, compare with
2650         start_url, not parent url.  Otherwise link from /a/b/ to /a/c/
2651         wouldn't be followed, although the download started from /a/.
2652
2653 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
2654
2655         * config.h.ms, mswindows.h: defined HAVE_ISATTY, use _isatty for
2656         MS VC; somebody with Borland compiler please check and provide
2657         patch if possible;
2658
2659         * cmpt.c: provided a usleep emulation.
2660
2661 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
2662
2663         * host.c (address_list_new): Initialize al->faulty.
2664
2665 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
2666
2667         * http.c (http_process_range): Accept the broken output of
2668         "JavaWebServer/1.1.1".
2669
2670 2001-11-28  Hrvoje Niksic  <hniksic@arsdigita.com>
2671
2672         * progress.c (dot_set_params): If PARAMS is unspecified, use
2673         dot_style, if available.
2674
2675         * init.c: Ditto.
2676
2677         * main.c (main): Resurect --dot-style.
2678
2679         * progress.c (dot_finish): Print the quantity if we're left at the
2680         beginning of a row.
2681
2682 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
2683
2684         * cmpt.c (random): Removed.
2685
2686         * retr.c (sleep_between_retrievals): Use the more portable rand()
2687         instead of random().
2688
2689 2001-11-27  Ian Abbott <abbotti@mev.co.uk>
2690
2691         * retr.c (retrieve_from_file): Initialize `new_file' to NULL to
2692         prevent seg fault.
2693
2694 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
2695
2696         * connect.c (connect_to_many): Use address_list_set_faulty to
2697         prevent the faulty address from being reused.
2698
2699         * host.c (address_list_set_faulty): New function.
2700         (address_list_get_bounds): New function, instead of
2701         address_list_count.
2702
2703 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
2704
2705         * url.c (convert_links): Don't translate %d-%d.
2706
2707         * main.c (print_help): Remove stray HAVE_RANDOM code.
2708
2709 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
2710
2711         * ftp.c (getftp): Improve output after sending PASV.  Don't
2712         attempt to "look up" the IP address we already know; call
2713         connect_to_one directly.
2714
2715 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
2716
2717         * progress.c: Change the default progress implementation to "bar".
2718
2719 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
2720
2721         * progress.c (bar_create): Print two newlines.
2722
2723 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
2724
2725         * cmpt.c (random): New function, a simple-minded replacement for
2726         random() on systems that don't have it.
2727
2728 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2729
2730         * config.h.in: Put a HAVE_USLEEP stub.
2731
2732         * cmpt.c (usleep): Replacement implementation of usleep using
2733         select.
2734
2735         * init.c: New option init_rate.
2736
2737         * main.c (main): New option --limit-rate.
2738
2739         * retr.c (limit_bandwidth): New function.
2740         (get_contents): Call it to limit the bandwidth used when
2741         downloading.
2742
2743         * progress.c (dot_update): Would print the wrong download speed on
2744         rows other than the first one when the download was continued.
2745         (dot_finish): Ditto.
2746
2747 2001-11-26  Ian Abbott <abbotti@mev.co.uk>
2748
2749         * http.c (gethttp): fix undeclared variable 'err' when compiled
2750         with HAVE_SSL.
2751
2752 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2753
2754         * progress.c: Don't allocate new timers; use the timing data
2755         propagated from the caller.
2756
2757         * retr.c (get_contents): Allocate and use a timer.
2758
2759 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2760
2761         * http.c (last_host_ip): Made into an address_list.
2762         (invalidate_persistent): Release pc_last_host_ip.
2763         (register_persistent): Use lookup_host.
2764         (persistent_available_p): Check for equality of hosts using
2765         address_list_match_all.  Call address_list_release.
2766         (http_cleanup): New function.
2767
2768         * ftp.c (getftp): Use lookup_host and connect_to_many.
2769
2770         * http.c (gethttp): Use lookup_host and connect_to_many.
2771
2772         * connect.c (make_connection): Removed.
2773         (connect_to_one): New function.
2774         (connect_to_many): Ditto.
2775         (set_connection_host_name): Ditto.
2776
2777         * host.c (lookup_host): New function; new return type.
2778         (address_list_new): New function.
2779         (address_list_count): Ditto.
2780         (address_list_copy_one): Ditto.
2781         (address_list_delete): Ditto.
2782         (address_list_release): Ditto.
2783         (pretty_print_address): Ditto.
2784
2785 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2786
2787         * recur.c (retrieve_tree): In case of followed redirection,
2788         blacklist the pre-redirection URL.
2789
2790 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
2791
2792         * recur.c (descend_redirect_p): New function.
2793         (retrieve_tree): Make sure redirections are not blindly followed.
2794
2795 2001-11-04  Alan Eldridge  <alane@geeksrus.net>
2796
2797         * config.h.in: added HAVE_RANDOM.
2798
2799         * options.h: added random_wait to struct options.
2800
2801         * main.c (print_help [HAVE_RANDOM], main): added arg parsing, help
2802         for --random-wait.
2803
2804         * retr.c (sleep_between_retrievals) [HAVE_RANDOM]: added
2805         implementation of random wait times.
2806
2807         * init.c (commands): added "randomwait" keyword.
2808
2809 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
2810
2811         * recur.c (descend_url_p): Be more conservative with blacklisting
2812         URLs.
2813         (convert_all_links): Print how many files have been converted, and
2814         how long it took.
2815
2816         * progress.c (create_image): Place the number of downloaded bytes
2817         right after the progress bar.
2818
2819         * utils.c (suffix): Return a pointer into the string.
2820
2821 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
2822
2823         * url.c (convert_links): Handle CO_NULLIFY_BASE.
2824
2825         * recur.c (retrieve_tree): Ignore download-ignorable children.
2826         (convert_all_links): Specify CO_NULLIFY_BASE when link_base_p.
2827
2828         * html-url.c (handle_link): Return the newly created urlpos.
2829         (collect_tags_mapper): When dealing with BASE, store the base
2830         reference and mark it as download-ignorable.
2831
2832 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
2833
2834         * url.c (convert_links): Attempt to quote '?' as "%3F" when
2835         linking to local files.  Given up on the attempt, as it breaks
2836         local browsing.
2837
2838 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
2839
2840         * main.c (private_initialize): Removed.
2841         (main): Don't call private_initialize.
2842
2843         * http.c: Call lookup_host.
2844
2845         * host.c (host_init): Removed.
2846         (add_host_to_cache): Initialize host_name_address_map here, on
2847         demand.
2848         (ngethostbyname): Commented out.
2849
2850         * connect.c (make_connection): Remove dead code; use lookup_host.
2851
2852         * host.c (store_hostaddress): Renamed to lookup_host and reversed
2853         the args.
2854         Removed host_address_name_map and host_slave_master_map.
2855
2856 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
2857
2858         * progress.c (dot_create): Align the "[ skipping ... ]" string
2859         with the dots.
2860
2861         * retr.c (rate): Split into two functions: calc_rate and
2862         retr_rate.
2863
2864         * progress.c (create_image): Draw a dummy progress bar even when
2865         total size is unknown.
2866         (display_image): Place the text cursor at the end of the "image".
2867
2868 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
2869
2870         * url.c (reencode_string): Use unsigned char, not char --
2871         otherwise the hex digits come out wrong for 8-bit chars such as
2872         nbsp.
2873         (lowercase_str): New function.
2874         (url_parse): Canonicalize u->url if needed.
2875         (get_urls_file): Parse each URL, and return only the valid ones.
2876         (free_urlpos): Call url_free.
2877         (mkstruct): Add :port if the port is non-standard.
2878         (mkstruct): Append the query string to the file name, if any.
2879         (urlpath_length): Use strpbrk_or_eos.
2880         (uri_merge_1): Handle the cases where LINK is an empty string,
2881         where LINK consists only of query, and where LINK consists only of
2882         fragment.
2883         (convert_links): Count and report both kinds of conversion.
2884         (downloaded_file): Use a hash table, not a list.
2885         (downloaded_files_free): Free the hash table.
2886
2887         * retr.c (retrieve_from_file): Ditto.
2888
2889         * main.c (main): Call either retrieve_url or retrieve_tree
2890         for each URL, not both.
2891
2892         * retr.c (register_all_redirections): New function.
2893         (register_redirections_mapper): Ditto.
2894         (retrieve_url): Register the redirections.
2895         (retrieve_url): Make the string "Error parsing proxy ..." 
2896         translatable.
2897
2898         * res.c (add_path): Strip leading slash from robots.txt paths so
2899         that the path representations are "compatible".
2900         (free_specs): Free each individual path, too.
2901         (res_cleanup): New function.
2902         (cleanup_hash_table_mapper): Ditto.
2903
2904         * recur.c (url_queue_new): New function.
2905         (url_queue_delete): Ditto.
2906         (url_enqueue): Ditto.
2907         (url_dequeue): Ditto.
2908         (retrieve_tree): New function, replacement for recursive_retrieve.
2909         (descend_url_p): New function.
2910         (register_redirection): New function.
2911
2912         * progress.c (create_image): Cosmetic changes.
2913
2914         * init.c (cleanup): Do all those complex cleanups only if
2915         DEBUG_MALLOC is defined.
2916
2917         * main.c: Removed --simple-check and the corresponding
2918         simple_host_check in init.c.
2919
2920         * html-url.c (handle_link): Parse the URL here, and propagate the
2921         parsed URL to the caller, who would otherwise have to parse it
2922         again.
2923
2924         * host.c (xstrdup_lower): Moved to utils.c.
2925         (realhost): Removed.
2926         (same_host): Ditto.
2927
2928 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2929
2930         * utils.c (path_simplify): Preserver the (non-)existence of
2931         leading slash.  Return non-zero if changes were made.
2932
2933 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2934
2935         * progress.c (bar_update): Don't modify bp->total_length if it is
2936         zero.
2937
2938 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2939
2940         * retr.c (retrieve_url): When the redirection URL doesn't parse,
2941         print the correct error message rather than "UNKNOWN".
2942
2943 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2944
2945         * progress.c (bar_finish): If the timer didn't record any time
2946         since the download beginning, fake 1ms.
2947
2948 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
2949
2950         * recur.c (recursive_retrieve): Fix typo.
2951
2952 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
2953
2954         * progress.c (create_image): Don't translate "%ld ".
2955
2956 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
2957
2958         * progress.c (bar_set_params): Allow the user to force the use of
2959         the bar.
2960
2961 2001-11-23  Lemble Gregory  <gregory.lemble@st.com>
2962
2963         * gen_sslfunc.c (ssl_init_prng): New function; seed the SSL RNG.
2964
2965 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
2966
2967         * progress.c: Renamed dp_* functions to dot_* for greater clarity
2968         and consistency with bar_*.
2969         (print_download_speed): Get rid of the unneeded '@' character.
2970         (create_image): Fix download rate geometry.
2971
2972         * progress.c (print_elapsed): Remove spurious space.
2973         (print_elapsed): Renamed to print_download_speed, since that's
2974         what it does.
2975
2976 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
2977
2978         * progress.c (bar_update): If the downloaded amount becomes larger
2979         than the expected amount, adjust the expected amount accordingly.
2980
2981 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
2982
2983         * utils.c (determine_screen_width): New function.
2984
2985         * main.c (main): New option `--progress=TYPE'.
2986         (main): Implement compatibility with the old option `--dot-style'.
2987
2988         * init.c: Removed cmd_spec_dotstyle -- that logic is now in
2989         dp_set_params.
2990         (cmd_spec_progress): New function.
2991
2992         * retr.c (get_contents): Use the progress_* functions instead of
2993         the old show_progress().
2994         (show_progress): Removed.
2995         (rate): Print "xxxx.xx K/s" instead of "KB/s".  Ditto for MB/s,
2996         etc.
2997
2998         * progress.c (set_progress_implementation): New function.
2999         (valid_progress_implementation_p): Ditto.
3000         (progress_create): Ditto.
3001         (progress_update): Ditto.
3002         (progress_finish): Ditto.
3003         (dp_create): Ditto.
3004         (dp_update): Ditto.
3005         (dp_finish): Ditto.
3006         (dp_set_params): Ditto.
3007         (print_elapsed): Ditto.
3008
3009 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
3010
3011         * retr.c (show_progress): Use it.
3012
3013         * log.c (log_set_flush): New function.
3014
3015 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
3016
3017         * utils.c (path_simplify): Don't remove trailing slashes.
3018
3019         * ftp.c (ftp_get_listing): Use it.
3020
3021         * utils.c (file_merge): New function.
3022
3023         * url.c (opt_url): Removed.
3024
3025         * recur.c (recursive_retrieve): Inline "opt_url" logic.
3026
3027         * main.c (main): Use xfree(), not free().
3028
3029         * url.c (rewrite_url_maybe): Renamed to rewrite_shorthand_url.
3030
3031         * ftp.c (ccon): Move `ccon' typedef here, since it's only used
3032         internally.
3033
3034         * config.h.in: Include a stub for HAVE_STRPBRK.
3035
3036         * cmpt.c (strpbrk): Include a replacement for systems without
3037         strpbrk().
3038
3039         * ftp.c: Use url_set_dir and url_set_file when modifying the URL.
3040
3041         * url.c (url_set_dir): New function.
3042         (url_set_file): Ditto.
3043
3044         * ftp-basic.c (ftp_process_type): Process FTP type here; the URL
3045         parser makes the URL "params" available, so we can do that in this
3046         function.
3047
3048         * retr.c: Ditto.
3049
3050         * ftp.c: Ditto; pass the local file information in `ccon'.
3051
3052         * http.c: Get rid of the ugly kludge that had URL being replaced
3053         with the proxy URL when proxy retrieval was requested.  Use a
3054         separate parameter to http_loop and gethttp for the proxy URL.
3055
3056         * http.c: Changed to reflect the fact that local file, proxy, and
3057         referer information are no longer stored in struct url.  The local
3058         file information is passed in `struct hstat' now.
3059
3060         * url.c: Reworked URL parsing to be more regular.  Reencode the
3061         URL using reencode_string.
3062         Removed non-URL-related information from struct url.  This
3063         includes fields `proxy', `local', and `referer'.
3064
3065 2001-11-22  Jochen Hein  <jochen@jochen.org>
3066
3067         * main.c (main): Split the copyright notice for easier
3068         translation.
3069
3070 2001-08-21  Dave Turner <dct25@hermes.cam.ac.uk>
3071
3072         * ftp-basic.c (ftp_size): New function to send non-standard SIZE
3073           command to server to request file size.
3074         * ftp.h (ftp_size): Export it.
3075         * ftp.c (getftp): Use new ftp_size function if restoring
3076           transfer of a file with unknown size.
3077
3078 2001-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
3079
3080         * url.c (parseurl): Don't depend on the now-obsolete TYPE.
3081
3082 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
3083
3084         * url.c (getproxy): Handle URL shorthands.
3085
3086 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
3087
3088         * main.c: Remove --wait / --waitretry backwards compatibility
3089         code.
3090         
3091 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
3092
3093         * main.c (main): Use it.
3094
3095         * url.c (rewrite_url_maybe): New function.
3096
3097 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
3098
3099         * url.c: Clean up handling of URL schemes.
3100
3101 2001-05-13  Hrvoje Niksic  <hniksic@arsdigita.com>
3102
3103         * url.c: Get rid of `protostrings'.
3104         (skip_proto): Don't use protostrings.
3105         (has_proto): Ditto.
3106
3107 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
3108
3109         * Makefile.in: Conditionally compile getopt.o.
3110
3111 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
3112
3113         * md5.h: Renamed to gnu-md5.h.
3114
3115         * md5.c: Renamed to gnu-md5.c.
3116
3117         * http.c: Ditto.
3118
3119         * ftp-opie.c: Use the new macros.
3120
3121         * sysdep.h: Define md5-related macros.
3122
3123         * config.h.in: Define HAVE_SOLARIS_MD5 or HAVE_BUILTIN_MD5
3124         depending on which md5 implementation is used.
3125
3126 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
3127
3128         * res.c (res_register_specs): Initialize OLD and HP_OLD to appease
3129         the compiler.
3130
3131 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
3132
3133         * http.c (gethttp): Print the whole response line when printing
3134         headers is requested.
3135
3136 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3137
3138         * res.c: New file.  Implement all RES-related code here.
3139
3140 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
3141
3142         * version.c: Wget 1.7.1 is released.
3143
3144 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
3145
3146         * headers.c (header_extract_number): Ignore trailing whitespace.
3147
3148 2001-08-24  Ian Abbott  <abbotti@mev.co.uk>
3149
3150         * html-url.c (collect_tags_mapper): Fix bug converting links
3151         with -k option for tags with multiple link attributes by
3152         handling links in the order they appear.
3153
3154 2001-08-15  Ian Abbott  <abbotti@mev.co.uk>
3155
3156         * ftp.c (ftp_loop_internal): Avoid a potential buffer overflow in
3157           the call to the 'rate' function by moving it past the error
3158           checking for the 'getftp' function return value.
3159
3160 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
3161
3162         * html-parse.c (advance_declaration): Use 0x22 instead of '"' or
3163         '\"'.  Different compilers' assert macros are broken in different
3164         ways.
3165
3166 2001-09-29  Christian Fraenkel  <c.fraenkel@gmx.net>
3167
3168         * http.c (gethttp): print debug output for errors occuring during
3169         the ssl handshake.
3170
3171 2001-11-16  Chris Seawood  <cls@seawood.org>
3172
3173         * init.c: Ditto.
3174
3175         * host.c: Ditto.
3176
3177         * connect.c: Ditto.
3178
3179         * sysdep.h: Support compilation under BEOS.
3180
3181 2001-06-08  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
3182
3183         * url.c (url_equal): Fix a memory leak when parseurl returns an
3184         error on the second URL. Also, since url_equal is not used at the
3185         moment, do not compile it.
3186
3187         * url.h: Ditto for the prototype of url_equal.
3188
3189 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
3190
3191         * html-parse.c (map_html_tags): Support XML-style empty tags.
3192
3193 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
3194
3195         * wget.h (DO_REALLOC_FROM_ALLOCA): Check for do_realloc_newsize in
3196         loop condition because we're no longer setting SIZEVAR here.
3197
3198 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
3199
3200         * wget.h (DO_REALLOC_FROM_ALLOCA): Set SIZEVAR after the memcpy()
3201         call because it needs the old value.
3202
3203 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
3204
3205         * cookies.c (ATTR_NAME_CHAR): Allow almost any character to be in
3206         an attribute name.
3207
3208 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
3209
3210         * url.c (url_filename): Make sure that slashes that sneak in to
3211         u->file via query string get protected.
3212         (file_name_protect_query_string): New function.
3213
3214 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3215
3216         * recur.c (recursive_retrieve): Also check undesirable_urls with
3217         canonicalized URL.
3218
3219 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3220
3221         * http.c (gethttp): Search `.netrc' with real host, not the proxy
3222         one.
3223
3224 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3225
3226         * sysdep.h (MAP_FAILED): Provide MAP_FAILED for systems that don't
3227         define it.
3228
3229 2001-06-09  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
3230
3231         * ftp.h: Provide correct prototype for ftp_parse_ls().
3232
3233 2001-06-04  Hrvoje Niksic  <hniksic@arsdigita.com>
3234
3235         * version.c: Wget 1.7 is released.
3236
3237 2001-06-03  Karl Eichwalder  <ke@suse.de>
3238
3239         * ftp-ls.c (ftp_parse_ls): Fix typo.
3240
3241 2001-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
3242
3243         * all: Update copyright information.
3244
3245 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
3246
3247         * http.c (gethttp): Indicate that the continued download failed
3248         for *this* file.
3249
3250 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
3251
3252         * version.c: Wget 1.7-pre1 is released.
3253
3254 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
3255
3256         * version.c: Updated version to 1.7-pre1.
3257
3258 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3259
3260         * gen_sslfunc.c: Don't include <sys/time.h> directly.
3261
3262 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3263
3264         * http.c (gethttp): Use real URL data for cookies, not the proxy
3265         stuff.
3266
3267 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3268
3269         * main.c (print_help): Document `--no-http-keep-alive'.
3270
3271         * utils.c (numdigit): Handle negative numbers *correctly*.
3272
3273         * hash.c (make_nocase_string_hash_table): Use term "nocase" rather
3274         than the confusing "unsigned".
3275
3276         * utils.c (string_set_contains): Renamed from string_set_exists.
3277
3278         * hash.c (hash_table_contains): Renamed from hash_table_exists.
3279
3280         * cookies.c: Move case-insensitive hash tables to hash.c.
3281
3282 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
3283
3284         * http.c (gethttp): Before concluding that the file is already
3285         fully retrieved, make sure that the file existed and `Range' was
3286         actually requested.
3287
3288 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
3289
3290         * cookies.c (eliminate_dups): New function.
3291         (build_cookies_request): Use it.
3292         (build_cookies_request): Set chain_store_size after reallocating
3293         all_chains.
3294         (check_domain_match): Annotated for easier future debugging.
3295         (store_cookie): In the debug message, print whether the cookie is
3296         permanent.
3297
3298 2001-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
3299
3300         * http.c (http_loop): Reset no_truncate before deciding whether to
3301         set it.
3302         (gethttp): Further clarify "-c conflicts with existing file" error
3303         message, based on input from Herold Heiko.
3304
3305 2001-05-07  Hrvoje Niksic  <hniksic@arsdigita.com>
3306
3307         * http.c (http_loop): If restval is set, set no_truncate to 1
3308         unconditionally.
3309
3310 2001-05-02  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
3311
3312         * ftp-ls.c (ftp_parse_winnt_ls): Assure months are being correctly
3313         converted. Pointed out by <Stefan.Weil@de.heidelberg.com>.
3314         (ftp_parse_vms_ls): Ditto.
3315
3316 2001-04-30  Hrvoje Niksic  <hniksic@arsdigita.com>
3317
3318         * init.c (cmd_address): Zero SIN before using it; apparently
3319         needed on *BSD.
3320
3321 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
3322
3323         * ftp.c (ftp_loop_internal): Don't set NO_TRUNCATE if the file is
3324         empty.
3325
3326 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
3327
3328         * main.c (main): Make `--cookies' respect its argument.
3329
3330 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
3331
3332         * main.c (main): Removed undocumented option `--email-address'.
3333
3334         * netrc.c: Use the latest read_whole_line.
3335
3336         * init.c (defaults): Set opt.ftp_pass to "-wget@".
3337
3338         * mswindows.c (pwd_cuserid): Ditto.
3339
3340         * utils.c (pwd_cuserid): Removed.
3341
3342         * host.c (ftp_getaddress): Removed.
3343
3344 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
3345
3346         (http_loop): Allocate space for filename_plus_orig_suffix with
3347         alloca; this is more efficient and removes the need to free it
3348         before each and every return.
3349
3350 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
3351
3352         * http.c (gethttp): Return RETRUNNEEDED when the retrieval is
3353         unneeded because the file is already there and fully downloaded,
3354         and -c is specified.
3355         (http_loop): Handle RETRUNNEEDED.
3356
3357         * wget.h (uerr_t): New value RETRUNNEEDED.
3358
3359         * http.c (http_loop): Set no_truncate for files that both exist
3360         and are non-empty.
3361         (gethttp): Consider the download finished when restval >= contlen,
3362         not only when restval==contlen.
3363         (gethttp): Handle redirection before giving up due to -c.
3364         (gethttp): Clarify error message which explains that -c will not
3365         truncate the file.
3366         (gethttp): When returning CONTNOTSUPPORTED, don't forget to free
3367         the stuff that needs freeing and release the socket.
3368
3369 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
3370
3371         * main.c (print_help): Wget booleans accept "off", not "no".
3372
3373 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
3374
3375         * http.c (http_loop): If allow_cache is zero, always disable
3376         caching, not only when retrieving through proxy.
3377
3378         * init.c: Ditto.
3379
3380         * options.h (struct options): Rename proxy_cache to allow_cache.
3381
3382 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
3383
3384         * http.c (mktime_from_utc): Improve documentation.
3385         (http_atotm): Put format strings into a separate array.
3386
3387 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
3388
3389         * safe-ctype.h: Instead of throwing #error when isalpha is
3390         defined, redefine it to something that will throw a compile-time
3391         error if actually *used*.  Do the same for the rest of the
3392         standard C macros.
3393
3394 2001-04-26  Hrvoje Niksic  <hniksic@arsdigita.com>
3395
3396         * url.c (getproxy): Ignore empty proxy vars.
3397
3398 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
3399
3400         * http.c (http_loop): Would load cookies every time.
3401
3402         * cookies.c (load_cookies): Handle cookies whose values contain
3403         embedded spaces.
3404
3405 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
3406
3407         * utils.c: Define each DIGITS_* in one line.
3408
3409 2001-04-25  Roger L. Beeman  <beeman@cisco.com>
3410
3411         * http.c (http_atotm): Initialize t.tm_isdst to 0.
3412         (mktime_from_utc): Prevent mktime() from having discontinuities at
3413         DST transition points.
3414
3415 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
3416
3417         * html-url.c (get_urls_html): Fix documentation.
3418
3419 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
3420
3421         * url.c (UNSAFE_CHAR): Reimplement using a static table.
3422         (url_init): Removed.
3423         (init_unsafe_char_table): Removed.
3424
3425 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
3426
3427         * snprintf.c (dopr): Replace ISDIGIT with '0' <= ch && ch <= '9'.
3428
3429 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
3430
3431         * utils.c: Document timer functions.
3432
3433         * retr.c (rate): Use it.
3434         (rate): Print in GB/s if transfer rate exceeds 1 GB/s.
3435
3436         * utils.c (wtimer_granularity): New function.
3437
3438 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
3439
3440         * retr.c (show_progress): Ditto.
3441
3442         * ftp.c (getftp): Ditto.
3443
3444         * http.c (gethttp): Use new timer functions.
3445
3446         * utils.c (wtimer_allocate): New function.
3447         (wtimer_new): Ditto.
3448         (wtimer_delete): Ditto.
3449         (wtimer_reset): Ditto.
3450         (wtimer_elapsed): Ditto.
3451
3452 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
3453
3454         * utils.c (long_to_string): New, faster version.  Favors smaller
3455         numbers; much of the calculation is now done at compile-time.
3456
3457 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
3458
3459         * utils.c (numdigit): Handle negative numbers.
3460
3461 2001-04-23  Hrvoje Niksic  <hniksic@arsdigita.com>
3462
3463         * retr.c (show_progress): Print the download rate even when the
3464         percentages are not available.
3465
3466 2001-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
3467
3468         * ftp.c (getftp): Adjust expected_bytes if the length is
3469         authoritative.
3470
3471 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3472
3473         * url.c: Don't declare `construct'.
3474
3475         * hash.c (grow_hash_table): Speed up rehashing; inline storing of
3476         mappings to new locations.
3477         (hash_table_new): Make resize_threshold a field in the hash table,
3478         so we don't have to recalculate it in each hash_table_put.
3479         (grow_hash_table): Update resize_threshold.
3480         (MAX): Remove unused macro.
3481         (prime_size): Made static.
3482
3483 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3484
3485         * retr.c (retrieve_url): Call uri_merge, not url_concat.
3486
3487         * html-url.c (collect_tags_mapper): Call uri_merge, not
3488         url_concat.
3489
3490         * url.c (mkstruct): Use encode_string instead of xstrdup followed
3491         by URL_CLEANSE.
3492         (path_simplify_with_kludge): Deleted.
3493         (contains_unsafe): Deleted.
3494         (construct): Renamed to uri_merge_1.
3495         (url_concat): Renamed to uri_merge.
3496
3497 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
3498
3499         * url.c (str_url): Use encode_string instead of the unnecessary
3500         CLEANDUP.
3501         (encode_string_maybe): New function, returns input string if no
3502         encoding is needed.
3503         (encode_string): Call encode_string_maybe to do the dirty work,
3504         xstrdup if no work needed.
3505
3506 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
3507
3508         * wget.h (XDIGIT_TO_xchar): Define here.
3509
3510         * url.c (decode_string): Use new name.
3511         (encode_string): Ditto.
3512
3513         * http.c (XDIGIT_TO_xchar): Rename HEXD2asc to XDIGIT_TO_xchar.
3514         (dump_hash): Use new name.
3515
3516         * wget.h: Rename ASC2HEXD and HEXD2ASC to XCHAR_TO_XDIGIT and
3517         XDIGIT_TO_XCHAR respectively.
3518
3519 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
3520
3521         * init.c: Include cookies.h.
3522
3523         * cookies.h: Declare cookies_cleanup.
3524
3525         * cookies.c (check_domain_match): Remove unused variable.
3526         (save_cookies): Remove extraneous argument from debug statement.
3527
3528         * host.c (same_host): Don't call skip_url.
3529
3530         * url.c (skip_url): Removed.  Removed its calls from various
3531         functions in url.c.
3532
3533 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
3534
3535         * cookies.c (unsigned_string_hash): Use the new code in
3536         string_hash as reference.
3537
3538         * hash.c (hash_table_map): Allow deletion and change of the
3539         element processed by MAPFUN.
3540         (string_hash): Use the function from glib.
3541
3542 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3543
3544         * config.h.in: Include #undef stub.
3545
3546         * hash.c (hash_table_remove): Rewrite to actually clear deleted
3547         entries instead of just marking them as deleted.
3548
3549 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3550
3551         * hash.h: Declare hash_table_get_pair and hash_table_count.
3552
3553 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3554
3555         * cookies.c: Declare http_atotm.
3556
3557 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3558
3559         * ftp-ls.c (ftp_parse_unix_ls): Use octal constants for
3560         permissions.  A compiler that doesn't accept octal constants is
3561         seriously broken and shouldn't be used -- octal constants were
3562         present in K&R C!
3563
3564 2001-01-20  Karl Eichwalder  <ke@suse.de>
3565
3566         * Makefile.in: Provide and use DESTDIR according to the Coding
3567         Standards.
3568
3569 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3570
3571         * ftp-ls.c (ftp_parse_vms_ls): Make seconds optional in time
3572         specification.
3573
3574 2001-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3575
3576         * url.c (parseurl): Don't strip trailing slash when u->dir is "/"
3577         because that strips the *leading* slash, thus forcing relative
3578         FTP retrieval.
3579
3580 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
3581
3582         * ftp.c (getftp): Convert initial FTP directory from VMS to UNIX
3583         notation for VMS servers. 
3584         (ftp_retrieve_dirs): Do not prepend '/' to f->name when
3585         odir is an empty string.
3586
3587 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
3588
3589         * ftp-ls.c (ftp_parse_winnt_ls): Made the fix for AM/PM more
3590         effective. Suggested by Edward J. Sabol.
3591
3592 2001-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
3593
3594         * cookies.c (build_cookies_request): Use and sort cookies from all
3595         matching domains.
3596         (build_cookies_request): Check for duplicates before generating
3597         the `Cookies' header.
3598
3599         * main.c (main): Don't load cookies here.
3600         (main): Make loadcookies and savecookies call the correct command.
3601
3602         * http.c (http_loop): Load cookies on-demand.
3603
3604 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
3605
3606         * http.c (gethttp): Fix indentation of SSL ifdef.
3607
3608 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
3609
3610         * ftp.c (ftp_retrieve_dirs): Don't forcibly prepend "/" to u->dir;
3611         that hack is no longer necessary.
3612         (getftp): Prepend initial directory to *non*-absolute u->dir's.
3613
3614 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
3615
3616         * init.c (cmd_file): New function.
3617         (enable_tilde_expansion): New variable.
3618         (run_wgetrc): Use it.
3619         (cmd_file): Use it.
3620
3621 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
3622
3623         * init.c: Include cookie-related options.
3624
3625         * main.c (main): Include cookie-specific options.
3626         (main): Load cookies before download is finished.
3627         (main): Save cookies when done.
3628
3629         * http.c (gethttp): Process the `Set-Cookie' header.
3630         (gethttp): Include cookies in the response.
3631
3632         * cookies.c: New file.
3633
3634 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
3635
3636         * utils.c (datetime_str): New function.
3637
3638 2001-04-08  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
3639
3640         * ftp-ls.c (ftp_parse_winnt_ls): The AM/PM change did assume
3641         12:01PM == 00:01, which was obviously wrong. Taken care of this
3642         anomaly.
3643
3644         * ChangeLog: Removed an excess conflict marker. Reformatted the
3645         entry by Philipp Thomas from 2001-03-09.
3646
3647         * ftp-ls.c (ftp_parse_winnt_ls): Ensure that adjusted PM hours lay
3648         between 0 and 23. Elminate unused variable `sec'.
3649
3650 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
3651
3652         * hash.c (hash_table_count): New function.
3653
3654 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
3655
3656         * utils.c (read_file): Cast MAP_FAILED to char *.  Enforced by
3657         Digital Unix cc.
3658
3659 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
3660
3661         * config.h.in: Oops, do the namespace tweaks only on systems we
3662         know about.
3663
3664 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
3665
3666         * hash.c: Include <string.h>.
3667
3668 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
3669
3670         * config.h.in: Define "compilation environment" options that work
3671         under Linux and Solaris.  To be reviewed on other OS'es.
3672
3673 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
3674
3675         * http.c (gethttp): Prepend literal newline with `\n\'.
3676
3677 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
3678
3679         * sysdep.h: Don't define VERY_LONG_FORMAT.
3680
3681         * utils.c (very_long_to_string): New function.
3682         (legible_very_long): Use it; don't use VERY_LONG_FORMAT.
3683
3684 2001-04-04  Christian Fraenkel  <christian.fraenkel@gmx.net>
3685
3686         * url.c (parse_uname): Would run past the end of the string if the
3687         username was present, but the URL did not contain a slash, e.g.
3688         http://foo:bar@myhost.
3689
3690 2001-04-03  KOJIMA Hajime  <kjm@rins.ryukoku.ac.jp>
3691
3692         * http.c (http_atotm): Use %A instead of %a to match full
3693         weekday.  (On most systems there is no difference.)
3694
3695 2001-04-03  Paul Bludov  <paul@ozero.net>
3696
3697         * mswindows.c (sleep): Use SleepEx() instead of Sleep().
3698         (ws_changetitle): Use alloca() instead of malloc() to avoid memory
3699         leak.
3700         (ws_mypath): Use GetModuleFileName instead of argv[0].
3701         (ws_startup): Use data.wVersion for comparison.
3702
3703 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
3704
3705         * http.c (http_loop): Ditto.
3706
3707         * ftp.c (ftp_loop_internal): Made the check whether to continue
3708         retrieval `-O'-friendly.
3709
3710 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
3711
3712         * netrc.c (parse_netrc): Don't trim the line endings explicitly;
3713         they will be handled as whitespace.
3714         (parse_netrc): Correctly handle lines that end with whitespace.
3715
3716 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
3717
3718         * retr.c (retrieve_url): New variable global_download_count used
3719         to identify first retrieval.
3720
3721         * ftp.c (getftp): Ditto.
3722
3723         * http.c (gethttp): Rewind opt.dfp only on first retrieval.
3724
3725 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
3726
3727         * init.c (cmd_address): Heap-allocate the address that gets stored
3728         to CLOSURE.  Old code would simply assign an address on the stack.
3729
3730 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
3731
3732         * ftp.c (ftp_get_listing): Propagate error status.
3733         (ftp_retrieve_glob): Use it.
3734         (ftp_loop): Ditto.
3735
3736 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
3737
3738         * main.c (main): Add -C to the string that is the third arg to
3739         getopt_long().
3740
3741 2001-04-01  Hrvoje Niksic  <hniksic@arsdigita.com>
3742
3743         * ftp.c (getftp): Don't start the download from scratch if `-c'
3744         was specified, but the file is already fully downloaded.
3745
3746         * http.c (gethttp): Don't truncate a pre-existing file if `-c' was
3747         specified and the server doesn't support continued download.
3748         (gethttp): Don't start the download from scratch if `-c' was
3749         specified, but the file is already fully downloaded.
3750
3751 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
3752
3753         (recursive_retrieve): Don't clear the hash tables at this point at
3754         all; it interferes with the normal operation of register_download.
3755
3756 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
3757
3758         * recur.c (recursive_retrieve): Clear the hash tables only when
3759         they are defined.
3760
3761 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
3762
3763         * http.c (gethttp): Make sure the socket is closed with
3764         CLOSE_INVALIDATE before we have drained the body.
3765
3766 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
3767
3768         * retr.c (retrieve_url): Call register_download() for downloaded
3769         files and register_html() for downloaded HTML files.
3770
3771         * recur.c (register_download): New function; register here that a
3772         file has been downloaded, rather than in recursive_retrieve().
3773         (register_html): New function; enqueue the location of HTML files
3774         here rather than in recursive_retrieve().
3775
3776 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
3777
3778         * main.c (print_help): Use multiple fputs instead of a single ugly
3779         printf().
3780         (main): Consistently assign numbers >128 to options without a
3781         corresponding character.
3782
3783 2001-03-09  Philipp Thomas  <pthomas@suse.de>
3784
3785         * safe-ctype.h: New file. Locale independent ctype.h replacement
3786         taken from libiberty.
3787
3788         * safe-ctype.c: New file. Tables for above.
3789
3790         * Makefile.in: Add safe-ctype$o to OBJS.  Add dependencies for
3791         safe-ctype$o.
3792
3793         * cmpt.c: Remove include of ctype.h. Use ISSPACE instead of
3794         isspace.
3795
3796         * ftp-basic.c: Don't include ctype.h.
3797
3798         * ftp-ls.c: Likewise.
3799
3800         * ftp.c: Likewise.
3801
3802         * headers.c: Likewise.
3803
3804         * host.c: Likewise.
3805
3806         * html-parse.c: Likewise.
3807
3808         * html-url.c: Likewise.
3809
3810         * http.c: Likewise.
3811
3812         * init.c: Likewise.
3813
3814         * main.c: Likewise. Set LC_CTYPE along with LC_MESSAGES.
3815
3816         * netrc.c: Likewise.
3817
3818         * recur.c: Likewise.
3819
3820         * retr.c: Likewise.
3821
3822         * snprintf.c: Replace ctype.h with safe-ctype.h. Use ISDIGIT
3823         instead of isdigit.
3824
3825         * sysdep.h: Remove defines of ctype macros as they aren't needed
3826         for safe-ctype-h.
3827
3828         * url.c: Don't include ctype.h.
3829
3830         * utils.c: Likewise.
3831
3832         * wget.h: Include safe-ctype.h.
3833
3834 2001-03-27  Dan Harkless  <wget@harkless.org>
3835
3836         * Makefile.in: Moved top_builddir out of "User configuration
3837         section" of top Makefile and analogous spot in this one.
3838
3839 2001-03-17  Dan Harkless  <wget@harkless.org>
3840
3841         * Makefile.in: Include @SSL_INCLUDES@ substition in INCLUDES.
3842         Define top_builddir.  Link wget with libtool so the user doesn't
3843         have to supply a bunch of custom environment variables to 
3844         correctly link with the OpenSSL shared libraries.
3845
3846 2001-03-06  Hack Kampbjorn  <hack@hackdata.com>
3847
3848         * http.c (gethttp): skip :port in host header if it is the
3849         DEFAULT_HTTPS_PORT when using SSL.
3850
3851         * url.c: move the #define of DEFAULT_HTTP_PORT, DEFAULT_FTP_PORT
3852         and DEFAULT_HTTPS_PORT to the header file so it can be use in the
3853         rest of the code. 
3854         * url.h: Ditto
3855
3856 2001-03-01  Jonas Jensen  <bones@huleboer.dk>
3857
3858         * retr.c (show_progress): Correctly calculate the number of bytes
3859         in the first line of the download that have been actually
3860         downloaded in this run.
3861
3862 2001-02-23  Dan Harkless  <wget@harkless.org>
3863
3864         * main.c (print_help): --help documentation for -N said it would
3865         re-download files if they had the _same_ timestamp on server.
3866         (print_help): -nr belongs in "FTP options" section of --help
3867         output, not "Recursive retrieval" section.  Alphabetized FTP
3868         options by long option name.
3869
3870 2001-02-16  Dan Harkless  <wget@harkless.org>
3871
3872         * init.c (commands): Hack Kampbjørn <hack@hackdata.com> discovered
3873         that "httpsproxy" had been inserted into commands[] out of
3874         alphabetical order, causing "BUG: unknown command `httpuser'".
3875
3876 2001-02-13  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
3877
3878         * ftp-ls.c (ftp_parse_ls): Added support of ST_MACOS (Unix-like
3879         listing without correct permissons).
3880
3881         * ftp.h (stype): Added ST_MACOS to identify the NetPresenz MacOS
3882         FTP server. 
3883
3884         * ftp.c (ftp_retrieve_list): New mirroring logic: A remote file
3885         shall be donwloaded only when it's newer than the local copy or
3886         when it has the same timeestamp but its size is different. ST_VMS
3887         and ST_MACOS as special cases that lie about file size. 
3888
3889         * ftp-ls.c (ftp_parse_ls): Support for ST_MACOS.
3890
3891         * Makefile.in: Removed dependency on ftpparse library due to unclear
3892         copyright issues and absence of any feedback to our queries. 
3893
3894         * ftp-ls.c: Removed dependency on ftpparse library due to unclear
3895         copyright issues and absence of any feedback to our queries.   
3896         (ftp_parse_ls): Added a warning message when remote server system
3897         does not seem to be suported by wget. 
3898         (ftp_parse_vms_ls): New function for parsing VMS ftp
3899         server listing output.
3900         (clean_line): New function responsible for removing
3901         end-of-line characters from FTP listing texts.
3902
3903         * ftp.c (getftp): Global variables pwd and host_type are now
3904         member of the ccon structure under names ccon.id and ccon.rs. 
3905
3906         * ftp.h (struct ccon): Added formed global variables from ftp.c,
3907         enum stype rs (remote system identification) and char *id (initial
3908         working directory), as suggested by Hrvoje.
3909
3910         * url.c (parse_uname): Added support for passwords containing '@'
3911         characters.
3912         (skip_uname): Ditto.
3913
3914 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3915
3916         * ftp.c (ftp_loop): Reset con.
3917
3918 2001-01-06  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
3919
3920         * url.c (parse_uname): Added support for passwords containing '@'
3921         characters.
3922         (skip_uname): Ditto.
3923
3924 2001-02-11  Hack Kampbjørn  <hack@hackdata.com>
3925
3926         * url.c (parseurl): Debug-print u->ftp_type.
3927
3928 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3929
3930         * ftp.c (ftp_loop_internal): Disable padding.
3931         (getftp): Ditto.
3932
3933         * http.c (http_loop): Disable padding.
3934
3935         * retr.c (show_progress): Use it to enable padding.
3936
3937         * retr.c (rate): Optional parameter PAD for padding the rate.
3938
3939 2001-02-10  Hrvoje Niksic  <hniksic@arsdigita.com>
3940
3941         * retr.c (show_progress): Make sure that the last output line
3942         includes progress.
3943
3944 2001-02-10  Jonas Jensen  <bones@huleboer.dk>
3945
3946         * retr.c (show_progress): Print the download rate along with the
3947         percentages.
3948         Along with Anders Thorsby <anders@thorsby.dk>.
3949
3950 2001-02-10  Tim Mooney  <mooney@dogbert.cc.ndsu.NoDak.edu>
3951
3952         * ftp.h: Rename enums `command' to `wget_ftp_command' and
3953         `fstatus' to `wget_ftp_status' because old names clash with Tru64
3954         net/if.h.
3955
3956 2001-02-08  Christian Fraenkel <christian.fraenkel@gmx.net>
3957
3958         * gen_sslfunc.c: verify_callback is now static
3959
3960         * gen_sslfunc.c (init_ssl): load certificate if specified
3961
3962         * gen_sslfunc.c (ssl_printerr): new function
3963
3964         * init.c: added new --sslcertfile and --sslcertkey switches
3965
3966         * main.c: ditto
3967
3968         * options.h: ditto
3969
3970         * http.c (gethttp): abort when init_ssl fails
3971
3972 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
3973
3974         * mswindows.h: Include <malloc.h>; it's needed for alloca().
3975
3976 2001-01-10  Dan Harkless  <wget@harkless.org>
3977
3978         * url.c (str_url): Clarified this function's comment header after
3979         Hrvoje answered my question on the list as to when hide != 1.
3980         Also Hrvoje pointed out I need to use xstrdup() on the string literal.
3981
3982 2001-01-06  Hrvoje Niksic  <hniksic@arsdigita.com>
3983
3984         * connect.c (bindport): Declare addrlen as int.  Diagnosed by
3985         Drazen Kacar <dave@arsdigita.com>.
3986         (conaddr): Ditto.
3987
3988 2001-01-09  Dan Harkless  <wget@harkless.org>
3989
3990         * html-url.c: A bunch of fixup of `--page-requisites'-related
3991         comments to reflect Hrvoje's changes to my code when transplanting
3992         it into this new file, to fix spelling mistakes, to clarify, etc.
3993
3994         * url.c (write_backup_file): Clarified a comment.
3995         (str_url): Henrik van Ginhoven pointed out on the list that we
3996         shouldn't give away the number of characters in the password by
3997         replacing each character with a 'x'.  Use "<password>" instead.
3998
3999         * ftp.c (ftp_retrieve_dirs): The bug where recursion into FTP
4000         directories didn't work if logging in put you in a directory other
4001         than "/" is fixed now.  Removed the comment here warning of the bug.
4002
4003         * main.c (print_help): --continue's description was misleading.
4004         We don't "restart", we "resume".  Also, better to say
4005         "partially-downloaded file" rather than just "existing file".
4006
4007 2001-01-06  Dan Harkless  <wget@harkless.org>
4008
4009         * ChangeLog: The '[Not in 1.6 branch.]'s were decided not to be
4010         the best way to go about my aim.  Removed them in favor of:
4011
4012         * ChangeLog-branches/1.6_branch.ChangeLog: New file.
4013
4014 2001-01-04  Hrvoje Niksic  <hniksic@arsdigita.com>
4015
4016         * url.c (replace_attr): New function, to be used by both
4017         TO_COMPLETE and TO_RELATIVE case in convert_links.
4018         (find_fragment): New function for finding URL fragments.
4019         (replace_attr): Better handle the case where the original string
4020         is not quoted.  Use find_fragment.
4021         (convert_links): Use replace_attr().
4022
4023 2000-12-31  Dan Harkless  <wget@harkless.org>
4024
4025         * ChangeLog: Since this flat file doesn't have multiple branches,
4026         looking at the dates would make you think that things went into
4027         1.6 that actually just went into the 1.7-dev branch.  Added "[Not
4028         in 1.6 branch.]" where appropriate to clarify.
4029         
4030 2000-12-30  Dan Harkless  <wget@harkless.org>
4031
4032         * ftp.c, http.c:  Applied Hack Kampbjørn <hack@hackdata.com>'s
4033         patch to deal with h_errno not being defined in netdb.h under Cygwin.
4034
4035 2000-12-18  Csaba Raduly  <csaba.raduly@sophos.com>
4036
4037         * sysdep.h: Include <malloc.h> and <io.h> under Watcom.
4038
4039 2000-12-17  Igor Khristophorov  <igor@atdot.org>
4040
4041         * http.c (check_end): Fix test for '+' or '-'.
4042
4043 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4044
4045         * url.c (parseurl): Rename inner loop var from i to ind to avoid
4046         clash with the function top-level-declared variable i.
4047         (str_url): Likewise, rename inner-loop i to j.
4048
4049         * recur.c (parse_robots): Don't declare LEN at top of function.
4050         (robots_match): Renamed parameter FORBIDDEN to avoid hiding of
4051         global variable.
4052
4053         * main.c (main): Change erroneous use of bitwise and to logical.
4054
4055         * init.c (cmd_address): Don't heap-allocate `sin'; it can be on
4056         the stack because it will be copied to closure.
4057
4058         Thanks to Csaba Raduly's run of PC-LINT over the sources.
4059
4060 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4061
4062         * http.c (basic_authentication_encode): Use xmalloc(), not
4063         malloc().  Thanks to Csaba Raduly's run of PC-LINT over the
4064         sources.
4065
4066 2000-12-17  Csaba Raduly  <csaba.raduly@sophos.com>
4067
4068         * sysdep.h: Test for __EMX__ rather than for EMXOS2 for OS/2
4069         compilation.
4070
4071 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4072
4073         * mswindows.c: Include <errno.h>.
4074
4075         * gen_sslfunc.c: Include <errno.h>.
4076
4077         * ftp-basic.c: Don't attempt to declare errno or h_errno because
4078         they're not used.
4079
4080         * main.c: Include <errno.h> because errno is used.
4081
4082         * ftp.c: Ditto.
4083
4084         * http.c: Include <netdb.h> for h_errno.
4085
4086 2000-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4087
4088         * html-parse.c (advance_declaration): MSVC assert() chokes on
4089         '\"'.  Use '"' instead.
4090
4091 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4092
4093         * utils.c (xfree_real): Removed.
4094         (xfree_debug): Just call free().
4095
4096         * wget.h (xfree): Make it an alias for free.
4097
4098 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4099
4100         * http.c (http_loop): Furthermore, touch output_document only if
4101         it is known to be an existing regular file.
4102
4103 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4104
4105         * ftp.c (ftp_retrieve_list): Ditto.
4106
4107         * http.c (http_loop): Touch output_document if that is used for
4108         output.
4109
4110 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4111
4112         * http.c: Include gen_sslfunc.h after including Wget's headers.
4113         (persistent_available_p): Needed coma before `int ssl'.
4114
4115 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4116
4117         * ftp.c (ftp_loop_internal): Ditto.
4118
4119         * http.c (http_loop): Use it.
4120
4121         * retr.c (sleep_between_retrievals): New function that handles the
4122         logic of opt.wait and opt.waitretry.
4123
4124 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4125
4126         * rbuf.h: Implement only a single version of RBUF_READCHAR, using
4127         rbuf_read_bufferful when the buffer is depleted.
4128
4129         * rbuf.c (rbuf_read_bufferful): New function.
4130
4131 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4132
4133         * gen_sslfunc.h: Use ansi2knr style function declarations.
4134
4135         * gen_sslfunc.c: Reformat according to the GNU coding standards.
4136         More should be done.
4137
4138         * http.c (persistent_available_p): Place the cheap SSL test nearer
4139         the top of the function.
4140         (CLOSE_FINISH, CLOSE_INVALIDATE): Define only one version of each.
4141
4142 2000-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
4143
4144         * url.c (init_unsafe_char_table): Reinstate space as an unsafe
4145         char.
4146
4147 2000-12-03  Christian Fraenkel <christian.fraenkel@gmx.net>
4148
4149         * Makefile.in: added gen_sslfunc object
4150         * config.h.in: added HAVE_SSL define
4151         * connect.c: changed select_fd from static int to int
4152         * connect.h: ditto
4153         * gen_sslfunc.h: New file
4154         * gen_sslfunc.c: ditto
4155         * http.c: added HTTPS fuctionality
4156         * retrc.c: ditto
4157         * url.c: ditto
4158         * init.c: added opt.httpsproxy
4159         * options.h: ditto
4160         * rbuf.h: added alternate rbuf struct
4161         * wget.h: added CONSSLERR
4162         * rbuf.c: ditto
4163
4164         * http.c: Added HTTPS fuctionality.
4165
4166         * retrc.c: Ditto.
4167
4168         * url.c: Ditto.
4169
4170         * init.c: Added opt.httpsproxy.
4171
4172         * options.h: Ditto.
4173
4174         * rbuf.h: Added alternate rbuf struct.
4175
4176         * wget.h: Added CONSSLERR.
4177
4178         * rbuf.c: Ditto.
4179
4180 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
4181
4182         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
4183         "ignore_perms" to ignore file and directory permissions for
4184         Windows NT FTP server listings.
4185         (ftp_parse_winnt_ls): New function.
4186         (ftp_parse_ls): Parses UNIX and Windows NT listings
4187         separately. Simple heuristics for distinguishing between UNIX and
4188         MS-DOS-like FTP listing provided by Windows NT FTP service.
4189
4190 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
4191
4192         * ftpparse.c, ftpparse.h: New files.
4193
4194         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
4195         only. Use ftp_parse_nonunix_ls otherwise.
4196         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
4197         exotic FTP servers.
4198
4199         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
4200         FTP servers.
4201
4202         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
4203         (getftp): Support for VMS. Support for FTP servers that do not
4204         place you in the root directory after login.
4205         (ftp_retrieve_list): VMS is silent about the real file size, issue
4206         a more appropriate message.
4207         (ftp_get_listing): Pass host_type to ftp_parse_ls.
4208
4209         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
4210
4211 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
4212
4213         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
4214         "ignore_perms" to ignore file and directory permissions for
4215         Windows NT FTP server listings.
4216         (ftp_parse_winnt_ls): New function.
4217         (ftp_parse_ls): Parses UNIX and Windows NT listings
4218         separately. Simple heuristics for distinguishing between UNIX
4219         and MS-DOS-like FTP listing provided by Windows NT FTP service.
4220
4221 2000-11-29  John Summerfield  <summer@OS2.ami.com.au>
4222
4223         * netrc.c (parse_netrc): Get rid of line ending.
4224
4225 2000-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
4226
4227         * ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by
4228         Dan.
4229
4230 2000-11-24  Karl Eichwalder  <ke@suse.de>
4231
4232         * main.c (print_help): Untabify.
4233
4234 2000-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
4235
4236         * utils.c (xrealloc_debug): Do the unregister/register thing only
4237         if the pointer has actually changed.
4238         (xmalloc_real): Declare `static' in DEBUG_MALLOC builds.
4239         (xfree_real): Ditto.
4240         (xrealloc_real): Ditto.
4241         (xstrdup_real): Ditto.
4242
4243 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
4244
4245         * ftp.c (getftp): ftp_getaddress() returns a malloc'ed copy of the
4246         string; no need to strdup() it.
4247         (getftp): Make pwd_len a local variable.
4248         (ftp_loop): Free PWD before returning.
4249
4250         * init.c (cleanup): Free opt.ftp_pass only if it's non-NULL.
4251
4252 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
4253
4254         * all: Use xfree() instead of free.
4255
4256         * utils.c (xfree): New function.
4257
4258 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
4259
4260         * url.c (convert_links): HTML-quote the converted string.
4261
4262         * utils.c (html_quote_string): Move here from ftp-ls.c
4263         (html_quote_string): Make non-static; declare in utils.h.
4264         (html_quote_string): Convert SP to &#32;.
4265
4266 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
4267
4268         * ftp.c (getftp): Reformat Jan's code according to GNU coding
4269         standards; remove (debugging?) printf's; use '\0' for the ASCII
4270         zero character.  Use alloca() instead of malloc() for
4271         inter-function temporary allocations.
4272
4273 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
4274
4275         * ftpparse.c, ftpparse.h: New files.
4276
4277         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
4278         only. Use ftp_parse_nonunix_ls otherwise.
4279         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
4280         exotic FTP servers.
4281
4282         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
4283         FTP servers.
4284
4285         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
4286         (getftp): Support for VMS. Support for FTP servers that do not
4287         place you in the root directory after login.
4288         (ftp_retrieve_list): VMS is silent about the real file size, issue
4289         a more appropriate message.
4290         (ftp_get_listing): Pass host_type to ftp_parse_ls.
4291
4292         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
4293
4294 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
4295
4296         * hash.c (hash_table_put): Don't overwrite deleted mappings.
4297
4298 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
4299
4300         * hash.c (find_mapping): New function.
4301         (hash_table_get): Use it.
4302         (hash_table_get_pair): Ditto.
4303         (hash_table_exists): Ditto.
4304         (hash_table_remove): Ditto.
4305         (hash_table_remove): Really delete the entry if the mapping
4306         following LOCATION is empty.
4307
4308         * utils.c (string_set_add): Check whether the element has existed
4309         before.
4310
4311         * hash.c (hash_table_get_pair): New function.
4312
4313 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4314
4315         * http.c (http_process_type): Ignore trailing whitespace; use
4316         strdupdelim().
4317
4318         * recur.c (recursive_retrieve): Use the new `convert' field.
4319         (convert_all_links): Ditto.
4320         (convert_all_links): Don't respect meta_disallow_follow.
4321
4322         * html-url.c (handle_link): Fill out link_relative_p and
4323         link_complete_p.
4324
4325         * url.h (struct _urlpos): Make elements more readable.
4326
4327         * recur.c (recursive_retrieve): Call slist_prepend instead of
4328         slist_append.
4329         (convert_all_links): Call slist_nreverse before iterating through
4330         urls_html.
4331
4332         * utils.c (slist_prepend): New function.
4333         (slist_nreverse): Ditto.
4334
4335 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4336
4337         * http.c (check_end): Constify.
4338
4339 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4340
4341         * http.c (http_loop): If username and password are known, try the
4342         `Basic' authentication scheme by default.
4343
4344         * connect.h: Declare test_socket_open.
4345
4346 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4347
4348         * version.c: Bump version from 1.5.3+dev to 1.7-dev.
4349
4350 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4351
4352         * http.c (gethttp): Don't use the return value of sprintf().
4353         (gethttp): Inhibit keep-alive if opt.http_keep_alive is 0.
4354
4355 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
4356
4357         * recur.c (recursive_retrieve): Print the "so we don't load"
4358         debugging message only if we really don't load.
4359
4360         * http.c (gethttp): Inhibit keep-alive if proxy is being used.
4361         (gethttp): Don't request keep-alive if keep-alive is inhibited.
4362
4363 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4364
4365         * http.c (gethttp): Make the HTTP persistent connections more
4366         robust.
4367
4368 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4369
4370         * retr.c (get_contents): If use_expected, make sure that the
4371         appropriate amount of data is being read.
4372
4373         * http.c (gethttp): Check for both `Keep-Alive: ...' and
4374         `Connection: Keep-Alive'.
4375
4376         * wget.h (DEBUGP): Call debug_logprintf only if opt.debug is
4377         turned on.
4378
4379 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4380
4381         * http.c (connection_available_p): Use it.
4382
4383         * connect.c (test_socket_open): New function.
4384
4385         * http.c (gethttp): Support persistent connections.  Based on the
4386         ideas, and partly on code, by Sam Horrocks <sam@daemoninc.com>.
4387         (register_persistent): New function.
4388         (connection_available_p): Ditto.
4389         (invalidate_connection): Ditto.
4390
4391 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4392
4393         * url.c (convert_links): Handle UREL2ABS case.
4394
4395         * recur.c (recursive_retrieve): Instead of the list
4396         urls_downloaded, use hash tables dl_file_url_map and
4397         dl_url_file_map.
4398         (convert_all_links): Use them to retrieve data.
4399
4400         * host.c (clean_hosts): Free the hash tables.
4401
4402         * main.c (private_initialize): Call host_init().
4403
4404         * host.c (store_hostaddress): Use a saner, hash table-based data
4405         model.
4406         (realhost): Ditto.
4407         (host_init): Initialize the hash tables.
4408
4409 2000-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
4410
4411         * utils.c (slist_append): Eviscerate NOSORT.  Hash tables are now
4412         used for what the sorted slists used to be used for.
4413         (slist_contains): Don't rely on the list being sorted.
4414         (slist_append): Simplify the code.
4415
4416         * recur.c (recursive_cleanup): Use free_string_set.
4417
4418         * utils.c (string_set_add, string_set_exists, string_set_free):
4419         New functions for easier freeing of hash tables whose keys are
4420         strdup'ed strings.
4421
4422         * recur.c (recursive_retrieve): Use the hash table functions for
4423         storing undesirable URLs.
4424
4425         * hash.c: New file.
4426
4427 2000-11-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4428
4429         * main.c (private_initialize): Call url_init.
4430         (main): Call private_initialize.
4431
4432         * url.c (unsafe_char_table): New table.
4433         (UNSAFE_CHAR): Use it.
4434         (init_unsafe_char_table): New function.
4435         (url_init): New function; call init_unsafe_char_table.
4436
4437 2000-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
4438
4439         * mswindows.h: Define snprintf and vsnprintf to _snprintf and
4440         _vsnprintf respectively.
4441
4442 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
4443
4444         * config.h.in: Do the _XOPEN_SOURCE and _SVID_SOURCE things only
4445         on Linux.
4446
4447 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
4448
4449         * html-url.c (handle_link): Handle HTML fragment identifiers.
4450
4451         * recur.c (recursive_retrieve): If norobot info is respected and
4452         the file is specified not to be followed by robots, respect that.
4453
4454         * html-url.c (collect_tags_mapper): Handle <meta name=robots
4455         content=X>.  For us the important cases are where X is NONE or
4456         where X contains NOFOLLOW.
4457         (get_urls_html): Propagate that information to the caller.
4458
4459 2000-11-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4460
4461         * url.c (convert_links): Unlink the file we might be reading from
4462         before writing to it.
4463         (convert_links): Use alloca instead of malloc for
4464         filename_plus_orig_suffix.
4465
4466 2000-11-12  Hrvoje Niksic  <hniksic@arsdigita.com>
4467
4468         * host.c (realhost): Add HOST to the list with quality==0 only if
4469         it wasn't already there.
4470         Based on analysis by Lu Guohan <feng@public.bjnet.edu.cn>.
4471
4472 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4473
4474         * url.c (get_urls_file): Ditto.
4475         (convert_links): Ditto.
4476
4477         * html-url.c (get_urls_html): Use read_file() instead of
4478         load_file().
4479
4480         * utils.c (read_file): New function, instead of the old
4481         load_file().
4482         (read_file_free): Ditto.
4483
4484         * url.c (findurl): Search only for the supported protocols.
4485         (convert_links): Use fwrite() when writing out a region of
4486         characters.
4487
4488 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4489
4490         * ftp-ls.c: Move html_quote_string and ftp_index here.
4491
4492         * url.c: Remove get_urls_html, since that's now in html-url.c.
4493
4494         * html-url.c: New file.
4495
4496         * html-parse.c: New file.
4497
4498 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4499
4500         * init.c (run_wgetrc): Don't bother killing off '\r' since
4501         pars_line() skips whitespace at end of line anyway.
4502         (parse_line): Oops, it didn't.  Now it does.
4503
4504         * recur.c (parse_robots): Ditto here.
4505
4506         * ftp-ls.c (ftp_parse_unix_ls): Kill off the newline character
4507         manually because read_whole_line no longer does.
4508
4509         * utils.c (read_whole_line): Rewrite to: a) use less memory
4510         (reallocates to needed size after work), b) work faster -->
4511         fgets() instead of getc, c) be more correct --> doesn't kill the
4512         newline character at the end of line.
4513
4514 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4515
4516         * init.c (comind): Initialize MAX to array size - 1.
4517
4518 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
4519
4520         * url.c (construct): Changed last_slash[-1] to *(last_slash - 1).
4521         Suggested by Edward J. Sabol.
4522
4523 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
4524
4525         * url.c (construct): Handle the case where host name is not
4526         followed by a slash.
4527
4528 2000-11-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4529
4530         * init.c: commands[] need to be sorted!  ("base" wasn't.)
4531
4532 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
4533
4534         * wget.h (DO_REALLOC_FROM_ALLOCA): Use braces to disambiguate
4535         `if'.
4536
4537 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
4538
4539         * url.c (construct): Insert unneeded initialization for the
4540         compiler to shut up.
4541
4542         * config.h.in: Define _XOPEN_SOURCE to 500 to get the prototype
4543         for strptime() (*duh*).  Define _SVID_SOURCE to get S_IFLNK which
4544         otherwise gets lost when you define _XOPEN_SOURCE.
4545
4546         * utils.c (touch): Include the file name in the error message.
4547         From Debian.
4548
4549 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
4550
4551         * log.c (logvprintf): Use vsnprintf() in all cases.  If necessary,
4552         resize the buffer to fit the formated message.  That way, messages
4553         of arbitrary size may be printed.
4554         (logvprintf): Use saved_append() to optionally log the last
4555         several lines of output.
4556         (logputs): Ditto.
4557         (log_close): Adapt to new data structures.
4558         (log_dump): Ditto.
4559         (redirect_output): Print messages to stderr, not to stdout.
4560
4561         * log.c (saved_append_1): New function.  Replaces the old logging
4562         system ("log all output until 10M characters") with a new, much
4563         more reasonable one ("log last screenful of text").
4564         (saved_append): New function; call saved_append_1.
4565         (free_log_line): New function.
4566
4567 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
4568
4569         * url.c (construct): Fix comment.
4570         (find_last_char): Document.
4571
4572 2000-11-04  Hrvoje Niksic  <hniksic@arsdigita.com>
4573
4574         * snprintf.c: New file.
4575
4576 2000-11-03  Hrvoje Niksic  <hniksic@arsdigita.com>
4577
4578         * wget.h: If HAVE_STDARG_H is not defined, don't declare argument
4579         types to logprintf() and debug_logprintf().
4580
4581 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
4582
4583         * ftp.c (ftp_loop_internal): Hide the password from the URL when
4584         printing non-verbose.  Problem spotted by Dariusz Mlynarczyk
4585         <darekm@bydg.lomac.com.pl>.
4586
4587 2000-11-02  Junio Hamano  <junio@twinsun.com>
4588
4589         * ftp-basic.c (ftp_login): Make comparison case-insensitive.
4590
4591 2000-11-02  Tyler Riddle  <triddle@liquidmarket.com>
4592
4593         * http.c (known_authentication_scheme_p): Recognize NTML
4594         authentication.
4595         (create_authorization_line): Treat NTML the same as `Basic'.
4596
4597 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
4598
4599         * retr.c (retrieve_url): Free url before returning.
4600         (retrieve_url): Free mynewloc before returning.
4601         Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
4602
4603 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
4604
4605         * url.c (parseurl): Remove possible reading past the end of
4606         sup_protos[].  Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
4607
4608 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4609
4610         * main.c (main): In case of opt.downloaded overflowing, print
4611         <overflow> instead of a totally bogus random value.
4612
4613         * retr.c (retrieve_from_file): Ditto.
4614
4615         * recur.c (recursive_retrieve): Ditto.
4616
4617         * main.c (main): Ditto.
4618
4619         * http.c (http_loop): Ditto.
4620
4621         * ftp.c (ftp_loop_internal): Use downloaded_increase() instead of
4622         `+=', and downloaded_exceeds_quota() instead of the simple-minded
4623         check.
4624         (ftp_retrieve_list): Ditto.
4625         (ftp_retrieve_dirs): Ditto.
4626         (ftp_retrieve_glob): Ditto.
4627
4628         * retr.c (downloaded_increase): New function.  Notice overflows of
4629         opt.downloaded.
4630         (downloaded_exceeds_quota): Make sure that opt.downloaded is not
4631         used if it overflowed.
4632
4633         * options.h (struct options): New member downloaded_overflow.
4634
4635 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4636
4637         * wget.h (enum): Remove extra space after last enumeration.
4638
4639 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4640
4641         * main.c (main): Use legible_very_long() for printing
4642         opt.downloaded.
4643
4644         * utils.c (legible_1): New function that operates on strings and
4645         does the brunt of legible()'s work.
4646         (legible): Use legible_1().
4647         (legible_very_long): New function; dump the argument with
4648         sprintf(), and call legible_1().
4649
4650         * options.h (struct options): Use VERY_LONG_TYPE for
4651         opt.downloaded.
4652
4653         * sysdep.h (VERY_LONG_TYPE): Define it to have a 64-bit or greater
4654         type.
4655
4656         * config.h.in: Make sure that SIZEOF_LONG and SIZEOF_LONG_LONG get
4657         defined.  Define HAVE_LONG_LONG if long long is available.
4658
4659 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4660
4661         * utils.c (long_to_string): Update with a later, better version.
4662
4663 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4664
4665         * url.c (path_simplify_with_kludge): New function.
4666         (path_simplify_with_kludge): Disable it.  Instead...
4667         (parse_dir): ...make sure that at this point the right thing is
4668         done, i.e. that "query" part of the URL (?...) is always assigned
4669         to the file, never to the directory portion of the path.
4670
4671 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4672
4673         * retr.c (retrieve_url): Detect redirection cycles.
4674
4675 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4676
4677         * url.c (get_urls_html): Decode HTML entities using
4678         html_decode_entities.
4679
4680         * html.c (htmlfindurl): Don't count the `#' in numeric entities
4681         (&#NNN;) as an HTML fragemnt.
4682         (html_decode_entities): New function.
4683
4684 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4685
4686         * html.c (htmlfindurl): Fix recognition of # HTML fragments.
4687
4688 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4689
4690         * url.c (construct): Rewritten for clarity.  Avoids the
4691         unnecessary copying and stack-allocation the old version
4692         performed.
4693
4694 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
4695
4696         * ftp.c (getftp): Ditto.
4697
4698         * http.c (gethttp): Rewind the stream when retrying from scratch.
4699
4700 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
4701
4702         * retr.c (retrieve_url): Use url_concat() to handle relative
4703         redirections instead of /ad hoc/ code.
4704
4705         * url.c (url_concat): New function encapsulating weird
4706         construct().
4707         (urllen_http_hack): New function.
4708         (construct): When constructing new URLs, recognize that `?' does
4709         not form part of the file name in HTTP.
4710
4711 2000-10-13  Adrian Aichner  <adrian@xemacs.org>
4712
4713         * retr.c: Add msec timing support for WINDOWS.
4714         * retr.c (reset_timer): GetSystemTime() on WINDOWS.
4715         * retr.c (elapsed_time): Calculate delta time to msec on WINDOWS.
4716
4717 2000-10-27  Dan Harkless  <wget@harkless.org>
4718
4719         * retr.c (retrieve_url): Manually applied T. Bharath
4720         <TBharath@responsenetworks.com>'s patch to get wget to grok
4721         illegal relative URL redirects.  Reformatted and re-commented it.
4722
4723 2000-10-23  Dan Harkless  <wget@harkless.org>
4724
4725         * connect.c (make_connection and bindport): Manually applied Rob
4726         Mayoff <mayoff@dqd.com>'s 1.5.3 patch to add --bind-address,
4727         changing coding style to GNU's.
4728
4729         * ftp.c (ftp_loop_internal): --delete-after wasn't implemented for
4730         files downloaded via FTP.  Per a comment, .listing files were not
4731         counted towards number of bytes and files downloaded because they're 
4732         deleted anyway.  Well, they aren't under -nr, so count them then.
4733
4734         * init.c: Manually applied Rob Mayoff's 1.5.3 patch to add
4735         --bind-address, alphabetizing, changing coding style to GNU's,
4736         commenting, and renaming cmd_ip_address() to cmd_address() to
4737         imply hostnames also okay.
4738                 
4739         * main.c (main): --delete-after didn't delete the root of the
4740         tree.  Ignore --convert-links if --delete-after was specified.
4741         Manually applied Rob Mayoff's 1.5.3 patch to add --bind-address,
4742         fixing duplicate use of added-since-1.5.3 case value.
4743         (print_help): Clarified that --delete-after deletes local files.
4744         Rob forgot to add a line for his new --bind-address option.
4745                 
4746         * options.h (struct options): Manually applied Rob Mayoff's patch
4747         to add --bind-address (bind_address structure member).
4748                 
4749         * recur.c (recursive_retrieve): Improved comment; added DEBUGP().
4750         Ignore --convert-links if --delete-after was specified.
4751                 
4752         * retr.c (retrieve_from_file): Just added a DEBUGP().
4753                 
4754 2000-10-19  Dan Harkless  <wget@harkless.org>
4755
4756         * ftp.c (ftp_loop_internal): downloaded_file() enumerators changed.
4757         (getftp): Applied Piotr Sulecki <Piotr.Sulecki@ios.krakow.pl>'s
4758         patch to work around FTP servers that incorrectly respond to the
4759         "REST" command with the remaining size rather than the total file size.
4760                 
4761         * http.c (gethttp): Improved a comment and added code to tack on
4762         ".html" to text/html files without that extension when -E specified.
4763         (http_loop): Use new downloaded_file() enumerators and deal with
4764         the case of gethttp() called xrealloc() on u->local.
4765
4766         * init.c (commands): Added new "htmlextension" command.
4767         Also renamed John Daily's cmd_quad() to the more descriptive
4768         cmd_lockable_boolean(), alpha-sorted the CMD_DECLARE()s and
4769         removed duplicate cmd_boolean() declaration.
4770
4771         * main.c (print_help): Added my new -E / --html-extension option.
4772         (main): Undocumented --email-address option previously used -E synonym.
4773         Stole it away for the much more deserving --html-extension's use.
4774
4775         * options.h (struct options): Added html_extension field.
4776
4777         * url.c (convert_links): URL X that we saved as X.html locally due
4778         to -E needs to be backed up as X.orig, not X.html.orig.  Added comments.
4779         (downloaded_file): Now remembers if we added .html extension to a file.
4780
4781         * url.h (downloaded_file_t): Added extra enumerators to support above.
4782         (downloaded_file): Now takes and returns a downloaded_file_t.
4783
4784         * wget.h (unnamed "dt" enum): Added ADDED_HTML_EXTENSION enumerator.
4785         
4786 2000-10-09  Dan Harkless  <wget@harkless.org>
4787
4788         * html.c (htmlfindurl): Added unneeded initialization to quiet warning.
4789                 
4790         * main.c (print_help): Clarified what --retr-symlinks does.
4791         
4792 2000-09-15  John Daily  <jdaily@cyberdude.com>
4793
4794         * init.c: Add support for "always" and "never" values to allow
4795         .wgetrc to override commandline (useful e.g. with .pm files
4796         calling `wget --passive-ftp' when your firewall doesn't allow that).
4797
4798         * ftp.c (getftp): passive_ftp is first option to support always/never.
4799
4800 2000-08-30  Dan Harkless  <wget@harkless.org>
4801
4802         * ftp.c (ftp_retrieve_list): Use new INFINITE_RECURSION #define.
4803         
4804         * html.c: htmlfindurl() now takes final `dash_p_leaf_HTML' parameter.
4805         Wrapped some > 80-column lines.  When -p is specified and we're at a 
4806         leaf node, do not traverse <A>, <AREA>, or <LINK> tags other than 
4807         <LINK REL="stylesheet">.
4808         
4809         * html.h (htmlfindurl): Now takes final `dash_p_leaf_HTML' parameter.
4810         
4811         * init.c: Added new -p / --page-requisites / page_requisites option.
4812
4813         * main.c (print_help): Clarified that -l inf and -l 0 both allow
4814         infinite recursion.  Changed the unhelpful --mirrior description
4815         to simply give the options it's equivalent to.  Added new -p option.
4816         (main): Added some comments; handle new -p / --page-requisites.
4817         
4818         * options.h (struct options): Added new page_requisites field.
4819
4820         * recur.c: Changed "URL-s" to "URLs" and "HTML-s" to "HTMLs".
4821         Calculate and pass down new `dash_p_leaf_HTML' parameter to
4822         get_urls_html().  Use new INFINITE_RECURSION #define.
4823
4824         * retr.c: Changed "URL-s" to "URLs".  get_urls_html() now takes
4825         final `dash_p_leaf_HTML' parameter.
4826
4827         * url.c: get_urls_html() and htmlfindurl() now take final
4828         `dash_p_leaf_HTML' parameter.
4829
4830         * url.h (get_urls_html): Now takes final `dash_p_leaf_HTML' parameter.
4831
4832         * wget.h: Added some comments and new INFINITE_RECURSION #define.
4833         
4834 2000-08-23  Dan Harkless  <wget@harkless.org>
4835
4836         * main.c (print_help): -B / --base was not mentioned.
4837
4838 2000-08-22  Dan Harkless  <wget@harkless.org>
4839
4840         * main.c (print_help): Modified -nc description to mention that it
4841         also prevents the creation of multiple versions of the same file
4842         with ".<number>" suffixes.
4843
4844 2000-07-14  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
4845
4846         * retr.c (retrieve_url): Consistently strdup opt.referer when
4847         setting u->referer.
4848
4849 2000-06-09  Dan Harkless  <wget@harkless.org>
4850
4851         * main.c (print_help): --help output for --waitretry was over 80 cols.
4852
4853 2000-06-09  Hrvoje Niksic  <hniksic@iskon.hr>
4854
4855         * url.c (encode_string): Fix comment.
4856         Suggested by Herold Heiko <Heiko.Herold@previnet.it>.
4857
4858 2000-06-01  Const Kaplinsky  <const@ce.cctpu.edu.ru>
4859
4860         * ftp.c (ftp_retrieve_list): Change permissions only on plain
4861         files.
4862
4863 2000-06-01  Hrvoje Niksic  <hniksic@iskon.hr>
4864
4865         * url.c (str_url): Print the port number only if it's different
4866         from the default port number for that protocol.
4867
4868 2000-05-22  Dan Harkless  <wget@harkless.org>
4869
4870         * main.c (print_help): Added --help line for Damir Dzeko
4871         <ddzeko@zesoi.fer.hr>'s until-now-undocumented --referer option.
4872         Removed comments that --referer and --waitretry were undocumented.
4873         Changed "`.wgetrc' command" to "`.wgetrc'-style command" on --help
4874         line for --execute.
4875
4876 2000-05-18  Hrvoje Niksic  <hniksic@iskon.hr>
4877
4878         * ftp.c (getftp): Ditto.
4879
4880         * http.c (gethttp): Check for return value of fclose/fflush.
4881
4882 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
4883
4884         * host.c (store_hostaddress): Instead of shifting ADDR, start
4885         copying from the correct address.
4886
4887 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
4888
4889         * http.c (gethttp): Don't free REQUEST -- it was allocated with
4890         alloca().
4891         Pointed out by Gisle Vanem <gvanem@eunet.no>.
4892
4893 2000-04-04  Dan Harkless  <wget@harkless.org>
4894
4895         * host.c (store_hostaddress): R. K. Owen's patch introduces a
4896         "left shift count >= width of type" warning on 32-bit
4897         architectures.  Got rid of it by tricking the compiler w/ a variable.
4898         
4899         * url.c (UNSAFE_CHAR): The macro didn't include all the illegal
4900         characters per RFC1738, namely everything above '~'.  It also
4901         generated a warning on OSes where char =~ unsigned char.  Fixed.
4902         
4903 1998-10-17  Hrvoje Niksic  <hniksic@srce.hr>
4904
4905         * http.c (http_process_type): Removed needless strdup(), a memory
4906         leak.
4907
4908 1998-09-25  Hrvoje Niksic  <hniksic@srce.hr>
4909
4910         * html.c (htmlfindurl): Set PH to the first occurrence of `#'.
4911
4912 1998-09-25  Simon Munton  <simonm@m4data.co.uk>
4913
4914         * init.c (wgetrc_file_name): Don't free HOME under Windows.
4915
4916 1998-12-01  "R. K. Owen"  <rkowen@Nersc.GOV>
4917
4918         * host.c (store_hostaddress): Fix for big endian 64-bit machines.
4919
4920 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
4921
4922         * url.c (UNSAFE_CHAR): New macro.
4923         (contains_unsafe): Use it.
4924         (encode_string): Ditto.
4925
4926 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
4927
4928         * main.c (i18n_initialize): Use LC_MESSAGES only if available.
4929
4930 2000-03-31  Hrvoje Niksic  <hniksic@srce.hr>
4931
4932         * Use TOUPPER/TOLOWER.
4933
4934 1998-12-22  Alexander V. Lukyanov  <lav@yars.free.net>
4935
4936         * ftp-opie.c (btoe): Zero-terminate OSTORE.
4937
4938 2000-03-21  Hrvoje Niksic  <hniksic@iskon.hr>
4939
4940         * wget.h (DO_REALLOC_FROM_ALLOCA): Ditto.
4941
4942         * sysdep.h (ISALNUM): New macro.
4943         (TOLOWER): Ditto.
4944         (TOUPPER): Ditto.
4945
4946 2000-03-10  Dan Harkless  <wget@harkless.org>
4947
4948         * html.c (idmatch): Implemented checking of my new --follow-tags
4949         and --ignore-tags options.
4950         
4951         * init.c (commands): Added comment reminding people adding new
4952         entries doing allocation to add corresponding freeing in cleanup().
4953         (commands): Added new followtags and ignoretags commands.
4954         (cleanup): Free storage for new followtags and ignoretags.
4955         
4956         * main.c: Use of "comma-separated list" was random -- normalized
4957         it.  Did some alphabetization.  Added comments pointing out
4958         "Options without arguments" and "Options accepting an argument"
4959         sections of long_options[].  Added new options --follow-tags and
4960         -G / --ignore-tags.  Added comment that Damir's --referer is
4961         currently undocumented.  Added comment that Heiko's --waitretry is
4962         partially undocumented (mentioned in --help but not in
4963         wget.texi).  Moved improperly sorted 24, 129, and 'G' cases.
4964         
4965         * options.h (struct options): Added new fields follow_tags and
4966         ignore_tags. 
4967         
4968         * wget.h: Added "#define EQ 0" so we can say "strcmp(a, b) == EQ".
4969         
4970 2000-03-02  Dan Harkless  <wget@harkless.org>
4971
4972         * ftp.c (ftp_loop_internal): Heiko introduced "suggest explicit
4973         braces to avoid ambiguous `else'" warnings.  Eliminated them.
4974         
4975         * http.c (gethttp): Dan Berger's query string patch is totally
4976         bogus.  If you have two different URLs, gen_page.cgi?page1 and
4977         get_page.cgi?page2, they'll both be saved as get_page.cgi and the
4978         second will overwrite the first.  Also, parameters to implicit
4979         CGIs, like "http://www.host.com/db/?2000-03-02" cause the URLs to
4980         be printed with trailing garbage characters, and could seg fault.
4981         Backing out the patch, which Dan B. informed me by email was just
4982         a kludge to download StarOffice from Sun made necessary due to
4983         wget's unconditional escaping of certain characters (room for an
4984         option there?).
4985         (http_loop): Heiko introduced "suggest explicit braces to avoid
4986         ambiguous `else'" warnings.  Eliminated them.
4987         
4988         * main.c: Heiko's --wait / --waitretry backwards compatibility
4989         code looks to have been totally untested -- automatic variable
4990         'wr' was used without being initialized, and a long int was passed
4991         into setval()'s char* val parameter.
4992         
4993         * recur.c (parse_robots): Applied Edward J. Sabol
4994         <sabol@alderaan.gsfc.nasa.gov>'s patch for Guan Yang's reported
4995         problem with "User-agent:<space>*<space>" lines in robots.txt.
4996         
4997         * url.c (parseurl, str_url): Removing Dan Berger's code (see
4998         http.c above for explanation).
4999         
5000 1999-08-25  Heiko Herold  <Heiko.Herold@previnet.it>
5001
5002         * ftp.c: Respect new option waitretry.
5003
5004 2000-01-30  Damir Dzeko  <ddzeko@zesoi.fer.hr>
5005
5006         * http.c (gethttp): Send custom Referer, if required.
5007
5008 1999-09-24  Charles G Waldman  <cgw@fnal.gov>
5009
5010         * netrc.c (parse_netrc): Allow passwords to contain spaces.
5011
5012         * netrc.c (parse_netrc): New function.
5013
5014 1999-09-17  Dan Berger  <dberger@ix.netcom.com>
5015
5016         * http.c (gethttp): Send it.
5017
5018         * url.c (parseurl): Detect query string in HTTP URL-s.
5019         (str_url): Print it.
5020
5021 2000-03-02  HIROSE Masaaki  <hirose31@t3.rim.or.jp>
5022
5023         * html.c (html_allow): Add <link href=...> and <script src=...>.
5024
5025 1999-05-02  andrew deryabin  <djsf@softhome.net>
5026
5027         * http.c (gethttp): Specify port in `Host' header only if it's
5028         different from 80.
5029
5030 1998-11-03  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
5031
5032         * recur.c (recursive_retrieve): If a finite maximum depth is
5033         specified, and we're are already at that depth, don't download the
5034         HTML file for parsing.
5035
5036 2000-03-01  Dan Harkless  <wget@harkless.org>
5037
5038         * ftp.c (ftp_loop_internal): Call new downloaded_file() function,
5039         even though we don't do conversion on HTML files retrieved via
5040         FTP, so _current_ usage of downloaded_file() makes this call unneeded. 
5041         (ftp_retrieve_list): Added a comment saying where we need to
5042         stat() a .orig file if FTP'd HTML file conversion is ever implemented.
5043         (ftp_retrieve_list): "Local file '%s' is more recent," is sometimes
5044         a lie -- reworded as "Server file no newer than local file '%s' --".
5045         
5046         * http.c (http_loop): Fixed a typo and clarified a comment.
5047         (http_loop): When -K and -N are specified together, compare size
5048         and timestamp of server file X against local file X.orig (if
5049         extant) rather than converted local file X.
5050         (http_loop): "Local file '%s' is more recent," is sometimes a lie
5051         -- reworded as "Server file no newer than local file '%s' --".
5052         (http_loop): Call new downloaded_file() function to prevent
5053         wrongful overwriting of .orig file when -N is specified.
5054         
5055         * url.c (convert_links): When -K specified, only rename X to
5056         X.orig if downloaded_file() returns TRUE.  Otherwise when we skip
5057         file X due to -N, we clobber an X.orig from a previous invocation.
5058         (convert_links): Call the failsafe xstrdup(), not the real strdup().
5059         (convert_links): Added a note asking anyone who understands how
5060         multiple URLs can correspond to a single file to comment it.
5061         (downloaded_file): Added this new function.
5062         
5063         * url.h (downloaded_file): Added prototype for this new function
5064         as well as its downloaded_file_t enum type.
5065
5066         * wget.h (boolean): Added this new typedef and TRUE and FALSE #defines.
5067
5068 2000-02-29  Dan Harkless  <wget@harkless.org>
5069
5070         * version.c: Upped version to developer-only "1.5.3+dev".
5071
5072 2000-02-18  Dan Harkless  <wget@harkless.org>
5073
5074         * init.c (backup_converted): Added this new option.
5075
5076         * main.c (-K / --backup-converted): Added this new option.
5077
5078         * options.h (backup_converted): Added this new option.
5079
5080         * url.c (convert_links): When backup_converted is specified, save
5081         file X as X.orig before converting.
5082
5083         * url.h (urlpos): Fixed typo -- said "Rekative" instead of "Relative".
5084
5085 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
5086
5087         * version.c: Wget 1.5.3 is released.
5088
5089 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
5090
5091         * host.c (ftp_getaddress): Don't warn when reverse-lookup of local 
5092         address doesn't yield FQDN.
5093
5094 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5095
5096         * cmpt.c (strerror): Fix declaration of sys_errlist.
5097
5098 1998-09-11  Hrvoje Niksic  <hniksic@srce.hr>
5099
5100         * main.c (main): Don't use an array subscript as the first
5101         argument to STRDUP_ALLOCA.
5102         From Kaveh R. Ghazi.
5103
5104 1998-09-11  Szakacsits Szabolcs  <szaka@sienet.hu>
5105
5106         * html.c (htmlfindurl): Download table background.
5107
5108 1998-09-11  Hans Grobler  <grobh@conde.ee.sun.ac.za>
5109
5110         * init.c (parse_line): Would free *com before allocating it.
5111         (parse_line): Would free com instead of *com.
5112
5113 1998-09-10  Howard Gayle  <howard@fjst.com>
5114
5115         * url.c (get_urls_html): Would drop the last character of the
5116         link.
5117
5118 1998-09-10  Hrvoje Niksic  <hniksic@srce.hr>
5119
5120         * http.c (http_loop): Don't print status code if quiet.
5121
5122 1998-09-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5123
5124         * log.c: Use <stdarg.h> only when __STDC__.
5125
5126 1998-09-10  Adam D. Moss  <adam@foxbox.org>
5127
5128         * html.c (htmlfindurl): Download <layer src=...>.
5129
5130 1998-09-10  Howard Gayle  <howard@fjst.com>
5131
5132         * ftp.c (ftp_retrieve_list): Don't update the time stamp of a file 
5133         not retrieved.
5134
5135 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
5136
5137         * utils.c: Include <libc.h> on NeXT.
5138
5139 1998-06-26  Heinz Salzmann  <heinz.salzmann@intermetall.de>
5140
5141         * url.c (get_urls_html): Fix calculation of URL position.
5142
5143 1998-06-23  Hrvoje Niksic  <hniksic@srce.hr>
5144
5145         * version.c: Wget 1.5.2 is released.
5146
5147 1998-06-23  Dave Love  <d.love@dl.ac.uk>
5148
5149         * ftp.c, init.c, netrc.c: Include errno.h.
5150
5151         * http.c: Include errno.h and time header.
5152
5153         * Makefile.in (exext): Define.
5154         (install.bin, uninstall.bin): Use it.
5155
5156 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
5157
5158         * http.c (http_loop): Don't attempt to compare local and remote
5159         sizes if the remote size is unknown.
5160
5161 1998-06-16  Hrvoje Niksic  <hniksic@srce.hr>
5162
5163         * url.c (get_urls_html): Use malloc() instead of alloca in the
5164         loop.
5165
5166 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
5167
5168         * version.c: Wget 1.5.2-b4 is released.
5169
5170 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
5171
5172         * url.c (get_urls_html): Ignore spaces before and after the URI.
5173
5174 1998-06-08  Wanderlei Antonio Cavassin  <cavassin@conectiva.com.br>
5175
5176         * ftp.c (getftp): Translate `done'.
5177
5178 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
5179
5180         * version.c: Wget 1.5.2-b3 is released.
5181
5182 1998-06-06  Alexander Kourakos  <awk@bnt.com>
5183
5184         * init.c (cleanup): Close dfp, don't free it.
5185
5186 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
5187
5188         * utils.c (make_directory): Twiddle.
5189
5190         * config.h.in: Added template for access().
5191
5192 1998-06-05  Mathieu Guillaume  <mat@cythere.com>
5193
5194         * html.c (htmlfindurl): Download <input src=...>
5195
5196 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
5197
5198         * utils.c (file_exists_p): Use access() with two arguments.
5199
5200 1998-05-27  Martin Kraemer  <Martin.Kraemer@mch.sni.de>
5201
5202         * netrc.c (parse_netrc): Correct logic.
5203
5204 1998-05-27  Hrvoje Niksic  <hniksic@srce.hr>
5205
5206         * ftp.c (getftp): Added `break'; suggested by Lin Zhe Min
5207         <ljm@ljm.wownet.net>.
5208
5209 1998-05-24  Hrvoje Niksic  <hniksic@srce.hr>
5210
5211         * version.c: Wget 1.5.2-b2 is released.
5212
5213 1998-05-18  Juan Jose Rodriguez  <jcnsoft@jal1.telmex.net.mx>
5214
5215         * mswindows.h: Don't translate mkdir to _mkdir under Borland.
5216
5217 1998-05-17  Hrvoje Niksic  <hniksic@srce.hr>
5218
5219         * retr.c (elapsed_time): Return correct value when
5220         HAVE_GETTIMEOFDAY is undefined.
5221
5222 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
5223
5224         * version.c: Wget 1.5.2-b1 is released.
5225
5226 1998-05-08  Hrvoje Niksic  <hniksic@srce.hr>
5227
5228         * getopt.c (_getopt_internal): Use exec_name instead of argv[0].
5229         (_getopt_internal): Don't translate `#if 0'-ed strings.
5230
5231 1998-05-06  Douglas E. Wegscheid  <wegscd@whirlpool.com>
5232
5233         * mswindows.c (ws_handler): Use fork_to_background().
5234
5235 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
5236
5237         * version.c: Wget 1.5.1 is released.
5238
5239 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
5240
5241         * http.c (parse_http_status_line): Avoid `minor' and `major'
5242         names.
5243
5244 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
5245
5246         * utils.c (mkdirhier): Renamed to make_directory.
5247
5248 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
5249
5250         * mswindows.c (fork_to_background): Define under Windows.
5251
5252         * utils.c (fork_to_background): New function.
5253
5254         * html.c (htmlfindurl): Removed rerdundant casts.
5255
5256 1998-05-01  Douglas E. Wegscheid  <wegscd@whirlpool.com>
5257
5258         * mswindows.c (ws_mypath): Cache the path.
5259
5260 1998-04-30  Douglas E. Wegscheid  <wegscd@whirlpool.com>
5261
5262         * ftp.h: Prefix enum ftype members with FT_.
5263
5264         * ftp-ls.c, ftp.c, html.h: Adjust accordingly.
5265
5266         * mswindows.h: Use stat under Borland, _stat under MSVC.
5267
5268 1998-04-28  Hrvoje Niksic  <hniksic@srce.hr>
5269
5270         * http.c (known_authentication_scheme_p): New function.
5271         (gethttp): Handle authorization more correctly.
5272
5273         * ftp-basic.h: Removed.
5274
5275         * cmpt.h: Removed.
5276
5277         * utils.c: Include <unistd.h> before <pwd.h>; needed under SunOS
5278         with gcc 2.8.
5279         (numdigit): Use `while' loop.
5280
5281         * http.c (create_authorization_line): Detect authentication
5282         schemes case-insensitively.
5283
5284         * http.c (extract_header_attr): Use strdupdelim().
5285         (digest_authentication_encode): Move declaration of local
5286         variables to smaller scope.
5287         (digest_authentication_encode): Reset REALM, OPAQUE and NONCE.
5288         (create_authorization_line): Detect authentication schemes
5289         case-insensitively.
5290
5291         * utils.c (touch): Constify.
5292
5293         * http.c (gethttp): Report a nicer error when no data is received.
5294
5295         * rbuf.h (RBUF_READCHAR): Ditto.
5296
5297         * ftp-basic.c (ftp_response): Use sizeof.
5298
5299 1998-04-27  Hrvoje Niksic  <hniksic@srce.hr>
5300
5301         * retr.c (print_percentage): EXPECTED is long, not int.
5302         (print_percentage): Use floating-point arithmetic to avoid
5303         overflow with large files' sizes multiplied with 100.
5304
5305 1998-04-27  Gregor Hoffleit  <flight@mathi.uni-heidelberg.de>
5306
5307         * config.h.in: Added pid_t stub.
5308
5309         * sysdep.h (S_ISREG): Moved here from mswindows.h (NeXT doesn't
5310         define it).
5311
5312 1998-04-20  Hrvoje Niksic  <hniksic@srce.hr>
5313
5314         * version.c: Wget 1.5.0 is released.
5315
5316 1998-04-18  Hrvoje Niksic  <hniksic@srce.hr>
5317
5318         * url.c (str_url): Ditto.
5319
5320         * ftp-basic.c (ftp_rest): Use new name.
5321
5322         * utils.c (long_to_string): Renamed from prnum().
5323
5324 1998-04-16  Hrvoje Niksic  <hniksic@srce.hr>
5325
5326         * version.c: Wget 1.5-b17 is released.
5327
5328 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
5329
5330         * headers.c (header_get): New argument FLAGS.
5331
5332         * http.c (gethttp): If request is malformed, bail out of the
5333         header loop.
5334         (gethttp): Check for empty header *after* the status line checks.
5335         (gethttp): Disallow continuations for status line.
5336
5337 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
5338
5339         * version.c: Wget 1.5-b16 is released.
5340
5341 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
5342
5343         * init.c (commands): Renamed `always_rest' to `continue'.
5344
5345 1998-04-05  Hrvoje Niksic  <hniksic@srce.hr>
5346
5347         * all: Use it.
5348
5349         * log.c (logputs): New argument.
5350         (logvprintf): Ditto.
5351         (logprintf): Ditto.
5352
5353 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
5354
5355         * http.c (http_atotm): Update comment.
5356
5357         * main.c (i18n_initialize): Set LC_MESSAGES, not LC_ALL.
5358
5359         * wget.h: Renamed ENABLED_NLS to HAVE_NLS.
5360
5361         * main.c (i18n_initialize): New function.
5362         (main): Use it.
5363
5364         * log.c: Include <unistd.h>.
5365
5366         * retr.c (show_progress): Cast alloca to char *.
5367
5368 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
5369
5370         * version.c: Wget 1.5-b15 is released.
5371
5372 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
5373
5374         * utils.h: Declare file_non_directory_p().
5375
5376 1998-04-03  Hrvoje Niksic  <hniksic@srce.hr>
5377
5378         * main.c (main): It's `tries', not `numtries' now.
5379
5380 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
5381
5382         * init.c (getperms): Removed.
5383
5384 1998-04-01  Tim Charron  <tcharron@interlog.com>
5385
5386         * log.c (logvprintf): Don't use ARGS twice.
5387
5388 1998-04-01  John  <john@futuresguide.com>
5389
5390         * mswindows.c: Cleaned up.
5391
5392 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
5393
5394         * version.c: Wget 1.5-b14 is released.
5395
5396 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
5397
5398         * ftp-opie.c (STRLEN4): New macro.
5399         (btoe): Use it.
5400
5401 1998-04-01  Junio Hamano  <junio@twinsun.com>
5402
5403         * http.c: Document all the Digest functions.
5404
5405 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
5406
5407         * utils.c (file_non_directory_p): Renamed from isfile().
5408
5409         * mswindows.h (S_ISREG): New macro, suggested by Tim Adam.
5410
5411 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
5412
5413         * utils.c (mkdirhier): Use 0777 instead of opt.dirmode.
5414
5415         * init.c (cmd_spec_dotstyle): Use 48 dots per line for binary
5416         style.
5417         (cmd_permissions): Removed.
5418
5419         * config.h.in: Add template for WORDS_BIGENDIAN.
5420
5421 1998-03-31  Junio Hamano  <junio@twinsun.com>
5422
5423         * http.c (HEXD2asc): New macro.
5424         (dump_hash): Use it.
5425
5426 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
5427
5428         * version.c: Wget 1.5-b13 is released.
5429
5430 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
5431
5432         * main.c (main): Don't try to use `com'.
5433
5434 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
5435
5436         * init.c (cmd_permissions): New function.
5437
5438 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
5439
5440         * version.c: Wget 1.5-b12 is released.
5441
5442 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
5443
5444         * init.c (commands): Renamed `numtries' to `tries'.
5445         (cmd_spec_debug): Removed.
5446         (home_dir): Under Windows, return `C:\' if HOME is undefined.
5447
5448 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
5449
5450         * config.h.in: Define _XOPEN_SOURCE.
5451
5452         * init.c (check_user_specified_header): New function.
5453         (cmd_spec_header): Use it.
5454         (cmd_spec_useragent): New function.
5455
5456 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
5457
5458         * version.c: Wget 1.5-b11 is released.
5459
5460 1998-03-28  Hrvoje Niksic  <hniksic@srce.hr>
5461
5462         * wget.h: Include <libintl.h> only if NLS is enabled.
5463
5464 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
5465
5466         * options.h (struct options): Made `wait' a long.
5467         (struct options): Ditto for `timeout'.
5468
5469 1998-03-19  Hrvoje Niksic  <hniksic@srce.hr>
5470
5471         * utils.c (exists): Renamed to file_exists_p.
5472         (file_exists_p): Use access() if available.
5473
5474 1998-03-17  Hrvoje Niksic  <hniksic@srce.hr>
5475
5476         * utils.c (memfatal): Set save_log_p to 0 to avoid potential
5477         infloop.
5478
5479         * log.c: do_logging -> save_log_p.
5480
5481         * config.h.in: Added template for HAVE_VSNPRINTF.
5482
5483 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
5484
5485         * init.c: Ditto.
5486
5487         * http.c: Protect declaration against non-ANSI compiler.
5488
5489         * log.c (logvprintf): Use vsnprintf() if available.
5490
5491         * getopt.c (main): Don't translate test stuff.
5492
5493 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
5494
5495         * version.c: Wget 1.5-b10 is released.
5496
5497 1998-03-11  Hrvoje Niksic  <hniksic@srce.hr>
5498
5499         * ftp.c (getftp): Don't translate "CWD %s".
5500
5501         * wget.h (GCC_FORMAT_ATTR): Renamed from FORMAT_ATTR.
5502
5503 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
5504
5505         * ftp-opie.c (btoe): Use memcpy() instead of strncat().
5506
5507         * log.c (logputs): New function.
5508         (logvprintf): Renamed from vlogmsg; use logputs().
5509
5510         * retr.c (show_progress): Print `[100%]' when the retrieval is
5511         finished.
5512
5513         * init.c (run_wgetrc): Use FILE, not PATH.
5514         (wgetrc_file_name): Ditto.
5515
5516 1998-03-07  Tim Adam  <tma@osa.com.au>
5517
5518         * recur.c (parse_robots): Correctly reset `entries' on empty
5519         disallow.
5520
5521 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
5522
5523         * init.c (cmd_spec_debug): Use cmd_boolean().
5524
5525 1998-02-23  Hrvoje Niksic  <hniksic@srce.hr>
5526
5527         * http.c (gethttp): Create proxy-authorization correctly.
5528
5529 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
5530
5531         * md5.c: Ditto.
5532
5533         * getopt.c: Use ANSI function definitions.
5534
5535         * ftp-opie.c: New file.
5536
5537         * options.h: Don't redefine EXTERN.
5538
5539         * init.c: Sort it correctly.
5540
5541 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
5542
5543         * version.c: Wget 1.5-b9 is released.
5544
5545 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
5546
5547         * recur.c (recursive_retrieve): Reset `first_time'.
5548
5549         * ftp.c (getftp): Added `default' clause to switches of uerr_t.
5550
5551         * rbuf.c (rbuf_peek): Simplified.
5552         (rbuf_flush): Use MINVAL.
5553
5554         * wget.h (MINVAL): Moved from url.h.
5555
5556         * rbuf.h (RBUF_FD): New macro.
5557
5558         * url.c (add_url): Add to the head of the list.
5559
5560         * ftp.c (ftp_retrieve_list): Set the permissions to downloaded
5561         file.
5562         (getftp): Set the default permissions to 0600.
5563
5564 1998-02-21  Hrvoje Niksic  <hniksic@srce.hr>
5565
5566         * url.c (get_urls_html): Ditto.
5567         (convert_links): Ditto.
5568
5569         * recur.c (parse_robots): Ditto.
5570
5571         * html.c (ftp_index): Ditto.
5572
5573         * ftp-ls.c (ftp_parse_unix_ls): Open file as binary.
5574
5575         * init.c (defaults): Initialize `opt' to zero via memset.
5576
5577         * http.c (digest_authentication_encode): goto considered harmful.
5578
5579 1998-02-19  Hrvoje Niksic  <hniksic@srce.hr>
5580
5581         * ftp.c (delelement): Simplify and fix leak.
5582
5583 1998-02-18  Hrvoje Niksic  <hniksic@srce.hr>
5584
5585         * http.c (dump_hash): Use HEXD2ASC instead of home-grown stuff.
5586
5587         * url.h (HEXD2ASC): Removed warning.
5588
5589         * init.c (comind): Use binary search.
5590         (commands): Reorganized.
5591         (setval): Ditto.
5592         (cmd_boolean): New function.
5593         (cmd_number): Ditto.
5594         (cmd_number_inf): Ditto.
5595         (cmd_string): Ditto.
5596         (cmd_vector): Ditto.
5597         (cmd_directory_vector): Ditto.
5598         (cmd_bytes): Ditto.
5599         (cmd_time): Ditto.
5600         (cmd_spec_debug): Ditto.
5601         (cmd_spec_dirmode): Ditto.
5602         (cmd_spec_dirstruct): Ditto.
5603         (cmd_spec_dotstyle): Ditto.
5604         (cmd_spec_header): Ditto.
5605         (cmd_spec_htmlify): Ditto.
5606         (cmd_spec_mirror): Ditto.
5607         (cmd_spec_outputdocument): Ditto.
5608         (cmd_spec_recursive): Ditto.
5609         (settime): Merged with cmd_time().
5610         (setbytes): Merged with cmd_bytes().
5611         (setonoff): Merged with cmd_boolean().
5612         (onoff): Ditto.
5613
5614 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
5615
5616         * Makefile.in (distclean): Remove `config.h'.
5617
5618 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
5619
5620         * version.c: Wget 1.5-b8 is released.
5621
5622 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
5623
5624         * http.c (digest_authentication_encode): New function.
5625         (create_authorization_line): Use it.
5626         (dump_hash): New function.
5627         (digest_authentication_encode): Use it.
5628
5629         * fnmatch.c: Renamed from `mtch.c'.
5630
5631 1998-02-15  Karl Eichwalder  <ke@suse.de>
5632
5633         * main.c (main): Tag "Written by..." string as translatable.
5634
5635 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
5636
5637         * wget.h (FREE_MAYBE): New macro.
5638
5639         * http.c (create_authorization_line): Don't use ANSI C string
5640         concatenation feature.
5641         (basic_authentication_encode): Use alloca() for temporary
5642         variables.
5643
5644         * recur.h: Ditto.
5645
5646         * http.c: Ditto.
5647
5648         * headers.h: Ditto.
5649
5650         * ftp-basic.c: Protect declaration against non-ANSI compiler.
5651
5652         * http.c (create_authorization_line): Cast `unsigned char *' to
5653         `char *' for sprintf, to shut up the noisy Digital Unix cc.
5654
5655 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
5656
5657         * version.c: Wget 1.5-b7 is released.
5658
5659 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
5660
5661         * cmpt.c (strstr): Synched with glibc-2.0.6.
5662
5663         * ftp-basic.c (calculate_skey_response): Ditto.
5664         (calculate_skey_response): Use alloca().
5665
5666         * http.c (create_authorization_line): Work with FSF's version of
5667         md5.c.
5668
5669         * md5.c: New file, from GNU libc.
5670
5671 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
5672
5673         * url.h (URL_CLEANSE): Name the temporary variable more carefully.
5674
5675 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
5676
5677         * http.c (basic_authentication_encode): New function, instead of
5678         the macro.
5679
5680 1998-02-13  Junio Hamano  <junio@twinsun.com>
5681
5682         * http.c: Add HTTP-DA support.
5683         * ftp-basic.c: Add Opie/S-key support.
5684         * config.h.in, Makefile.in: Add HTTP-DA and Opie/S-key support.
5685         * md5.c, md5.h: New files.
5686
5687 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
5688
5689         * http.c (http_process_range): Renamed from hprocrange().
5690         (http_process_range): Parse the whole header.
5691
5692         * headers.c: New file.
5693         (header_process): New function.
5694         (header_get): Renamed from fetch_next_header.
5695
5696         * all: Include utils.h only where necessary.
5697
5698         * wget.h: Declare xmalloc(), xrealloc() and xstrdup() here.
5699
5700         * wget.h: Add provisions for dmalloc.
5701
5702 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
5703
5704         * version.c: Wget 1.5-b6 is released.
5705
5706 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
5707
5708         * ftp.c (ftp_loop): Determine `filename' more precisely.
5709
5710         * init.c (setval): Don't set `opt.quiet' if output-document is
5711         `-'.
5712
5713         * log.c (log_init): Print to STDERR instead of STDOUT.
5714         (vlogmsg): Use STDERR by default.
5715         (logflush): Ditto.
5716
5717 1998-02-11  Simon Josefsson  <jas@pdc.kth.se>
5718
5719         * host.c: Use addr_in again.
5720
5721 1998-02-08  Karl Eichwalder  <karl@suse.de>
5722
5723         * http.c (gethttp): Fixed typo.
5724
5725 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
5726
5727         * version.c: Wget 1.5-b5 is released.
5728
5729 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
5730
5731         * retr.c (show_progress): Use it.
5732
5733         * log.c (logflush): New function.
5734
5735         * wget.h: Utilize __attribute__ if on gcc.
5736
5737 1998-02-07  Hrvoje Niksic  <hniksic@srce.hr>
5738
5739         * http.c (base64_encode_line): New argument LENGTH.
5740         (BASIC_AUTHENTICATION_ENCODE): Use it.
5741         (BASIC_AUTHENTICATION_ENCODE): Take length of HEADER into account.
5742
5743         * main.c (main): Fixed fprintf() format mismatch.
5744
5745 1998-02-06  Hrvoje Niksic  <hniksic@srce.hr>
5746
5747         * version.c: Wget 1.5-b4 is released.
5748
5749 1998-02-03  Simon Josefsson  <jas@pdc.kth.se>
5750
5751         * host.c: use sockaddr_in instead of addr_in.
5752
5753 1998-02-04  Hrvoje Niksic  <hniksic@srce.hr>
5754
5755         * init.c (cleanup): Use it.
5756
5757         * recur.c (recursive_cleanup): New function.
5758
5759         * retr.c (retrieve_from_file): Ditto.
5760
5761         * main.c (main): Use it.
5762
5763         * recur.c (recursive_reset): New function.
5764
5765         * retr.c (retrieve_from_file): Ditto.
5766
5767         * main.c (main): Simplify call to recursive_retrieve().
5768
5769         * recur.c (recursive_retrieve): Removed FLAGS argument.
5770
5771         * http.c (gethttp): Changed call to iwrite().
5772
5773 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
5774
5775         * url.c (get_urls_html): Ditto.
5776         (free_urlpos): Ditto.
5777         (mkstruct): Ditto.
5778         (construct): Ditto.
5779
5780         * retr.c (retrieve_url): Move declaration of local variables to
5781         smaller scope.
5782
5783         * url.c (urlproto): Use it.
5784         (parseurl): Ditto.
5785         (str_url): Ditto.
5786         (get_urls_html): Ditto.
5787
5788         * utils.h (ARRAY_SIZE): New macro.
5789
5790         * url.c (proto): Moved from url.h.
5791
5792         * url.h (URL_CLEANSE): Reformatted.
5793         (USE_PROXY_P): Renamed from USE_PROXY.
5794
5795         * ftp-basic.c: Adjust to the new interface of iwrite().
5796
5797         * ftp-basic.c (ftp_port): Use alloca().
5798
5799 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
5800
5801         * version.c: Wget 1.5-b3 is released.
5802
5803         * host.c (ftp_getaddress): Don't print to stderr directly.
5804
5805         * init.c (setbytes): Support `g' for gigabytes.
5806         (cmdtype): New specification CTIME.
5807         (setval): Use it with settime().
5808         (commands): Use it for WAIT and TIMEOUT.
5809
5810 1998-02-02  Hrvoje Niksic  <hniksic@srce.hr>
5811
5812         * http.c (BASIC_AUTHENTICATION_ENCODE): New macro.
5813         (gethttp): Use it.
5814
5815         * utils.c (unique_name_1): Moved from url.c.
5816         (unique_name): Ditto.
5817
5818         * url.c (url_filename): Ditto.
5819
5820         * log.c (redirect_output): Changed call to unique_name().
5821
5822         * url.c (unique_name_1): Renamed from unique_name().
5823         (unique_name): Changed interface.
5824
5825         * init.c (enum cmdid): Moved from init.h.
5826         (cmdtype): Ditto.
5827         (struct cmd): Ditto.
5828
5829         * main.c (main): Use it.
5830         (main): Moved `--backups' to not have a short option.
5831
5832         * options.h (struct options): New member BACKGROUND.
5833
5834         * main.c (print_help): Rearranged.
5835         (main): New long options for -n* short options: --no-directories,
5836         --no-host-directories, --non-verbose, --no-host-lookup and
5837         --dont-remove-listing.
5838
5839 1998-02-01  Hrvoje Niksic  <hniksic@srce.hr>
5840
5841         * main.c (main): Use log_close().
5842
5843         * log.c: New variable LOGFP.
5844         (vlogmsg): Use it.
5845         (redirect_output): Don't open /dev/null; set LOGFP to stdin
5846         instead.
5847         (log_close): New function.
5848
5849         * options.h (struct options): Removed LFILE.
5850
5851         * log.c (log_enable): Removed.
5852
5853         * main.c (main): Use it.
5854
5855         * log.c (log_init): New function.
5856
5857         * url.c (get_urls_html): Removed needless assignment to BASE.
5858
5859         * host.c (add_hlist): Don't set CMP needlessly.
5860
5861         * utils.c (match_backwards): Ditto.
5862         (in_acclist): Ditto.
5863
5864         * url.c (findurl): Ditto.
5865
5866         * netrc.c (parse_netrc): Ditto.
5867
5868         * log.c (log_dump): Ditto.
5869
5870         * html.c (html_quote_string): Ditto.
5871
5872         * ftp-basic.c (ftp_request): Made static.
5873
5874         * connect.c: Made global variables static.
5875
5876         * url.c (construct): Ditto.
5877
5878         * init.c (init_path): Avoid assignment inside `if'-condition.
5879
5880         * ftp.c: Don't include in.h or winsock.h.
5881
5882         * ftp.c (ftp_loop): Use SZ.
5883
5884         * connect.c (bindport): Cast &addrlen to int *.
5885         (conaddr): Ditto.
5886
5887         * init.c (initialize): Don't use SYSTEM_WGETRC unconditionally.
5888
5889 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
5890
5891         * ftp.c (getftp): Initialize opt.ftp_pass here.
5892         (ftp_retrieve_dirs): Use alloca().
5893
5894         * init.c (defaults): Don't initialize opt.ftp_pass.
5895
5896         * sysdep.h (S_ISLNK): Declare for OS/2; ditto for lstat.
5897         From Ivan F. Martinez <ivanfm@ecodigit.com.br>.
5898
5899 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
5900
5901         * recur.c (parse_robots): Check for comments more correctly.
5902
5903         * host.c (ftp_getaddress): Use STRDUP_ALLOCA.
5904         (ftp_getaddress): Add diagnostics when reverse-lookup yields only
5905         hostname.
5906
5907 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
5908
5909         * version.c: Wget 1.5-b2 is released.
5910
5911         * netrc.c (NETRC_FILE_NAME): Moved from netrc.h.
5912
5913         * utils.c (proclist): Pass FNM_PATHNAME to fnmatch().
5914
5915         * ftp-basic.c (ftp_pasv): Avoid unnecessary casting to unsigned
5916         char.
5917
5918         * log.c: Don't attempt to hide arguments from ansi2knr.
5919
5920         * cmpt.c: Synched strptime() and mktime() with glibc-2.0.6.
5921
5922         * ansi2knr.c: Use a later version, from fileutils-3.16l alpha.
5923
5924         * ftp.c (getftp): Ditto.
5925
5926         * http.c (gethttp): Use it.
5927
5928         * retr.c (get_contents): New argument EXPECTED; pass it to
5929         show_progress().
5930         (show_progress): New argument EXPECTED; use it to display
5931         percentages.
5932
5933         * init.c (setval): Ditto.
5934
5935         * http.c (gethttp): Ditto.
5936         (http_loop): Ditto.
5937
5938         * ftp.c (getftp): Ditto.
5939         (ftp_loop_internal): Ditto.
5940
5941         * ftp-ls.c (ftp_parse_unix_ls): Use abort() instead of assert(0).
5942
5943         * sysdep.h (CLOSE): Simplify; use DEBUGP.
5944
5945         * netrc.c (search_netrc): Use alloca().
5946
5947         * init.c (defaults): Initialize no_flush.
5948
5949         * log.c (vlogmsg): Don't flush if no_flush.
5950
5951         * options.h (struct options): New variable no_flush.
5952
5953         * main.c (main): Don't play games with buffering.
5954
5955         * log.c (vlogmsg): Flush the output after every message.
5956
5957 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
5958
5959         * init.c (parse_line): Ditto.
5960
5961         * url.c (get_urls_html): Ditto.
5962
5963         * main.c (main): Don't cast to unsigned char.
5964
5965         * init.c (run_wgetrc): Don't cast to unsigned char.
5966         (parse_line): Accept char instead of unsigned char.
5967
5968         * html.c (htmlfindurl): Use char instead of unsigned char.
5969
5970         * all: Use them.
5971
5972         * sysdep.h: Add wrappers to ctype macros to make them
5973         eight-bit-clean:
5974
5975 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
5976
5977         * html.c (htmlfindurl): Download <img lowsrc=...>
5978
5979         * main.c (main): Ignore SIGPIPE.
5980
5981         * connect.c (select_fd): New argument WRITEP.
5982         (iwrite): Call select_fd().
5983
5984 1997-02-27  Fila Kolodny <fila@ibi.com>
5985
5986         * ftp.c (ftp_retrieve_list): If retrieving symlink and the proper
5987         one already exists, just skip it.
5988
5989 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
5990
5991         * http.c (gethttp): Cosmetic changes.
5992
5993         * http.c (check_end): Allow `+D...' instead of `GMT'.
5994         From Fabrizio Pollastri <pollastri@cstv.to.cnr.it>.
5995
5996         * url.c (process_ftp_type): New function.
5997         (parseurl): Use it.
5998
5999         * connect.c (iwrite): Allow writing in a few chunks.
6000         (bindport): Made SRV static, so addr can point to it.
6001         (select_fd): Removed HPUX kludge.
6002
6003         * host.c (free_hlist): Incorporated into clean_hosts().
6004
6005 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
6006
6007         * host.c (hlist): Made static.
6008         (search_address): Cosmetic change.
6009
6010 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
6011
6012         * version.c: Wget v1.5-b1 is released.
6013
6014         * http.c (hgetlen): Use sizeof() to get the header length.
6015         (hgetrange): Ditto.
6016         (hgettype): Ditto.
6017         (hgetlocation): Ditto.
6018         (hgetmodified): Ditto.
6019         (haccepts_none): Ditto.
6020
6021         * main.c (main): Updated `--version' and `--help' output, as per
6022         Francois Pinard's suggestions.
6023
6024         * main.c: Include locale.h; call setlocale(), bindtextdomain() and 
6025         textdomain().
6026
6027         * config.h.in: Define stubs for I18N3.
6028
6029         * wget.h: Include libintl.h.
6030
6031 1998-01-28  Hrvoje Niksic  <hniksic@srce.hr>
6032
6033         * url.c (mkstruct): Check for opt.cut_dirs.
6034         (mkstruct): alloca()-te more, xmalloc() less.
6035
6036         * utils.c (load_file): Check for ferror().
6037
6038         * url.c (get_urls_file): Close only the files we opened.
6039         (get_urls_html): Ditto.
6040         (count_slashes): New function.
6041
6042         * http.h: Removed.
6043
6044         * http.c (gethttp): Respect username and password provided by
6045         proxy URL.
6046         (base64_encode_line): Write into an existing buffer instead of
6047         malloc-ing a new one.
6048         (struct http_stat): Moved from http.h
6049
6050         * retr.c (retrieve_url): Free SUF.
6051
6052         * all: Removed lots of unnecessary .h dependencies.
6053
6054         * html.c (global_state): Made static.
6055
6056         * utils.h (ALLOCA_ARRAY): New macro.
6057
6058         * main.c (main): New option `--cut-dirs'.
6059
6060         * url.c (construct): Use alloca() for T.
6061
6062         * utils.c (mkdirhier): Use STRDUP_ALLOCA.
6063
6064         * host.c (_host_t): Moved from host.h.
6065         (struct host): Renamed from _host_t.
6066         (store_hostaddress): Use STRDUP_ALLOCA for INET_S.
6067         (realhost): Ditto.
6068
6069         * host.h: Don't include url.h.
6070
6071         * ftp.c (LIST_FILENAME): Moved from ftp.h.
6072
6073         * init.c (DEFAULT_FTP_ACCT): Moved from ftp.h.
6074
6075         * main.c (main): Enable log if the output goes to a TTY.
6076
6077         * connect.h: Removed unused constant `BACKLOG'.
6078
6079         * config.h.in: Check for isatty().
6080
6081         * Makefile.in (LINK): Use CFLAGS when linking.
6082
6083 1998-01-27  Hrvoje Niksic  <hniksic@srce.hr>
6084
6085         * mswindows.c (ws_hangup): Use redirect_output().
6086
6087         * main.c (redirect_output_signal): New function; use
6088         redirect_output().
6089
6090         * log.c (redirect_output): New function, based on hangup(), which
6091         is deleted.
6092
6093         * log.c (vlogmsg): New function.
6094
6095         * wget.h (DEBUGP): Use debug_logmsg().
6096
6097         * main.c (hangup): Use it.
6098
6099         * log.c (log_dump): New function.
6100
6101         * utils.h (DO_REALLOC): Use `long' for various sizes.
6102
6103         * http.c (hskip_lws): Use `while', for clarity.
6104         (HTTP_DYNAMIC_LINE_BUFFER): New constant.
6105         (fetch_next_header): Use it instead of DYNAMIC_LINE_BUFFER.
6106
6107         * ftp-basic.c (FTP_DYNAMIC_LINE_BUFFER): New constant.
6108         (ftp_response): Use it instead of DYNAMIC_LINE_BUFFER.
6109
6110         * utils.c (DYNAMIC_LINE_BUFFER): Moved from utils.c.
6111         (LEGIBLE_SEPARATOR): Ditto.
6112         (FILE_BUFFER_SIZE): Ditto.
6113
6114         * retr.c (BUFFER_SIZE): Moved from retr.h.
6115
6116         * log.c: New file.
6117         (logmsg): Moved from utils.c.
6118         (debug_logmsg): New function.
6119
6120         * mswindows.h: Include it here.
6121
6122         * init.c: Ditto.
6123
6124         * utils.c: Don't include <windows.h>.
6125
6126 1998-01-25  Hrvoje Niksic  <hniksic@srce.hr>
6127
6128         * host.c (ftp_getaddress): Ditto.
6129
6130         * main.c (main): Use it.
6131
6132         * utils.h (STRDUP_ALLOCA): New macro.
6133
6134         * init.c: Prepend `wget: ' to error messages printed on stderr.
6135
6136         * utils.c (mkdirhier): Renamed from mymkdir.
6137         (touch): Renamed from my_touch.
6138         (pwd_cuserid): Renamed from my_cuserid().
6139
6140 1998-01-24  Andy Eskilsson  <andy.eskilsson@telelogic.se>
6141
6142         * utils.c (accdir): Process wildcards.
6143         (proclist): New function.
6144         (accdir): Use it to avoid code repetition.
6145
6146 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
6147
6148         * recur.c (parse_robots): Respect opt.useragent; use alloca().
6149
6150         * http.c (gethttp): Construct useragent accordingly.
6151
6152         * version.c: Changed version string to numbers-only.
6153
6154         * main.c (print_help): List all the options.
6155
6156         * mswindows.c (windows_main_junk): Initialize argv0 here.
6157
6158 1998-01-24  Karl Heuer  <kwzh@gnu.org>
6159
6160         * netrc.c (search_netrc): Initialize `l' only after processing
6161         netrc.
6162
6163         * main.c (main): Don't trap SIGHUP if it's being ignored.
6164
6165 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
6166
6167         * all: Use logmsg().
6168
6169         * utils.c (time_str): Moved from retr.c.
6170         (logmsg): New function.
6171         (logmsg_noflush): Ditto.
6172
6173         * rbuf.c: New file, moved buf_* functions here.
6174
6175         * ftp.c (ftp_expected_bytes): Moved from ftp-basic.c.
6176
6177         * ftp-basic.c (ftp_rest): Use prnum().
6178
6179         * ftp-basic.c: Ditto.
6180
6181         * ftp.c: Use the new reading functions and macros.
6182
6183         * retr.c (buf_initialize): New function.
6184         (buf_initialized_p): Ditto.
6185         (buf_uninitialize): Ditto.
6186         (buf_fd): Ditto.
6187
6188         * http.c (fetch_next_header): Use the BUF_READCHAR macro for
6189         efficiency.
6190         (gethttp): Use alloca() where appropriate.
6191
6192         * retr.c (buf_readchar): Use it.
6193         (buf_peek): Use rstreams.
6194
6195         * retr.h (BUF_READCHAR): New macro.
6196
6197         * init.c (home_dir): Rewritten for clarity.
6198         (init_path): Ditto.
6199
6200         * mswindows.c (ws_backgnd): Made static.
6201         (read_registry): Ditto.
6202         (ws_cleanup): Ditto.
6203         (ws_handler): Ditto.
6204
6205 1998-01-23  Hrvoje Niksic  <hniksic@srce.hr>
6206
6207         * alloca.c: New file.
6208
6209         * Makefile.in (ALLOCA): Define.
6210
6211         * mswindows.c (ws_help): Constify.
6212         (ws_help): Use alloca.
6213
6214         * mswindows.c: Reformat.
6215
6216         * all: Added _(...) annotations for I18N snarfing and translation.
6217
6218         * host.c (ftp_getaddress): Nuke SYSINFO.
6219         (ftp_getaddress): Don't use getdomainname().
6220         (ftp_getaddress): Use uname(), where available.
6221
6222         * http.c (gethttp): Protect a stray fprintf().
6223
6224         * init.c (settime): New function.
6225         (setval): Treat WAIT specially, allowing suffixes like `m' for
6226         minutes, etc.
6227
6228 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
6229
6230         * url.c (get_urls_html): Use alloca() for TEMP.
6231
6232 1998-01-21  Jordan Mendelson  <jordy@wserv.com>
6233
6234         * url.c (rotate_backups): New function.
6235
6236         * http.c (gethttp): Ditto.
6237
6238         * ftp.c (getftp): Rotate backups.
6239
6240 1997-12-18  Hrvoje Niksic  <hniksic@srce.hr>
6241
6242         * all: Renamed nmalloc(), nrealloc() and nstrdup() to xmalloc(),
6243         xrealloc() and xstrdup().  Use the new functions.
6244
6245         * url.c (decode_string): Made static.
6246         (has_proto): Ditto.
6247         (parse_dir): Ditto.
6248         (parse_uname): Ditto.
6249         (mkstruct): Ditto.
6250         (construct): Ditto.
6251         (construct_relative): Ditto.
6252
6253         * retr.c (show_progress): Made static.
6254
6255         * recur.c (robots_url): Made static.
6256         (retrieve_robots): Ditto.
6257         (parse_robots): Ditto.
6258         (robots_match): Ditto.
6259
6260         * main.h: Removed.
6261
6262         * main.c (printhelp): Made static.
6263         (hangup): Ditto.
6264
6265         * init.c (comind): Made static.
6266         (defaults): Ditto.
6267         (init_path): Ditto.
6268         (run_wgetrc): Ditto.
6269         (onoff): Ditto.
6270         (setonoff): Ditto.
6271         (setnum): Ditto.
6272         (myatoi): Ditto.
6273         (getperms): Ditto.
6274         (setbytes): Ditto.
6275
6276         * http.c (fetch_next_header): Made static.
6277         (hparsestatline): Ditto.
6278         (hskip_lws): Ditto.
6279         (hgetlen): Ditto.
6280         (hgetrange): Ditto.
6281         (hgettype): Ditto.
6282         (hgetlocation): Ditto.
6283         (hgetmodified): Ditto.
6284         (haccepts_none): Ditto.
6285         (gethttp): Ditto.
6286         (base64_encode_line): Ditto.
6287         (mktime_from_utc): Ditto.
6288         (http_atotm): Ditto.
6289
6290         * html.c (idmatch): Made static.
6291
6292         * host.c (search_host): Made static.
6293         (search_address): Ditto.
6294         (free_hlist): Ditto.
6295
6296         * ftp.c (getftp): Made static.
6297         (ftp_loop_internal): Ditto.
6298         (ftp_get_listing): Ditto.
6299         (ftp_retrieve_list): Ditto.
6300         (ftp_retrieve_dirs): Ditto.
6301         (ftp_retrieve_glob): Ditto.
6302         (freefileinfo): Ditto.
6303         (delelement): Ditto.
6304
6305         * ftp-ls.c (symperms): Made static.
6306         (ftp_parse_unix_ls): Ditto.
6307
6308         * connect.c (select_fd): Made static.
6309
6310         * utils.c (xmalloc): Renamed from nmalloc.
6311         (xrealloc): Renamed from nrealloc.
6312         (xstrdup): Renamed from nstrdup.
6313
6314         * getopt.c (exchange): Use alloca.
6315
6316         * mswindows.c (mycuserid): Use strncpy.
6317
6318         * New files mswindows.c, mswindows.h, sysdep.h.  winjunk.c,
6319         systhings.h, windecl.h and winjunk.h removed.
6320
6321         * mswindows.c (sleep): New function.
6322
6323         * utils.c: Include <windows.h> under Windows.
6324
6325 1997-06-12  Darko Budor  <dbudor@zesoi.fer.hr>
6326
6327         * url.h (URL_UNSAFE): Change default under Windows.
6328
6329         * retr.c (retrieve_from_file): Respect opt.delete_after.
6330
6331         * main.c (main): Call ws_help on Windows.
6332
6333         * winjunk.c (windows_main_junk): New function.
6334
6335         * main.c (main): Junk-process argv[0].
6336
6337         * http.c (mktime_from_utc): Return -1 if mktime failed.
6338
6339         * http.c (http_loop): Ditto.
6340
6341         * ftp.c (ftp_loop_internal): Change title on Windows when using a
6342         new URL.
6343
6344         * winjunk.c (getdomainname): Lots of functions.
6345
6346 1997-06-12  Hrvoje Niksic  <hniksic@srce.hr>
6347
6348         * cmpt.c (strptime_internal): Handle years more correctly for
6349         `%y'.
6350
6351 1997-06-09  Mike Thomas <mthomas@reality.ctron.com>
6352
6353         * http.c (gethttp): Allocate enough space for
6354         `Proxy-Authorization' header.
6355
6356 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
6357
6358         * version.c: Wget/1.4.5 is released.
6359
6360 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
6361
6362         * retr.c (get_contents): Check return value of fwrite more
6363         carefully.
6364
6365 1997-03-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6366
6367         * cmpt.c (strptime_internal) [case 'Y']: Always subtract 1900 from
6368         year, regardless of century.
6369
6370 1997-03-30  Hrvoje Niksic  <hniksic@srce.hr>
6371
6372         * utils.c (isfile): Use `lstat' instead of `stat'.
6373
6374 1997-03-29  Hrvoje Niksic  <hniksic@srce.hr>
6375
6376         * utils.c (numdigit): Use explicit test.
6377
6378 1997-03-21  Hrvoje Niksic  <hniksic@srce.hr>
6379
6380         * http.c (http_loop): Always use `url_filename' to get u->local.
6381
6382 1997-03-20  Hrvoje Niksic  <hniksic@srce.hr>
6383
6384         * url.c: Recognize https.
6385
6386 1997-03-13  Hrvoje Niksic  <hniksic@srce.hr>
6387
6388         * recur.c (recursive_retrieve): Lowercase just the host name.
6389
6390 1997-03-09  Hrvoje Niksic  <hniksic@srce.hr>
6391
6392         * url.c (get_urls_file): Use the correct test.
6393         (get_urls_html): Ditto.
6394
6395 1997-03-07  Hrvoje Niksic  <hniksic@srce.hr>
6396
6397         * connect.c: Reverted addrlen to int.
6398
6399         * init.c (parse_line): Check for -1 instead of NONE.
6400
6401         * version.c: Changed version to 1.4.5.
6402
6403 1997-02-17  Hrvoje Niksic  <hniksic@srce.hr>
6404
6405         * init.c: New option netrc.
6406         (initialize): Don't parse .netrc.
6407
6408         * cmpt.c (recursive): Return rp.
6409         (strptime_internal): Match the long strings first, the abbreviated
6410         second.
6411
6412 1997-02-16  Hrvoje Niksic  <hniksic@srce.hr>
6413
6414         * http.c (check_end): New function.
6415         (http_atotm): Use it.
6416  
6417 1997-02-13  gilles Cedoc  <gilles@cedocar.fr>
6418
6419         * http.c (gethttp): Use them.
6420
6421         * init.c: New options proxy_user and proxy_passwd.
6422
6423 1997-02-14  Hrvoje Niksic  <hniksic@srce.hr>
6424
6425         * ftp.c (ftp_retrieve_list): Create links even if not relative.
6426
6427 1997-02-10  Hrvoje Niksic  <hniksic@srce.hr>
6428
6429         * recur.c (recursive_retrieve): Lowercase the host name, if the
6430         URL is not "optimized".
6431
6432         * host.c (realhost): Return l->hostname, even if it matches with
6433         host.
6434
6435 1997-02-10  Marin Purgar  <pmc@asgard.hr>
6436
6437         * connect.c: Make addrlen size_t instead of int.
6438         (conaddr): Ditto.
6439
6440 1997-02-09  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
6441
6442         * systhings.h: Define S_ISLNK on NeXT too.
6443
6444 1997-02-09  Hrvoje Niksic  <hniksic@srce.hr>
6445
6446         * version.c: Released 1.4.3.
6447
6448         * url.c: Futher update to list of protostrings.
6449         (skip_proto): Skip `//' correctly for FTP and HTTP.
6450
6451         * url.c (get_urls_html): Handle bogus `http:' things a little
6452         different.
6453
6454         * main.c (main): Removed `follow-ftp' from `f'.
6455         (main): Dumped the `prefix-files' and `file-prefix' options and
6456         features; old and bogus.
6457         (main): Exit on failed setval() in `-e'.
6458
6459         * http.c (fetch_next_header): Use it to detect header continuation
6460         correctly.
6461
6462         * retr.c (buf_peek): New function.
6463
6464 1997-02-08  Hrvoje Niksic  <hniksic@srce.hr>
6465
6466         * wget.h: Include time.h and stuff.
6467
6468 1997-02-08  Roger Beeman  <beeman@cisco.com>
6469
6470         * ftp.c: Include <time.h>
6471
6472 1997-02-07  Hrvoje Niksic  <hniksic@srce.hr>
6473
6474         * url.c (findurl): Would read over buffer limits.
6475
6476 1997-02-06  Hrvoje Niksic  <hniksic@srce.hr>
6477
6478         * ftp-ls.c (ftp_parse_unix_ls): Allow spaces in file names.
6479
6480 1997-02-05  Hrvoje Niksic  <hniksic@srce.hr>
6481
6482         * http.c (http_atotm): Initialize tm.is_dst.
6483
6484 1997-02-02  Hrvoje Niksic  <hniksic@srce.hr>
6485
6486         * http.c (gethttp): Don't print the number of retrieved headers.
6487
6488         * main.c (main): New option `--no-clobber', alias for `-nc'.
6489
6490         * url.c: Recognize `https://'.
6491
6492 1997-02-01  Hrvoje Niksic  <hniksic@srce.hr>
6493
6494         * host.c (herrmsg): Don't use h_errno.
6495
6496 1997-01-30  Hrvoje Niksic  <hniksic@srce.hr>
6497
6498         * host.c (accept_domain): Use it.
6499
6500         * main.c (main): New option `--exclude-domains'.
6501
6502         * retr.c (retrieve_url): Use it.
6503         (retrieve_url): Bail out when an URL is redirecting to itself.
6504
6505         * url.c (url_equal): New function.
6506
6507 1997-01-29  Hrvoje Niksic  <hniksic@srce.hr>
6508
6509         * connect.c: Include arpa/inet.h instead of arpa/nameser.h.
6510
6511         * http.c (mk_utc_time): New function.
6512         (http_atotm): Use it; handle time zones correctly.
6513
6514 1997-01-28  Hrvoje Niksic  <hniksic@srce.hr>
6515
6516         * http.c: Ditto.
6517
6518         * ftp-basic.c: Use it instead of WRITE.
6519
6520         * connect.c (iwrite): New function.
6521
6522 1997-01-27  Hrvoje Niksic  <hniksic@srce.hr>
6523
6524         * cmpt.c (mktime): New function.
6525
6526         * netrc.c: Include <sys/types.h>.
6527
6528         * main.c (main): Wouldn't recognize --spider.
6529
6530         * retr.c (rate): Use `B', `KB' and `MB'.
6531         (reset_timer,elapsed_time): Moved from utils.c.
6532
6533         * ftp.c (ftp_retrieve_list): Ditto.
6534
6535         * http.c (http_loop): Don't touch the file if opt.dfp.
6536
6537 1997-01-24  Hrvoje Niksic  <hniksic@srce.hr>
6538
6539         * cmpt.c: New file.
6540
6541         * ftp.c (ftp_retrieve_glob): New argument semantics.
6542         (ftp_retrieve_dirs): Use it.
6543         (ftp_loop): Ditto.
6544
6545         * html.c (htmlfindurl): Recognize `'' as the quote char.
6546
6547 1997-01-23  Hrvoje Niksic  <hniksic@srce.hr>
6548
6549         * ftp.c (ftp_loop_internal): Use it.
6550
6551         * utils.c (remove_link): New function.
6552
6553 1997-01-22  Hrvoje Niksic  <hniksic@srce.hr>
6554
6555         * retr.c (retrieve_url): Require STRICT redirection URL.
6556
6557         * url.c (parseurl): New argument STRICT.
6558
6559         * http.c (hparsestatline): Be a little-bit less strict about
6560         status line format.
6561
6562 1997-01-21  Hrvoje Niksic  <hniksic@srce.hr>
6563
6564         * http.c (gethttp): Use it.
6565
6566         * main.c (main): Don't use '<digit>' as options.
6567
6568         * init.c: New option ignore_length.
6569
6570         * http.c (gethttp): Ditto.
6571         (http_loop): Check for redirection without Location:.
6572         (gethttp): Don't print Length unless RETROKF.
6573
6574         * ftp.c (getftp): Use it.
6575
6576         * url.c (mkalldirs): New function.
6577
6578         * utils.c (mymkdir): Don't check for existing non-directory.
6579
6580         * url.c (mkstruct): Don't create the directory.
6581
6582 1997-01-20  Hrvoje Niksic  <hniksic@srce.hr>
6583
6584         * init.c (setval): Removed NO_RECURSION checks.
6585
6586 1997-01-19  Hrvoje Niksic  <hniksic@srce.hr>
6587
6588         * version.c: "Released" 1.4.3-pre2.
6589
6590         * recur.c (recursive_retrieve): Bypass host checking only if URL
6591         is ftp AND parent URL is not ftp.
6592
6593         * ftp-basic.c (ftp_request): Print out Turtle Power.
6594
6595         * ftp.c (ftp_loop): Call ftp_retrieve_glob with 0 if there's no
6596         wildcard.
6597         (ftp_retrieve_glob): Call ftp_loop_internal even on empty list, if
6598         not glob.
6599
6600         * http.c (gethttp): Be a little bit smarter about status codes.
6601
6602         * recur.c (recursive_retrieve): Always reset opt.recursive when
6603         dealing with FTP.
6604
6605 1997-01-18  Hrvoje Niksic  <hniksic@srce.hr>
6606
6607         * retr.c (retrieve_url): New variable location_changed; use it for
6608         tests instead of mynewloc.
6609         (retrieve_url): Allow heuristic adding of html.
6610
6611         * url.c (url_filename): Don't use the `%' in Windows file names.
6612
6613         * http.c (http_loop): Always time-stamp the local file.
6614
6615         * http.c (http_loop): Ditto.
6616
6617         * ftp.c (ftp_retrieve_list): Use it.
6618
6619         * utils.c (my_touch): New function.
6620
6621         * ftp.c (ftp_retrieve_list): Use #ifdef HAVE_STRUCT_UTIMBUF
6622         instead of #ifndef NeXT.
6623
6624         * utils.c (strptime): New version, by Ulrich Drepper.
6625
6626 1997-01-17  Hrvoje Niksic  <hniksic@srce.hr>
6627
6628         * http.c (haccepts_none): Renamed from `haccepts_bytes'.
6629         (gethttp): If haccepts_none(), disable ACCEPTRANGES.
6630         (http_loop): Would remove ACCEPTRANGES.
6631
6632         * ftp.c (getftp): Call ftp_list with NULL.
6633
6634 1997-01-15  Hrvoje Niksic  <hniksic@srce.hr>
6635
6636         * html.c (ftp_index): Don't print minutes and seconds if we don't
6637         know them; beautify the output.
6638
6639         * ftp.c (getftp): Don't close the socket on FTPNSFOD.
6640
6641 1997-01-14  Hrvoje Niksic  <hniksic@srce.hr>
6642
6643         * utils.c (strptime): New function.
6644         (strptime): Don't use get_alt_number.
6645         (strptime): Don't use locale.
6646         (match_string): Made it a function.
6647
6648 1997-01-12  Hrvoje Niksic  <hniksic@srce.hr>
6649
6650         * http.c (http_atotm): New function.
6651         (http_loop): Use it.
6652
6653         * atotm.c: Removed from the distribution.
6654
6655         * http.c (base64_encode_line): Rewrite.
6656
6657 1997-01-09  Hrvoje Niksic  <hniksic@srce.hr>
6658
6659         * ftp.c (getftp): Use ftp_expected_bytes; print size.
6660
6661         * ftp-basic.c (ftp_response): Use ftp_last_respline.
6662         (ftp_expected_bytes): New function.
6663
6664         * ftp.c (getftp): Print the unauthoritative file length.
6665
6666         * ftp-ls.c: Renamed from ftp-unix.c.
6667         (ftp_parse_ls): Moved from ftp.c.
6668         (ftp_parse_unix_ls): Recognize seconds in time spec.
6669         (ftp_parse_unix_ls): Recognize year-less dates of the previous
6670         year.
6671
6672 1997-01-08  Hrvoje Niksic  <hniksic@srce.hr>
6673
6674         * ftp-basic.c: Don't declare errno if #defined.
6675
6676         * host.c (ftp_getaddress): Check for sysinfo legally.
6677
6678 1997-01-08  Darko Budor  <dbudor@diana.zems.fer.hr>
6679
6680         * connect.c (iread): Use READ.
6681
6682 1996-12-23  Hrvoje Niksic  <hniksic@srce.hr>
6683
6684         * url.c: Recognize finger, rlogin, tn3270, mid and cid as valid
6685         schemes.
6686
6687 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
6688
6689         * host.c (ftp_getaddress): Allow `.' in hostname.
6690
6691 1996-12-26  Darko Budor <dbudor@zems.fer.hr>
6692
6693         * wget.h: READ and WRITE macros for use instead of read and write
6694         on sockets, grep READ *.c, grep WRITE *.c
6695
6696         * wsstartup.c: new file - startup for winsock
6697
6698         * wsstartup.h: new file
6699
6700         * win32decl.h: new file - fixup for <errno.h> and winsock trouble
6701
6702         * configure.bat: Configure utility for MSVC
6703
6704         * src/Makefile.ms,config.h.ms: new files for use with MSVC 4.x
6705
6706 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
6707
6708         * version.c: Released 1.4.3-pre.
6709
6710         * utils.c (prnum): Accept long.
6711         (legible): Use prnum().
6712
6713         * connect.c (make_connection): Accept port as short.
6714         (bindport): Ditto.
6715
6716         * http.c (gethttp): Use search_netrc.
6717
6718 1996-12-21  Hrvoje Niksic  <hniksic@srce.hr>
6719
6720         * ftp.c (getftp): Use search_netrc.
6721
6722         * netrc.c (free_netrc): New function.
6723
6724         * init.c (home_dir): New function.
6725
6726         * url.c (convert_links): Allow REL2ABS changes.
6727
6728 1996-12-21  Gordon Matzigkeit  <gord@gnu.ai.mit.edu>
6729
6730         * netrc.c: New file.
6731         (parse_netrc, maybe_add_to_list): New functions.
6732
6733 1996-12-17  Hrvoje Niksic  <hniksic@srce.hr>
6734
6735         * retr.c (retrieve_url): Reset opt.recursion before calling
6736         ftp_loop if it is reached through newloc.
6737
6738         * init.c (run_wgetrc): Print the wgetrc path too, when reporting
6739         error; don't use "Syntax error", since we don't know if it is
6740         really a syntax error.
6741
6742 1996-12-16  Hrvoje Niksic  <hniksic@srce.hr>
6743
6744         * utils.c (acceptable): Extract the filename part of the path.
6745
6746         * recur.c (recursive_retrieve): Call acceptable() with the right
6747         argument; would bug out on wildcards.
6748
6749         * init.c (parse_line): Likewise.
6750
6751         * html.c (htmlfindurl): Cast to char * when calling stuff.
6752
6753 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
6754
6755         * ftp.c (getftp): Use ftp_pasv.
6756
6757         * ftp-basic.c (ftp_request): Accept NULL value.
6758         (ftp_pasv): New function.
6759
6760         * options.h (struct options): Add passive FTP option.
6761
6762 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
6763
6764         * url.c (parseurl): Debug output.
6765
6766         * utils.c (path_simplify): New one, adapted from bash's
6767         canonicalize_pathname().
6768
6769 1996-12-14  Hrvoje Niksic  <hniksic@srce.hr>
6770
6771         * ftp.c (getftp): Don't discard the buffer.
6772
6773         * retr.c (get_contents): New parameter nobuf.
6774
6775 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
6776
6777         * html.c (htmlfindurl): Recognize <meta contents="d; URL=...".
6778
6779         * init.c (setval): Strip the trailing slashes on CVECDIR.
6780
6781 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
6782
6783         * init.c: Make excludes and includes under CVECDIR instead of
6784         CVEC.
6785
6786 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
6787
6788         * url.c (get_urls_html): Skip "http:".
6789
6790 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
6791
6792         * utils.c (strcasecmp): From glibc.
6793         (strncasecmp): Also.
6794         (strstr): Also.
6795
6796         * url.c: Added javascript: to the list of URLs prefixes.
6797
6798 1996-12-12  Shawn McHorse  <riffraff@txdirect.net>
6799
6800         * recur.c (retrieve_robots): Print the warning message only if
6801         verbose.
6802
6803 1996-12-12  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
6804
6805         * ftp.c (ftp_retrieve_list): Use NeXT old utime interface.
6806
6807 1996-12-12  Hrvoje Niksic  <hniksic@srce.hr>
6808
6809         * systhings.h: New file.
6810
6811         * ../configure.in: Check for utime.h
6812
6813         * ftp.c: Check whether we have unistd.h.
6814
6815 1996-11-27  Hrvoje Niksic  <hniksic@srce.hr>
6816
6817         * recur.c (recursive_retrieve): Send the canonical URL as referer.
6818         (recursive_retrieve): Call get_urls_html with the canonical URL.
6819
6820 1996-12-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6821
6822         * (configure.in, config.h.in, src/Makefile.in, src/*.[ch]): Add
6823         ansi2knr support for compilers which don't support ANSI style
6824         function prototypes and signatures.
6825
6826         * (aclocal.m4, src/ansi2knr.c, src/ansi2knr.1): New files.
6827
6828 1996-11-26  Hrvoje Niksic  <hniksic@srce.hr>
6829
6830         * url.c: Use it; Recognize paths ending with "." and ".." as
6831         directories.
6832         (url_filename): Append .n whenever file exists and could be a
6833         directory.
6834
6835         * url.h (ISDDOT): New macro.
6836
6837         * init.c (parse_line): Use unsigned char.
6838
6839         * url.c (get_urls_html): Cast to unsigned char * when calling
6840         htmlfindurl.
6841
6842         * html.c (htmlfindurl): Use unsigned char.
6843
6844         * version.c: Changed version to 1.4.3.
6845
6846 1996-11-25  Hrvoje Niksic  <hniksic@srce.hr>
6847
6848         * version.c: Released 1.4.2.
6849
6850         * ftp.c (getftp): Simplified assertion.
6851         (ftp_loop_internal): Remove symlink before downloading.
6852         (ftp_retrieve_list): Unlink the symlink name before attempting to
6853         create a symlink!
6854
6855         * options.h (struct options): Renamed print_server_response to
6856         server_response.
6857
6858         * ftp.c (rel_constr): Removed.
6859         (ftp_retrieve_list): Don't use it.
6860         (ftp_retrieve_list): Use opt.retr_symlinks.
6861
6862 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
6863
6864         * main.c (main): New option retr_symlinks.
6865
6866         * url.c (convert_links): Print verbose message.
6867
6868 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
6869
6870         * http.c (http_loop): Reset newloc in the beginning of function;
6871         would cause FMR in retrieve_url.
6872
6873 1996-11-23  Hrvoje Niksic  <hniksic@srce.hr>
6874
6875         * recur.c (convert_all_links): Find the URL of each HTML document,
6876         and feed it to get_urls_html; would bug out.
6877         (convert_all_links): Check for l2 instead of dl; removed dl.
6878
6879         * url.c (convert_links): Don't refer to freed newname.
6880
6881         * recur.c (recursive_retrieve): Add this_url to urls_downloaded.
6882
6883         * main.c (main): Print the OS_TYPE in the debug output, too.
6884
6885         * recur.c (recursive_retrieve): Check for opt.delete_after.
6886
6887         * main.c (main): New option delete-after.
6888
6889         * init.c (setval): Cleaned up.
6890
6891 1996-11-21  Hrvoje Niksic  <hniksic@srce.hr>
6892
6893         * Makefile.in (wget): Make `wget' the default target.
6894
6895         * ftp.c (ftp_loop_internal): Move noclobber checking out of the
6896         loop.
6897         (ftp_retrieve_list): Warn about non-matching sizes.
6898
6899         * http.c (http_loop): Made -nc non-dependent on opt.recursive.
6900
6901         * init.c (setnum): Renamed from setnuminf; New argument flags.
6902         (setval): Use it.
6903
6904         * main.c (main): Sorted the options.
6905         (main): New option --wait.
6906
6907 1996-11-21  Shawn McHorse  <riffraff@txdirect.net>
6908
6909         * html.c (htmlfindurl): Reset s->in_quote after getting out of
6910         quotes.
6911
6912 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
6913
6914         * version.c: Changed version to 1.4.2.
6915
6916 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
6917
6918         * version.c: Released 1.4.1.
6919
6920         * html.c (html_quote_string): New function.
6921         (ftp_index): Use it.
6922         (htmlfindurl): A more gentle ending debug message.
6923
6924         * ftp.c (ftp_loop): Check for opt.htmlify.
6925
6926         * init.c: New command htmlify.
6927
6928         * ftp.c (getftp): Nicer error messages, with `'-encapsulated
6929         strings.
6930         (ftp_loop): Print size of index.html.
6931
6932         * init.c (setval): Implement "styles".
6933
6934         * main.c (main): New option dotstyle.
6935
6936 1996-11-19  Hrvoje Niksic  <hniksic@srce.hr>
6937
6938         * ftp.c (getftp): Close the master socket in case of errors, after
6939         bindport().
6940
6941         * connect.c (bindport): Initialize msock to -1.
6942
6943         * ftp.c (getftp): Initialize dtsock to -1.
6944
6945         * connect.c (closeport): Don't close sock if sock == -1.
6946
6947 1996-11-18  Hrvoje Niksic  <hniksic@srce.hr>
6948
6949         * init.c (setnuminf): Nuked default value -- just leave unchanged.
6950         (setval): Don't send default values.
6951         (defaults): Use DEFAULT_TIMEOUT -- aaargh.
6952
6953         * options.h (struct options): Use long for dot_bytes.
6954
6955         * init.c (setquota): Renamed to setbytes.
6956         (setval): Use setbytes on DOTBYTES.
6957
6958 1996-11-17  Hrvoje Niksic  <hniksic@srce.hr>
6959
6960         * ftp.c (getftp): Initialize con->dltime.
6961
6962         * recur.c (recursive_retrieve): Use same_host instead of
6963         try_robots; simply load robots_txt whenever the host is changed.
6964         (recursive_retrieve): Free forbidden before calling parse_robots.
6965
6966 1996-11-16  Hrvoje Niksic  <hniksic@srce.hr>
6967
6968         * retr.c (show_progress): Use them.
6969
6970         * options.h (struct options): New options dot_bytes, dots_on_line
6971         and dot_spacing.
6972
6973 1996-11-16  Mark Boyns  <boyns@sdsu.edu>
6974
6975         * recur.c (recursive_retrieve): Retrieve directories regardless of
6976         acc/rej rules; check for empty u->file.
6977
6978 1996-11-14  Hrvoje Niksic  <hniksic@srce.hr>
6979
6980         * init.c (setval): Use it.
6981
6982         * utils.c (merge_vecs): New function.
6983
6984         * init.c (setval): Reset the list-type functions when encountering
6985         "".
6986
6987 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
6988
6989         * recur.c (recursive_retrieve): Use base_url instead of this_url
6990         for no_parent.
6991
6992 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
6993
6994         * html.c (htmlfindurl): Reset s->in_quote after exiting the quote.
6995
6996 1996-11-13  Hrvoje Niksic  <hniksic@srce.hr>
6997
6998         * utils.c (sepstring): Rewrote; don't use strtok.
6999
7000         * recur.c (recursive_retrieve): Enter assorted this_url to slist
7001         when running the first time.
7002         (retrieve_robots): Warn to ignore errors when robots are loaded.
7003
7004         * utils.c (load_file): Moved from url.c.
7005
7006         * http.c: Made static variables const too in h* functions.
7007
7008         * main.c (main): Renamed --continue-ftp to --continue.
7009
7010         * recur.c (recursive_retrieve): Use it.
7011
7012         * utils.c (frontcmp): New function.
7013
7014         * url.c (accdir): New function.
7015
7016         * html.c (htmlfindurl): Recognize <area href=...>.
7017
7018         * ftp.c (ftp_retrieve_dirs): Implemented opt.includes.
7019
7020         * init.c (setval): Free the existing opt.excludes and
7021         opt.includes, if available.
7022
7023         * main.c (main): New option -I.
7024
7025 1996-11-12  Hrvoje Niksic  <hniksic@srce.hr>
7026
7027         * ftp.c (ftp_retrieve_glob): Do not weed out directories.
7028
7029         * version.c: Changed version to 1.4.1.
7030
7031 1996-11-11  Hrvoje Niksic  <hniksic@srce.hr>
7032
7033         * version.c: Released 1.4.0.
7034
7035 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
7036
7037         * main.c (main): Free com and val after parse_line.
7038         (printhelp): Reorder the listing.
7039
7040         * http.c: More robust header parsing.
7041
7042         * http.c: Allow any number of spaces, or no spaces, precede ':'.
7043         (hskip_lws): New function.
7044         (haccepts_bytes): New function.
7045         (gethttp): Use it.
7046
7047         * init.c (setval): Check header sanity.
7048         (setval): Allow resetting of headers.
7049
7050 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
7051
7052         * http.c (http_loop): Don't use has_wildcards.
7053
7054         * http.c (gethttp): Free all_headers -- would leak.
7055
7056         * recur.c (recursive_retrieve): Initialize depth to 1 instead of
7057         0 -- this fixes a long-standing bug in -rl.
7058
7059 1996-11-09  Hrvoje Niksic  <hniksic@srce.hr>
7060
7061         * ftp.c: Use -1 as "impossible" value for con->fd.
7062
7063         * url.h (URL_SEPARATOR): Don't treat `*' and `+' as separators.
7064
7065         * init.c (parse_line): Use isalpha.
7066
7067         * ftp-unix.c: Use HAVE_UNISTD_H.
7068
7069         * mtch.c (has_wildcards): Don't match \.
7070
7071         * http.c (http_loop): Warn on HTTP wildcard usage.
7072
7073 1996-11-08  Hrvoje Niksic  <hniksic@srce.hr>
7074
7075         * url.c (url_filename): Do not create numbered suffixes if
7076         opt.noclobber -- would bug out on -nc.
7077
7078 1996-11-07  Hrvoje Niksic  <hniksic@srce.hr>
7079
7080         * recur.c (parse_robots): Don't chuck out the commands without
7081         arguments (`Disallow:<empty>' didn't work).
7082         (parse_robots): Compare versions lowercase.
7083         (parse_robots): Match on base_version, not version_string!
7084         (parse_robots): Handle comments properly.
7085         (parse_robots): Match versions in a sane way.
7086
7087         * init.c: Print nicer error messages.
7088
7089         * version.c: Changed version to 1.4.0.
7090
7091 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
7092
7093         * version.c: Released 1.4.0-test2.
7094
7095         * init.c (run_wgetrc): Close fp.
7096
7097         * ftp.c (ftp_retrieve_dirs): Allocate the correct length for
7098         u->dir.
7099
7100 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
7101
7102         * init.c (setquota): Allow inf as quota specification.
7103
7104 1996-11-05  Hrvoje Niksic  <hniksic@srce.hr>
7105
7106         * ftp.c (ftp_retrieve_dirs): Return QUOTEXC if quota exceeded.
7107         (ftp_retrieve_glob): Return QUOTEXC on quota exceeded.
7108
7109         * main.c (main): Check for quota by comparison with downloaded
7110         stuff, not from status.
7111
7112         * connect.c (select_fd): Should compile on HPUX without warnings now.
7113
7114         * ftp.c (ftp_get_listing): Check whether ftp_loop_internal
7115         returned RETROK.
7116
7117 1996-11-04  Hrvoje Niksic  <hniksic@srce.hr>
7118
7119         * ftp.c (ftp_retrieve_glob): Print the pattern nicely.
7120         (getftp): Return FTPRETRINT on control connection error.
7121
7122         * html.c (htmlfindurl): Recognize <embed src=...> and
7123         <bgsound src=...>.
7124         (ftp_index): Handle username and password correctly.
7125
7126         * main.c (main): Made `-np' a synonim for --no-parent.
7127
7128 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
7129
7130         * ftp.c (ftp_loop): Check for opt.ftp_glob too before calling
7131         ftp_retrieve_glob.
7132
7133         * version.c: Changed version to 1.4.0-test2.
7134
7135 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
7136
7137         * version.c: Released 1.4.0-test1.
7138
7139         * url.c (str_url): Don't use sprintf when creating %2F-prefixed
7140         directory.
7141         (convert_links): Removed definition of make_backup.
7142
7143         * http.h: Removed definition of MAX_ERROR_LENGTH.
7144
7145         * host.c (ftp_getaddress): Check for "(none)" domains.
7146
7147         * ftp.c (ftp_retrieve_dirs): Docfix.
7148
7149         * http.c (gethttp): Use ou->referer instead of u->referer.
7150
7151         * retr.c (retrieve_url): Reset u to avoid freeing pointers twice;
7152         this was known to cause coredumps on Linux.
7153
7154         * html.c (ftp_index): Cast the argument to local_time to time_t *.
7155
7156 1996-11-01  Hrvoje Niksic  <hniksic@srce.hr>
7157
7158         * connect.c (select_fd): Use exceptfds -- once and for all.
7159
7160         * retr.c (retrieve_from_file): Free filename after
7161         recursive_retrieve.
7162         (retrieve_from_file): Send RFIRST_TIME to recursive_retrieve on
7163         first-time retrieval.
7164         (retrieve_from_file): Return uerr_t; new argument, count.
7165         (retrieve_from_file): Break on QUOTEXC.
7166
7167         * init.c (setquota): Fixed a bug that caused rejection of
7168         non-postfixed values..
7169
7170 1996-10-30  Hrvoje Niksic  <hniksic@srce.hr>
7171
7172         * version.c: Changed name to wget.
7173
7174         * connect.c (iread): Smarter use of select.
7175         (select_fd): Set errno on timeout.  If not timeout, return 1
7176         instead of 0.
7177
7178 1996-10-29  Hrvoje Niksic  <hniksic@srce.hr>
7179
7180         * ftp.c (ftp_loop_internal): Don't use con->cmd before
7181         establishing it.
7182
7183 1996-10-26  Hrvoje Niksic  <hniksic@srce.hr>
7184
7185         * http.c (gethttp): Send correct referer when using proxy.
7186         (gethttp): Use struct urlinfo ou to access the relevant data; send
7187         correct authorization in all cases.
7188
7189         * host.c (same_host): Use skip_uname to skip username and
7190         password.
7191
7192         * url.c (skip_uname): New function.
7193         (parseurl): Use it.
7194
7195         * host.c (same_host): Do not assume HTTP -- same_host should now
7196         be totally foolproof.
7197
7198         * url.c (skip_proto): New function.
7199         (parse_uname): Use it.
7200
7201         * http.c (gethttp): Create local user and passwd from what is
7202         given.
7203
7204         * url.c (parseurl): Check for HTTP username and password too.
7205
7206 1996-10-25  Hrvoje Niksic  <hniksic@srce.hr>
7207
7208         * config.h.in: Removed #define gethostbyname R...
7209
7210 1996-10-22  Hrvoje Niksic  <hniksic@srce.hr>
7211
7212         * version.c: Changed version to 1.4.0-test1.
7213
7214 1996-10-21  Hrvoje Niksic  <hniksic@srce.hr>
7215
7216         * version.c: "Released" 1.4b29.
7217
7218         * recur.c (recursive_retrieve): Check for no_parent.
7219
7220         * init.c (setval): Option update.
7221
7222         * main.c (main): New option no-parent.
7223
7224         * options.h (struct options): New variable no_parent.
7225
7226         * recur.c (recursive_retrieve): Only files are checked for
7227         opt.accepts and opt.rejects.
7228         (recursive_retrieve): Check directories for opt.excludes.
7229         (recursive_retrieve): Make the dir absolute when checking
7230         opt.excludes.
7231
7232         * html.c (htmlfindurl): Recognize <applet code=...> and <script
7233         src=...>
7234
7235 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
7236
7237         * ftp.c (getftp): Do not line-break assert entries at all.
7238         (ftp_retrieve_dirs): docfix.
7239
7240         * connect.c (select_fd): Use fd + 1 as nfds.
7241
7242         * version.c: Changed version to 1.4b29.
7243
7244 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
7245
7246         * version.c: "Released" 1.4b28.
7247
7248         * ftp.c (ftp_loop_internal): Check whether f->size == len and
7249         don't continue the loop if it is.
7250         (ftp_get_listing): Remove list_filename on unsuccesful loop.
7251
7252 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
7253
7254         * ftp.c (ftp_loop_internal): Use strcpy to initialize tmp.
7255         (getftp): Do not use multiline assert.
7256
7257         * http.c (hparsestatline): Use mjr and mnr instead of major and
7258         minor, which don't compile on Ultrix.
7259         (http_loop): Use strcpy() to initialize tmp.
7260
7261         * all: Geturl -> Fetch
7262
7263 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
7264
7265         * recur.c (parse_robots): Fixed an off-by-one bug when looking for
7266         ':'.
7267
7268         * html.c (htmlfindurl): Fixed several possible off-by-one bugs by
7269         moving `bufsize &&' to the beginning of each check in for-loops.
7270
7271         * recur.c (parse_robots): Close fp on exit.
7272
7273         * url.c (mymkdir): Check for each directory before creating.
7274
7275 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
7276
7277         * version.c: Changed version to 1.4b28.
7278
7279 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
7280
7281         * version.c: "Released" 1.4b27.
7282
7283         * init.c (parse_line): Use isspace.
7284         (parse_line): Free *com on all errors.
7285
7286         * ftp.c (ftp_loop): Change FTPOK to RETROK before exiting.
7287         (delelement): Use next instead of f->next and prev instead of
7288         f->prev.
7289         (delelement): Free the members of the deleted element.
7290
7291         * http.c (http_loop): Do not return RETROK on code != 20x.
7292
7293         * init.c (cleanup): Free opt.user_header.
7294         (cleanup): Free opt.domains.
7295
7296         * url.c (freelists): Moved to cleanup().
7297
7298         * http.c (hparsestatline): Docfix.
7299
7300         * main.c (main): Return with error status on unsuccesful
7301         retrieval.
7302
7303         * init.c (setval): Do not remove listing when mirroring.
7304
7305         * url.c (url_filename): Use opt.fileprefix.
7306
7307         * ftp.c (ftp_get_listing): Use url_filename to get filename for
7308         .listing.
7309
7310         * main.c (main): New option: -rn.
7311
7312 1996-10-15  Hrvoje Niksic  <hniksic@srce.hr>
7313
7314         * Makefile.in (RM): Added RM = rm -f.
7315
7316         * host.c (clean_hosts): New function.
7317         (free_hlist): Just free the list, no reset.
7318
7319         * version.c: Changed version to 1.4b27.
7320
7321 1996-10-13  Hrvoje Niksic  <hniksic@srce.hr>
7322
7323         * version.c: "Released" 1.4b26.
7324
7325         * retr.c (retrieve_from_file): If call get_urls_html with
7326         opt.spider to make it silent in spider mode.
7327
7328         * url.c (str_url): Use CLEANDUP instead of URL_CLEANSE.
7329
7330         * url.h (CLEANDUP): New macro.
7331
7332         * http.c (gethttp): Fixed a bug that freed location only when it
7333         was NULL.
7334
7335         * retr.c (retrieve_url): Free url if it will not be stored,
7336         i.e. newloc is NULL.
7337
7338         * html.c (htmlfindurl): Handle exiting from quotes correctly; the
7339         old version would bug out on <a href="x#a"href="y">.
7340
7341         * html.h (state_t): New member in_quote.
7342
7343         * html.c (htmlfindurl): Free s->attr at the beginning of
7344         attr-loop.
7345
7346         * recur.c (recursive_retrieve): Recognize RCLEANUP.
7347         (tried_robots): Make hosts a global variable.
7348         (recursive_retrieve): Free constr after URL host optimization.
7349         (tried_robots): Free urlinfo before exiting.
7350
7351         * utils.c (free_slist): New function.
7352
7353         * recur.c (recursive_retrieve): Use flags to add cleanup
7354         possibility.
7355
7356         * main.c (main): Free filename after recursive_retrieve.
7357
7358         * http.c (gethttp): Store successful responses too.
7359
7360 1996-10-12  Hrvoje Niksic  <hniksic@srce.hr>
7361
7362         * all: Constified the whole source.  This required some minor
7363         changes in many functions in url.c, possibly introducing bugs -- I
7364         hope not.
7365
7366         * ftp-basic.c: Removed last_respline.
7367
7368         * http.c (gethttp): Free type.
7369
7370         * host.c (same_host): Free real1 and real2.
7371
7372         * main.c (main): New option --spider.
7373
7374         * retr.c (get_contents): Don't reset errno.
7375
7376         * main.c (main): Sorted the options.
7377
7378         * connect.c (iread): Set errno to ETIMEDOUT only if it was left
7379         uninitialized by select().
7380
7381         * http.c (http_loop): Print the time when the connection is
7382         closed.
7383         (gethttp): Debug-print the HTTP request.
7384
7385 1996-10-11  Hrvoje Niksic  <hniksic@srce.hr>
7386
7387         * connect.c (iread): Do not try reading after timeout.
7388
7389         * main.c (main): Would bug out on -T.
7390
7391         * connect.c (select_fd): Do not use exceptfds.
7392         (iread): Set ETIMEDOUT on select_fd <= 0.
7393
7394         * version.c: Changed version to 1.4b26.
7395
7396 1996-10-10  Hrvoje Niksic  <hniksic@srce.hr>
7397
7398         * version.c: "Released" 1.4b25.
7399
7400         * ftp-unix.c (ftp_parse_unix_ls): Ignore lines without file name
7401         or link name.
7402
7403         * http.c (gethttp): Add errcode to struct hstat.
7404         (http_loop): Use it.
7405
7406         * url.c (no_proxy_match): Simplify using char** for no_proxy.
7407
7408         * options.h (struct options): Make opt.no_proxy a vector.
7409
7410         * utils.c (sepstring): Use !*s instead of !strlen(s).
7411
7412         * init.c (setval): Set opt.maxreclevel to 0 on --mirror.
7413         (getperms): Use ISODIGIT instead of isdigit.
7414
7415         * ftp.c (getftp): Print time.
7416
7417         * main.c (main): Use legible output of downloaded quantity.
7418
7419         * ftp.c (getftp): Use elapsed_time().
7420         (ftp_loop_internal): Use rate().
7421
7422         * http.c (http_loop): Add download ratio output; Use rate().
7423
7424         * utils.c (rate): New function.
7425
7426 1996-10-09  Hrvoje Niksic  <hniksic@srce.hr>
7427
7428         * http.c (http_loop): Use timer.
7429
7430         * ftp.c: Split to ftp-basic.c and ftp.c
7431
7432         * utils.c (reset_timer): New function.
7433         (elapsed_time): New function.
7434
7435         * retr.c (show_progress): Make bytes_in_line and offs long; should
7436         work on 16-bit machines.
7437
7438 1996-10-08  Hrvoje Niksic  <hniksic@srce.hr>
7439
7440         * url.c (in_acclist): New argument backward.
7441
7442         * ftp.c (ftp_retrieve_glob): Use acceptable() to determine whether
7443         a file should be retrieved according to suffix.
7444         (ftp_get_listing): Check the return value of unlink; Do not call
7445         ftp_retrieve_dirs if depth reached maxreclevel.
7446         (ftp_retrieve_dirs): Check whether the directory is in
7447         exclude-list.
7448
7449         * main.c (main): Print the version number at the beginning of
7450         DEBUG output.
7451         (main): Use strrchr when creating exec_name.
7452
7453         * ftp.c (ftp_retrieve_glob): Do not close control connection.
7454
7455         * version.c: Changed version to 1.4b25.
7456
7457 1996-10-07  Hrvoje Niksic  <hniksic@srce.hr>
7458
7459         * version.c: "Released" 1.4b24.
7460
7461         * Makefile.in: Rewrite.
7462
7463         * ftp.c (ftp_loop_internal): Likewise.
7464
7465         * retr.c (time_str): Check for failed time().
7466
7467         * html.c (htmlfindurl): Recognize <fig src> and <overlay src> from
7468         HTML3.0.
7469
7470         * retr.c (time_str): Return time_t *.
7471
7472         * connect.c (bindport): Close msock on unsuccesful bind.
7473         (bindport): The same for getsockname and listen.
7474
7475         * retr.c (retrieve_url): Allow any number of retries on
7476         proxy.
7477
7478         * http.c (gethttp): Do not treat errno == 0 as timeout.
7479         (http_loop): Likewise.
7480         (http_loop): Cosmetic changes.
7481
7482         * connect.c (iread): Set errno to ETIMEDOUT in case of timeout.
7483
7484         * retr.c (get_contents): Reset errno.
7485
7486         * ftp.c (getftp): Minor fixes.
7487
7488 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
7489
7490         * http.c: Do not use backups.
7491
7492         * geturl.1 (WARNING): Warn that man-page could be obsolete.
7493
7494         * getopt.c (getopt_long): Moved to getopt.c
7495
7496         * geturl.texi: Enhanced.
7497
7498         * main.c (main): Use it.
7499
7500         * recur.c (convert_all_links): New function.
7501
7502         * utils.c (add_slist): New argument flags.
7503
7504         * recur.c (recursive_retrieve): Update a list of downloaded URLs.
7505         (parse_robots): Do not chuck out empty value fields.
7506         (parse_robots): Make yourself welcome on empty Disallow.
7507
7508         * version.c: Changed version to 1.4b24.
7509
7510 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
7511
7512         * version.c: "Released" 1.4b23.
7513
7514         * ftp.c (ftp_loop_internal): Get the time after getftp.
7515
7516         * Makefile.in (install.info): New target.
7517         (install): Use it.
7518
7519         * http.c (http_loop): Fix output when doing -O.
7520
7521 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
7522
7523         * geturl.texi: New file.
7524
7525         * main.c (main): Do not print the warnings and download summary if
7526         opt.quiet is set.
7527
7528         * version.c: Changed version to 1.4b23.
7529
7530 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
7531
7532         * "Released" 1.4b22.
7533
7534         * atotm.c (atotm): Use True and False instead of TRUE and FALSE,
7535         to avoid redefinition warnings.
7536
7537         * host.c (store_hostaddress): Use memcpy() to copy the address
7538         returned by inet_addr.
7539
7540         * version.c: Changed version to 1.4b22.
7541
7542 1996-10-04  Hrvoje Niksic  <hniksic@srce.hr>
7543
7544         * version.c: "Released" 1.4b21.
7545
7546         * ftp-unix.c (ftp_parse_ls): Renamed to ftp_parse_unix_ls.
7547
7548         * ftp.c (ftp_port): Use conaddr.
7549         (getftp): Print the file length.
7550         (ftp_retrieve_list): Check the stamps of plain files only.
7551
7552         * connect.c (closeport): Do not call shutdown().
7553         (conaddr): New function.
7554
7555         * html.c (ftp_index): Made it dfp-aware.
7556
7557         * init.c (cleanup): New name of freemem. Close opt.dfp.
7558
7559         * ftp.c (getftp): Use opt.dfp if it is set.
7560
7561         * ftp-unix.c (ftp_parse_ls): Recognize time in h:mm format.
7562
7563         * ftp.c (ftp_retrieve_dirs): Fixed a bug that caused incorrect
7564         CWDs to be sent with recursive FTP retrievals.
7565
7566 1996-10-03  Hrvoje Niksic  <hniksic@srce.hr>
7567
7568         * recur.c (parse_robots): Made it more compliant with "official"
7569         specifications.
7570
7571         * http.c: New function.
7572
7573         * ftp-unix.c (ftp_parse_ls): Added better debug output.
7574
7575         * ftp.c (getftp): Print out the LIST in case of
7576         opt.print_server_response.
7577
7578         * version.c: Changed version to 1.4b21.
7579
7580 1996-10-01  Hrvoje Niksic  <hniksic@srce.hr>
7581
7582         * version.c: "Released" 1.4b20.
7583
7584         * README: Update.
7585
7586         * http.c (gethttp): Preset lengths of various headers instead of
7587         calculating them dynamically.
7588         (gethttp): Check for 206 partial contents.
7589
7590 1996-09-30  Hrvoje Niksic  <hniksic@srce.hr>
7591
7592         * configure.in: Set SYSTEM_GETURLRC to $libdir/geturlrc
7593
7594         * http.c (gethttp): Send the port number in the Host: header.
7595
7596 1996-09-29  Hrvoje Niksic  <hniksic@srce.hr>
7597
7598         * http.c (gethttp): Send host: header.
7599         (gethttp): Add the possibility of user-defined headers.
7600         (gethttp): Move decision about pragma: no-cache to http_loop,
7601         where it belongs.
7602         (gethttp): Pass a struct instead of enormous argument list.
7603         (http_loop): Use a new, fancier display format.
7604         (ftp_loop): Likewise.
7605
7606         * main.c: (hangup): Turn off buffering of the new log file.
7607
7608         * install-sh: Likewise.
7609
7610         * config.sub: Replace with the one in autoconf-2.10
7611
7612         * geturl.1: Update.
7613
7614         * init.c: New options httpuser and httppasswd.
7615
7616         * http.c: (base64_encode_line): New function.
7617         (gethttp): Send authentication.
7618
7619         * connect.c (make_connection): Use store_hostaddress.
7620
7621 1996-09-28  Hrvoje Niksic  <hniksic@srce.hr>
7622
7623         * host.c (store_hostaddress): New function.
7624
7625         * NEWS: Update.
7626
7627         * http.c (hgetrange): New function.
7628         (gethttp): Use ranges.
7629
7630         * utils.c (numdigit): Accept long instead of int.
7631
7632         * http.c (http_loop): Add restart capabilities.
7633
7634         * ftp.c (ftp_retrieve_glob): Fixed a bug that could cause matchres
7635         being used uninitialized.
7636         (ftp_retrieve_list): Similar fix.
7637
7638         * host.c (add_hlist): Fixed a bug that could cause cmp being used
7639         uninitialized.
7640
7641         * url.c (construct_relative): New function.
7642
7643         * recur.c (recursive_retrieve): Use it.
7644
7645         * retr.c (convert_links): New function.
7646
7647 1996-09-27  Hrvoje Niksic  <hniksic@srce.hr>
7648
7649         * url.c (free_urlpos): New function.
7650
7651         * recur.c (recursive_retrieve): Adapt.
7652
7653         * url.c (get_urls_html): Return a linked list instead of a vector.
7654
7655         * url.c (get_urls_file): Return a linked list instead of a vector.
7656
7657         * geturl.1: Update.
7658
7659         * http.c (gethttp): Implement it.
7660
7661         * init.c (setval): New option: SAVEHEADERS
7662
7663         * ftp.c (ftp_loop_internal): Do not set restval if listing is to
7664         be retrieved. Lack of this test caused bugs when the connection
7665         was lost during listing.
7666
7667         * retr.c (retrieve_url): Fixed a bug that caused
7668         coredumps. *newloc is now reset by default.
7669         (retrieve_url): Lift the twenty-tries limit on proxies.
7670
7671         * version.c: Changed version to 1.4b20.
7672
7673 1996-09-20  Hrvoje Niksic  <hniksic@srce.hr>
7674
7675         * version.c: "Released" 1.4b19.
7676
7677 1996-09-19  Hrvoje Niksic  <hniksic@srce.hr>
7678
7679         * ftp.c (ftp_loop_internal): Renamed from ftp_1fl_loop.
7680         (getftp): Changed prototype to accept ccon *.
7681
7682 1996-09-17  Hrvoje Niksic  <hniksic@srce.hr>
7683
7684         * ftp.c (ftp_retrieve_list): Fixed a bug that caused setting
7685         incorrect values to files pointed to by symbolic links.
7686         (ftp_1fl_loop): Do not count listings among the downloaded URL-s.
7687
7688 1996-09-16  Hrvoje Niksic  <hniksic@srce.hr>
7689
7690         * url.c (mkstruct): Do not prepend "./" in front of a pathname.
7691
7692         * main.c (main): New option: --user-agent.
7693
7694         * geturl.1: Ditto.
7695
7696         * init.h: Ditto.
7697
7698         * init.c (setval): Ditto.
7699
7700         * main.c (main): Rename "server-headers" to "server-response".
7701
7702         * ftp-unix.c (ftp_parse_ls): Check for asterisks at the end of
7703         executables in 'ls -F' listings.
7704
7705 1996-09-15  Hrvoje Niksic  <hniksic@srce.hr>
7706
7707         * url.c (parseurl): Remove realloc() and sprintf().
7708         (str_url): Get rid of sprintf().
7709
7710         * recur.c (recursive_retrieve): Enable FTP recursion through proxy
7711         servers.
7712
7713         * url.h (URL_CLEANSE): Made it else-resistant.
7714         (USE_PROXY): New macro.
7715
7716 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
7717
7718         * NEWS: Update.
7719
7720         * version.c: Changed version to 1.4b19.
7721
7722 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
7723
7724         * version.c: "Released" 1.4b18.
7725
7726         * url.c: Made it reallocate space exponentially.
7727
7728 1996-09-14  Drazen Kacar  <dave@fly.cc.fer.hr>
7729
7730         * html.c (htmlfindurl): Added <frame src> and <iframe src> among
7731         the list of stuff to fetch.
7732
7733 1996-09-13  Hrvoje Niksic  <hniksic@srce.hr>
7734
7735         * url.c (get_urls_html): Fixed a bug that caused SIGSEGV's with
7736         -Fi.
7737
7738         * html.c (htmlfindurl): Rewrite.
7739
7740         * http.c (gethttp): Use opt.proxy_cache.
7741
7742         * main.c (main): Added --cache option.
7743
7744         * ftp.c (ftp_response): Print server response if opt.print_server
7745         response is set.
7746         (getftp): Print newlines after each request if the server response
7747         is to be printed.
7748         (ftp_response): Copy the last response line to last_respline.
7749
7750         * http.c (gethttp): Add Pragma: nocache for retried
7751         proxy-retrievals.
7752
7753         * ftp.c (getftp): Use it.
7754
7755         * retr.c (buf_discard): New function.
7756
7757         * ftp.c (ftp_response): Use buf_readchar().
7758         (getftp): Flush the control connection buffer before calling
7759         get_contents().
7760
7761         * retr.c (buf_readchar): New function.
7762         (buf_flush): New function.
7763         (get_contents): Use buf_readchar() instead of read(x, x, 1).
7764         (get_contents): Use buf_flush.
7765
7766 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
7767
7768         * ftp.c: Incorporate changes to ftp_response.
7769
7770         * ftp.c (ftp_response): Allocate the server response dynamically,
7771         as in read_whole_line and fetch_next_header.
7772
7773         * utils.c (read_whole_line): Fixed a bug that prevented reading
7774         the last line if it is not \n-terminated. Also fixed a possible
7775         memory overflow.
7776
7777         * http.c (fetch_next_header): Return malloc-ed string as large as
7778         needed.
7779         (gethttp): Use new fetch_next_header.
7780
7781 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
7782
7783         * http.c (hgetlen): Compute the header length the first time only.
7784         (hgettype): Ditto.
7785         (hgetlocation): Ditto.
7786         (hgetmodified): Ditto.
7787
7788 1996-09-11  Hrvoje Niksic  <hniksic@srce.hr>
7789
7790         * sample.geturlrc: Update.
7791
7792 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
7793
7794         * http.c (http_loop): Ditto.
7795
7796         * ftp.c (getftp): Open the output file as binary.
7797
7798         * version.c: Changed version to 1.4b18.
7799
7800 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
7801
7802         * version.c: "Released" 1.4b17.
7803
7804         * ftp-unix.c (ftp_parse_ls): If unable to open file, return NULL
7805         instead of failed assertion.
7806
7807 1996-09-09  Hrvoje Niksic  <hniksic@srce.hr>
7808
7809         * ftp.c (ftp_get_listing): Add a numbered suffix to LIST_FILENAME
7810         if a file of that name already exists.
7811
7812 1996-09-05  Hrvoje Niksic  <hniksic@srce.hr>
7813
7814         * ftp.c (ftp_1fl_loop): Handler FTPPORTERR and FOPENERR correctly.
7815
7816         * config.h.in: Define gethostbyname as Rgethostbyname when using
7817         Socks.
7818
7819         * configure.in: Check for -lresolv if using Socks.
7820
7821         * version.c: Changed version to 1.4b17.
7822
7823 1996-07-15  Hrvoje Niksic  <hniksic@srce.hr>
7824
7825         * version.c: "Released" 1.4b16.
7826
7827         * http.c (gethttp): More intelligent check for first line of HTTP
7828         response.
7829         (gethttp): Would bug out on time-stamping.
7830
7831         * version.c: Changed version to 1.4b16.
7832
7833 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
7834
7835         * version.c: Released 1.4b15.
7836
7837         * http.c (http_loop): Print \n after the loop entry, not before.
7838
7839         * url.c (url_filename): Use ISDOT.
7840
7841         * url.h (ISDOT): New macro.
7842
7843         * recur.c (recursive_retrieve): Change only opt.recursive for
7844         following FTP.
7845
7846 1996-07-11  Antonio Rosella <antonio.rosella@agip.it>
7847
7848         * socks/geturl.cgi: Fixed version No.
7849
7850         * socks/download-netscape.html: Ditto.
7851
7852         * socks/download.html: Changed socks.html to download.html.
7853
7854 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
7855
7856         * url.c (url_filename): Check for opt.dirstruct instead for
7857         opt.recursive && opt.dirstruct.
7858
7859         * init.c (defaults): Ditto.
7860         (defaults): Reset dirstruct by default.
7861         (setval): Set opt.dirstruct whenever setting recursive.
7862
7863         * init.h: Removed FORCEDIRHIER.
7864
7865         * INSTALL: Added -L to socks-description.
7866
7867         * version.c: Changed version to 1.4b15.
7868
7869 1996-07-10  Hrvoje Niksic  <hniksic@srce.hr>
7870
7871         * version.c: "Released" 1.4b14.
7872
7873         * geturl.1: Update AUTHOR to include Rosella as contributor.
7874
7875         * NEWS: Update.
7876
7877         * socks/geturl.cgi: Simplified command creation, nuked <blink>.
7878
7879         * socks/geturl.cgi: Wrap nutscape extensions within if $netscape.
7880         (cal_time): Fix == to eq.
7881
7882         * socks/geturl.cgi: GPL-ized with permission of A. Rosella.
7883
7884         * geturl.1 (hostname): Moved URL CONVENTIONS to the beginning.
7885
7886         * Makefile.in: Use @VERSION@.
7887
7888         * configure.in: Check version from version.c.
7889
7890         * socks/geturl.cgi: Changed /pub/bin/perl to /usr/bin/perl.
7891
7892         * socks/download.html: Created from download-netscape.html, made
7893         HTML-2.0 compliant.
7894
7895         * recur.c (recursive_retrieve): Set opt.force_dir_hier when
7896         following FTP links from recursions.
7897
7898 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
7899
7900         * url.c (mymkdir): Fixed a bug that prevented mymkdir() to create
7901         absolute directories correctly.
7902
7903         * version.c: Changed version to 1.4b14.
7904
7905 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
7906
7907         * version.c: "Released" 1.4b13.
7908
7909         * url.c (make_backup): New function.
7910
7911         * http.c (http_loop): Make a backup copy of the local file (using
7912         rename(2)) before opening it.
7913
7914         * main.c (main): Added --backups.
7915
7916         * host.c (ftp_getaddress): Bail out on failed mycuserid().
7917         (ftp_getaddress): Check for leading dot on MY_DOMAIN.
7918         (ftp_getaddress): Check for empty, null or (null) domain.
7919
7920         * url.c (get_urls_html): If this_url is NULL, the base must have a
7921         protocol.
7922         (parseurl): Use has_proto.
7923
7924         * retr.c (retrieve_url): Warn when proxy is used with more than 20
7925         retries.
7926
7927         * url.c (mkstruct): Create the directory (calling mymkdir()) only
7928         if it is not already there.
7929         (has_proto): New function.
7930         (get_urls_html): Eliminate the remaining call to findurl -- use
7931         has_proto.
7932
7933         * geturl.1: Ditto.
7934
7935         * main.c: Change -X to -x.
7936
7937         * url.c (url_filename): Simplify creation of filename if
7938         prefix_files is set.
7939         (url_filename): Simplify everything. And I do mean *everything*.
7940         (mkstruct): Add dir_prefix before hostname.
7941         (path_simplify): Fixed a bug that caused writing outside the path
7942         string in case of "." and ".." path strings.
7943
7944 1996-07-06  Hrvoje Niksic  <hniksic@srce.hr>
7945
7946         * init.c: Added --mirror.
7947
7948         * main.c (main): Added -X to force saving of directory hierarchy.
7949
7950         * ftp.c (ftp_retrieve_list): Added recursion depth counter.
7951         (ftp_retrieve_list): Check whether quota is exceeded.
7952
7953         * url.c (get_urls_html): Skip leading blanks for absolute URIs.
7954
7955         * http.c (gethttp): Use referer if present.
7956
7957         * recur.c (recursive_retrieve): Set u->referer before calling
7958         retrieve_url.
7959
7960         * url.c (newurl): Use memset to nullify the struct members.
7961         (freeurl): Free the referer field too.
7962
7963         * url.h: Added referer to urlinfo.
7964
7965         * geturl.1: Updated the manual to document some of the new features.
7966
7967         * utils.c (numdigit): Moved from url.c.
7968
7969         * README: Rewritten.
7970
7971         * config.h.in: Add the support for socks.
7972
7973         * configure.in: Add the support for socks.
7974
7975         * url.c (url_filename): If the dir_prefix is ".", work with just
7976         the file name.
7977         (url_filename): Do not look for .n extensions if timestamping if
7978         turned on.
7979
7980         * retr.c (show_progress): Skip the over-abundant restval data, and
7981         print the rest of it with ',' instead of '.'.
7982
7983 1996-07-05  Hrvoje Niksic  <hniksic@srce.hr>
7984
7985         * retr.c (show_progress): Changed second arg. to long (as it
7986         should be).
7987         (show_progress): Moved to retr.c.
7988         (get_contents): Moved to retr.c.
7989
7990         * version.c: Change version to 1.4b13.
7991
7992 1996-07-05  Hrvoje Lacko <hlacko@fly.cc.fer.hr>
7993
7994         * url.c (in_acclist): Would return after the first suffix.
7995
7996 1996-07-04  Hrvoje Niksic  <hniksic@srce.hr>
7997
7998         * version.c: "Released" 1.4b12.
7999
8000         * url.c (path_simplify): More kludgifications.
8001         (get_urls_html): Use new parameters for htmlfindurl.
8002
8003         * html.c: Removed memorizing "parser states", since the new
8004         organization does not require them.
8005
8006         * init.c (run_geturlrc): Use read_whole_line.
8007
8008         * ftp-unix.c (ftp_parse_ls): Use read_whole_line.
8009
8010         * recur.c (parse_robots): Use read_whole_line.
8011
8012         * utils.c (read_whole_line): New function.
8013
8014         * recur.c (tried_robots): Use add_slist/in_slist, *much* cleaner.
8015
8016         * host.c (ngethostbyname): Call inet_addr just once. Yet to be
8017         tested on OSF and Ultrix.
8018         (add_hlist): New function.
8019         (free_hlist): New function.
8020         (search_host): New function.
8021         (search_address): New function.
8022         (realhost): Use search_host, search_address and add_hlist.
8023         (same_host): Replaced realloc() with strdupdelim(), made
8024         case-insensitive, fixed a memory leak.
8025
8026         * html.c (ftp_index): Fixed tm_min and tm_sec to be tm_hour and
8027         tm_min, like intended.
8028
8029         * version.c: Change user agent information to
8030         Geturl/version.
8031
8032 1996-07-03  Hrvoje Niksic  <hniksic@srce.hr>
8033
8034         * utils.c: Renamed nmalloc.c to utils.c, .h likewise.
8035
8036         * url.c (acceptable): Always accept directories.
8037
8038         * ftp-unix.c (ftp_parse_ls): Support brain-damaged "ls -F"-loving
8039         servers by stripping trailing @ from symlinks and trailing / from
8040         directories.
8041
8042         * ftp.c (ftp_loop): Debugged the "enhanced" heuristics. :-)
8043
8044         * url.c (skip_url): Use toupper instead of UCASE.
8045
8046         * host.c (sufmatch): Made it case-insensitive.
8047
8048         * url.c (match_backwards_or_pattern): Fixed i == -1 to j == -1.
8049         (match_backwards): New function, instead of
8050         match_backwards_or_pattern.
8051
8052         * recur.c (recursive_retrieve): Increased performance by
8053         introducing inl, which reduces number of calls to in_slist to only
8054         one.
8055
8056         * ftp.c (ftp_loop): Enhanced the heuristics that decides which
8057         routine to use.
8058
8059         * main.c (printhelp): Removed the warranty stuff.
8060
8061 1996-07-02  Hrvoje Niksic  <hniksic@srce.hr>
8062
8063         * url.c (add_slist): Simplify.
8064         (match_backwards_or_pattern): New function.
8065         (in_acclist): Use match_backwards_or_pattern.
8066         (matches): Remove.
8067
8068 1996-06-30  Hrvoje Niksic  <hniksic@srce.hr>
8069
8070         * ftp.c (ftp_loop): Call ftp_index on empty file names, if not
8071         recursive.
8072
8073         * html.c (ftp_index): Fixed to work. Beautified the output.
8074
8075         * ftp.c (ftp_retrieve_glob): Another argument to control whether
8076         globbing is to be used.
8077         (ftp_retrieve_list): Compare the time-stamps of local and remote
8078         files to determine whether to download.
8079
8080 1996-06-29  Hrvoje Niksic  <hniksic@srce.hr>
8081
8082         * ftp.c (rel_constr): New function.
8083
8084         * retr.c (retrieve_from_file): Check for text/html before
8085         retrieving recursively.
8086
8087         * main.c (main): Check whether the file is HTML before going into
8088         recursive HTML retrieving.
8089
8090         * ftp.c (ftp_retrieve_list): Manage directories.
8091         (ftp_retrieve_glob): Pass all the file-types to ftp_retrieve_list.
8092         (ftp_1fl_loop): Fixed a bug that caused con->com to be incorrectly
8093         initialized, causing bugchecks in getftp to fail.
8094
8095         * configure.in: Check for symlink.
8096
8097         * ftp.c (ftp_retrieve_list): Added support for symlinks.
8098
8099         * version.c: "Released" 1.4b10.
8100
8101         * atotm.c (atotm): Redeclared as time_t.
8102
8103         * init.c: New variable "timestamping".
8104
8105         * main.c (main): New option 'N'.
8106
8107         * http.c (hgetlocation): Case-insensitive match.
8108         (hgetmodified): New function.
8109         (http_loop): Implement time-stamping.
8110
8111 1996-06-28  Hrvoje Niksic  <hniksic@srce.hr>
8112
8113         * version.c: Changed version to 1.4b10
8114
8115         * atotm.c: New file, from phttpd.
8116
8117         * options.h (struct options): New parameter timestamping.
8118
8119         * version.c: 1.4b9 "released".
8120
8121         * recur.c (recursive_retrieve): Used linked list (ulist) for
8122         faster storing of URLs.
8123
8124         * url.c (get_urls_html): Removed the old kludge with comparing the
8125         outputs of htmlfindurl and findurl.
8126         (get_urls_html): Added better protocol support here.
8127         (create_hash): Removed, as well as add_hash and in_hash.
8128         (addslist): New function.
8129         (in_slist): ditto
8130
8131         * version.c: Released 1.4b8, changed version to b9.
8132
8133 1996-06-27  Hrvoje Niksic  <hniksic@srce.hr>
8134
8135         * ftp.c (freefileinfo): New function.
8136         (delelement): New function.
8137
8138         * everywhere: GPL!
8139
8140         * ftp.c (ftp_loop): Use ccon.
8141         (ftp_retrieve_glob): Likewise.
8142
8143         * ftp.h: Define ccon, to define status of control connection.
8144
8145         * ftp.c (ftp_get_listing): New function.
8146         (ftp_retrieve_more): New function.
8147         (ftp_retrieve_glob): New function.
8148
8149 1996-06-25  Hrvoje Niksic  <hniksic@srce.hr>
8150
8151         * configure.in: Removed the search for cuserid().
8152
8153         * init.c (getmode): Renamed to getperms.
8154
8155 1996-06-24  Hrvoje Niksic  <hniksic@srce.hr>
8156
8157         * version.c: New version.
8158
8159         * main.c (hangup): New function, that handles hangup. Hangup
8160         signal now causes geturl to stop writing on stdout, and to write
8161         to a log file.
8162
8163         * ftp.c (getftp): "Released" 1.4b7.
8164
8165         * html.c (htmlfindurl): Ignore everything inside <head>...</head>.
8166         (ftp_index): Use fileinfo/urlinfo.
8167
8168         * ftp-unix.c (ftp_parse_ls): New function.
8169         (symperms): New function.
8170
8171         * ftp.c (ftp_1fl_loop): New function, to handle 1-file loops.
8172
8173         * retr.c (retrieve_url): Added FTP support.
8174
8175 1996-06-23  Hrvoje Niksic  <hniksic@srce.hr>
8176
8177         * geturl.h: Removed NOTFTP2HTML enum.
8178         Added DO_LOGIN, DO_CWD and DO_LIST. LIST_ONLY is obsolete.
8179
8180         * ftp.c (getftp): Resynched with urlinfo.
8181         (getftp): Removed HMTL-ization of index.html from getftp.
8182
8183         * version.c: 1.4b6 "released".
8184
8185         * options.h (options): New struct, to keep options in.
8186
8187         * http.c (http_loop,gethttp): Synched with proxy.
8188
8189         * retr.c (retrieve_url): Implemented proxy retrieval.
8190
8191         * main.c (main): Use retrieve_from_file.
8192
8193 1996-06-22  Hrvoje Niksic  <hniksic@srce.hr>
8194
8195         * retr.c (retrieve_from_file): New function.
8196
8197         * url.c (parseurl): Modified to return URLOK if all OK. Protocol
8198         can be found in u->proto.
8199
8200         * ftp.c (ftp_response): Fixed to accept multi-line responses as
8201         per RFC 959.
8202
8203         * recr.c (recursive_retrieve): Take newloc from retrieve_url.
8204
8205         * url.c (mymkdir): Removed the file of the same name, if one
8206         exists.
8207         (isfile): New function.
8208         (mkstruct): Fixed the '/' glitches.
8209         (path_simplify): Hacked to treat something/.. correctly.
8210
8211 1996-06-21  Hrvoje Niksic  <hniksic@srce.hr>
8212
8213         * http.c (gethttp): Close the socket after error in headers.
8214         (http_loop): HEOF no longer a fatal header.
8215
8216         * loop.c (retrieve_url): When dt is NULL, do not modify it. This
8217         simplifies the syntax of calling retrieve_url.
8218
8219         * recr.c (recursive_retrieve): Modified to use get_urls_html.
8220
8221         * url.c (get_urls_file): New function.
8222         (get_urls_html): New function.
8223
8224         * recr.c (recursive_retrieve): Patched up to conform to the
8225         standards.
8226
8227         * http.c (gethttp): Synched with the rest...
8228         (gethttp): Treat only CONREFUSED specially, with connection
8229         errors.
8230
8231         * init.c,geturl.1,http.c (http_loop): Removed kill_error.
8232
8233 1996-06-20  Hrvoje Niksic  <hniksic@srce.hr>
8234
8235         * http.c (http_loop): New function.
8236
8237         * loop.c: Removed *lots* of stuff from retrieve_url.
8238
8239         * url.c (parseurl): Changed to work with urlinfo. Integrated
8240         username finding and path parsing.
8241         (newurl): New function.
8242         (freeurl): New function.
8243         (mkstruct): Removed the old bogosities, made it urlinfo-compliant.
8244         (url_filename): Likewise.
8245         (path_simplify): Accept relative paths too.
8246         (opt_url): Made urlinfo-compliant, removed bogosities.
8247         (path_simplify): Expanded to accept relative paths.
8248         (str_url): A replacement for hide_url
8249         (decode_string): Fixed a bug that caused malfunctioning when
8250         encountering an illegal %.. combination.
8251         (opt_url): Removed the argument. Dot-optimizations are now default.
8252
8253         * nmalloc.c (strdupdelim): New function.
8254
8255         * url.h: Added the urlinfo structure
8256
8257 1996-06-19  Hrvoje Niksic  <hniksic@srce.hr>
8258
8259         * url.c (hide_url): Thrown out the protocol assertion. Do not
8260         change the URL if the protocol if not recognized.
8261         (findurl): Put continue instead of break.
8262
8263 1996-06-18  Hrvoje Niksic  <hniksic@srce.hr>
8264
8265         * sample.geturlrc: Changed the defaults to be commented out and
8266         harmless (previous defaults caused pains if copied to
8267         ~/.geturlrc).
8268
8269         * http.c (gethttp): Print the HTTP request in debug mode.
8270
8271         * connect.c (iread): Added EINTR check loop to select-ing
8272         too. EINTR is now correctly handled with select().
8273
8274         * TODO: new file
8275
8276 1996-05-07  Hrvoje Niksic  <hniksic@srce.hr>
8277
8278         * host.c (same_host): Made the function a little bit more
8279         intelligent regarding diversified URL syntaxes.
8280
8281         * url.c (skip_url): Spaces are now skipped after URL:
8282
8283         * Released 1.3.1 with the patch to prevent crashing when sending
8284         NULL to robot* functions and the patch to compile "out of the box"
8285         on AIX.
8286
8287         * recr.c (recursive_retrieve): Added checking whether this_url is
8288         NULL when calling the robot functions.
8289
8290         * ChangeLog: New file.