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