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