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