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