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