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