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