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