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