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