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