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