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