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