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