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