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