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