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