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