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