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