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