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