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