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