]> sjero.net Git - wget/blob - src/ChangeLog
[svn] Commit progress bar tweaks.
[wget] / src / ChangeLog
1 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
2
3         * progress.c (dot_create): Align the "[ skipping ... ]" string
4         with the dots.
5
6         * retr.c (rate): Split into two functions: calc_rate and
7         retr_rate.
8
9         * progress.c (create_image): Draw a dummy progress bar even when
10         total size is unknown.
11         (display_image): Place the text cursor at the end of the "image".
12
13 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
14
15         * url.c (reencode_string): Use unsigned char, not char --
16         otherwise the hex digits come out wrong for 8-bit chars such as
17         nbsp.
18         (lowercase_str): New function.
19         (url_parse): Canonicalize u->url if needed.
20         (get_urls_file): Parse each URL, and return only the valid ones.
21         (free_urlpos): Call url_free.
22         (mkstruct): Add :port if the port is non-standard.
23         (mkstruct): Append the query string to the file name, if any.
24         (urlpath_length): Use strpbrk_or_eos.
25         (uri_merge_1): Handle the cases where LINK is an empty string,
26         where LINK consists only of query, and where LINK consists only of
27         fragment.
28         (convert_links): Count and report both kinds of conversion.
29         (downloaded_file): Use a hash table, not a list.
30         (downloaded_files_free): Free the hash table.
31
32         * retr.c (retrieve_from_file): Ditto.
33
34         * main.c (main): Call either retrieve_url or retrieve_tree
35         for each URL, not both.
36
37         * retr.c (register_all_redirections): New function.
38         (register_redirections_mapper): Ditto.
39         (retrieve_url): Register the redirections.
40         (retrieve_url): Make the string "Error parsing proxy ..." 
41         translatable.
42
43         * res.c (add_path): Strip leading slash from robots.txt paths so
44         that the path representations are "compatible".
45         (free_specs): Free each individual path, too.
46         (res_cleanup): New function.
47         (cleanup_hash_table_mapper): Ditto.
48
49         * recur.c (url_queue_new): New function.
50         (url_queue_delete): Ditto.
51         (url_enqueue): Ditto.
52         (url_dequeue): Ditto.
53         (retrieve_tree): New function, replacement for recursive_retrieve.
54         (descend_url_p): New function.
55         (register_redirection): New function.
56
57         * progress.c (create_image): Cosmetic changes.
58
59         * init.c (cleanup): Do all those complex cleanups only if
60         DEBUG_MALLOC is defined.
61
62         * main.c: Removed --simple-check and the corresponding
63         simple_host_check in init.c.
64
65         * html-url.c (handle_link): Parse the URL here, and propagate the
66         parsed URL to the caller, who would otherwise have to parse it
67         again.
68
69         * host.c (xstrdup_lower): Moved to utils.c.
70         (realhost): Removed.
71         (same_host): Ditto.
72
73 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
74
75         * utils.c (path_simplify): Preserver the (non-)existence of
76         leading slash.  Return non-zero if changes were made.
77
78 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
79
80         * progress.c (bar_update): Don't modify bp->total_length if it is
81         zero.
82
83 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
84
85         * retr.c (retrieve_url): When the redirection URL doesn't parse,
86         print the correct error message rather than "UNKNOWN".
87
88 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
89
90         * progress.c (bar_finish): If the timer didn't record any time
91         since the download beginning, fake 1ms.
92
93 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
94
95         * recur.c (recursive_retrieve): Fix typo.
96
97 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
98
99         * progress.c (create_image): Don't translate "%ld ".
100
101 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
102
103         * progress.c (bar_set_params): Allow the user to force the use of
104         the bar.
105
106 2001-11-23  Lemble Gregory  <gregory.lemble@st.com>
107
108         * gen_sslfunc.c (ssl_init_prng): New function; seed the SSL RNG.
109
110 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
111
112         * progress.c: Renamed dp_* functions to dot_* for greater clarity
113         and consistency with bar_*.
114         (print_download_speed): Get rid of the unneeded '@' character.
115         (create_image): Fix download rate geometry.
116
117         * progress.c (print_elapsed): Remove spurious space.
118         (print_elapsed): Renamed to print_download_speed, since that's
119         what it does.
120
121 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
122
123         * progress.c (bar_update): If the downloaded amount becomes larger
124         than the expected amount, adjust the expected amount accordingly.
125
126 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
127
128         * utils.c (determine_screen_width): New function.
129
130         * main.c (main): New option `--progress=TYPE'.
131         (main): Implement compatibility with the old option `--dot-style'.
132
133         * init.c: Removed cmd_spec_dotstyle -- that logic is now in
134         dp_set_params.
135         (cmd_spec_progress): New function.
136
137         * retr.c (get_contents): Use the progress_* functions instead of
138         the old show_progress().
139         (show_progress): Removed.
140         (rate): Print "xxxx.xx K/s" instead of "KB/s".  Ditto for MB/s,
141         etc.
142
143         * progress.c (set_progress_implementation): New function.
144         (valid_progress_implementation_p): Ditto.
145         (progress_create): Ditto.
146         (progress_update): Ditto.
147         (progress_finish): Ditto.
148         (dp_create): Ditto.
149         (dp_update): Ditto.
150         (dp_finish): Ditto.
151         (dp_set_params): Ditto.
152         (print_elapsed): Ditto.
153
154 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
155
156         * retr.c (show_progress): Use it.
157
158         * log.c (log_set_flush): New function.
159
160 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
161
162         * utils.c (path_simplify): Don't remove trailing slashes.
163
164         * ftp.c (ftp_get_listing): Use it.
165
166         * utils.c (file_merge): New function.
167
168         * url.c (opt_url): Removed.
169
170         * recur.c (recursive_retrieve): Inline "opt_url" logic.
171
172         * main.c (main): Use xfree(), not free().
173
174         * url.c (rewrite_url_maybe): Renamed to rewrite_shorthand_url.
175
176         * ftp.c (ccon): Move `ccon' typedef here, since it's only used
177         internally.
178
179         * config.h.in: Include a stub for HAVE_STRPBRK.
180
181         * cmpt.c (strpbrk): Include a replacement for systems without
182         strpbrk().
183
184         * ftp.c: Use url_set_dir and url_set_file when modifying the URL.
185
186         * url.c (url_set_dir): New function.
187         (url_set_file): Ditto.
188
189         * ftp-basic.c (ftp_process_type): Process FTP type here; the URL
190         parser makes the URL "params" available, so we can do that in this
191         function.
192
193         * retr.c: Ditto.
194
195         * ftp.c: Ditto; pass the local file information in `ccon'.
196
197         * http.c: Get rid of the ugly kludge that had URL being replaced
198         with the proxy URL when proxy retrieval was requested.  Use a
199         separate parameter to http_loop and gethttp for the proxy URL.
200
201         * http.c: Changed to reflect the fact that local file, proxy, and
202         referer information are no longer stored in struct url.  The local
203         file information is passed in `struct hstat' now.
204
205         * url.c: Reworked URL parsing to be more regular.  Reencode the
206         URL using reencode_string.
207         Removed non-URL-related information from struct url.  This
208         includes fields `proxy', `local', and `referer'.
209
210 2001-11-22  Jochen Hein  <jochen@jochen.org>
211
212         * main.c (main): Split the copyright notice for easier
213         translation.
214
215 2001-08-21  Dave Turner <dct25@hermes.cam.ac.uk>
216
217         * ftp-basic.c (ftp_size): New function to send non-standard SIZE
218           command to server to request file size.
219         * ftp.h (ftp_size): Export it.
220         * ftp.c (getftp): Use new ftp_size function if restoring
221           transfer of a file with unknown size.
222
223 2001-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
224
225         * url.c (parseurl): Don't depend on the now-obsolete TYPE.
226
227 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
228
229         * url.c (getproxy): Handle URL shorthands.
230
231 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
232
233         * main.c: Remove --wait / --waitretry backwards compatibility
234         code.
235         
236 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
237
238         * main.c (main): Use it.
239
240         * url.c (rewrite_url_maybe): New function.
241
242 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
243
244         * url.c: Clean up handling of URL schemes.
245
246 2001-05-13  Hrvoje Niksic  <hniksic@arsdigita.com>
247
248         * url.c: Get rid of `protostrings'.
249         (skip_proto): Don't use protostrings.
250         (has_proto): Ditto.
251
252 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
253
254         * Makefile.in: Conditionally compile getopt.o.
255
256 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
257
258         * md5.h: Renamed to gnu-md5.h.
259
260         * md5.c: Renamed to gnu-md5.c.
261
262         * http.c: Ditto.
263
264         * ftp-opie.c: Use the new macros.
265
266         * sysdep.h: Define md5-related macros.
267
268         * config.h.in: Define HAVE_SOLARIS_MD5 or HAVE_BUILTIN_MD5
269         depending on which md5 implementation is used.
270
271 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
272
273         * res.c (res_register_specs): Initialize OLD and HP_OLD to appease
274         the compiler.
275
276 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
277
278         * http.c (gethttp): Print the whole response line when printing
279         headers is requested.
280
281 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
282
283         * res.c: New file.  Implement all RES-related code here.
284
285 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
286
287         * version.c: Wget 1.7.1 is released.
288
289 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
290
291         * headers.c (header_extract_number): Ignore trailing whitespace.
292
293 2001-08-24  Ian Abbott  <abbotti@mev.co.uk>
294
295         * html-url.c (collect_tags_mapper): Fix bug converting links
296         with -k option for tags with multiple link attributes by
297         handling links in the order they appear.
298
299 2001-08-15  Ian Abbott  <abbotti@mev.co.uk>
300
301         * ftp.c (ftp_loop_internal): Avoid a potential buffer overflow in
302           the call to the 'rate' function by moving it past the error
303           checking for the 'getftp' function return value.
304
305 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
306
307         * html-parse.c (advance_declaration): Use 0x22 instead of '"' or
308         '\"'.  Different compilers' assert macros are broken in different
309         ways.
310
311 2001-09-29  Christian Fraenkel  <c.fraenkel@gmx.net>
312
313         * http.c (gethttp): print debug output for errors occuring during
314         the ssl handshake.
315
316 2001-11-16  Chris Seawood  <cls@seawood.org>
317
318         * init.c: Ditto.
319
320         * host.c: Ditto.
321
322         * connect.c: Ditto.
323
324         * sysdep.h: Support compilation under BEOS.
325
326 2001-06-08  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
327
328         * url.c (url_equal): Fix a memory leak when parseurl returns an
329         error on the second URL. Also, since url_equal is not used at the
330         moment, do not compile it.
331
332         * url.h: Ditto for the prototype of url_equal.
333
334 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
335
336         * html-parse.c (map_html_tags): Support XML-style empty tags.
337
338 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
339
340         * wget.h (DO_REALLOC_FROM_ALLOCA): Check for do_realloc_newsize in
341         loop condition because we're no longer setting SIZEVAR here.
342
343 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
344
345         * wget.h (DO_REALLOC_FROM_ALLOCA): Set SIZEVAR after the memcpy()
346         call because it needs the old value.
347
348 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
349
350         * cookies.c (ATTR_NAME_CHAR): Allow almost any character to be in
351         an attribute name.
352
353 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
354
355         * url.c (url_filename): Make sure that slashes that sneak in to
356         u->file via query string get protected.
357         (file_name_protect_query_string): New function.
358
359 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
360
361         * recur.c (recursive_retrieve): Also check undesirable_urls with
362         canonicalized URL.
363
364 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
365
366         * http.c (gethttp): Search `.netrc' with real host, not the proxy
367         one.
368
369 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
370
371         * sysdep.h (MAP_FAILED): Provide MAP_FAILED for systems that don't
372         define it.
373
374 2001-06-09  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
375
376         * ftp.h: Provide correct prototype for ftp_parse_ls().
377
378 2001-06-04  Hrvoje Niksic  <hniksic@arsdigita.com>
379
380         * version.c: Wget 1.7 is released.
381
382 2001-06-03  Karl Eichwalder  <ke@suse.de>
383
384         * ftp-ls.c (ftp_parse_ls): Fix typo.
385
386 2001-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
387
388         * all: Update copyright information.
389
390 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
391
392         * http.c (gethttp): Indicate that the continued download failed
393         for *this* file.
394
395 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
396
397         * version.c: Wget 1.7-pre1 is released.
398
399 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
400
401         * version.c: Updated version to 1.7-pre1.
402
403 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
404
405         * gen_sslfunc.c: Don't include <sys/time.h> directly.
406
407 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
408
409         * http.c (gethttp): Use real URL data for cookies, not the proxy
410         stuff.
411
412 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
413
414         * main.c (print_help): Document `--no-http-keep-alive'.
415
416         * utils.c (numdigit): Handle negative numbers *correctly*.
417
418         * hash.c (make_nocase_string_hash_table): Use term "nocase" rather
419         than the confusing "unsigned".
420
421         * utils.c (string_set_contains): Renamed from string_set_exists.
422
423         * hash.c (hash_table_contains): Renamed from hash_table_exists.
424
425         * cookies.c: Move case-insensitive hash tables to hash.c.
426
427 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
428
429         * http.c (gethttp): Before concluding that the file is already
430         fully retrieved, make sure that the file existed and `Range' was
431         actually requested.
432
433 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
434
435         * cookies.c (eliminate_dups): New function.
436         (build_cookies_request): Use it.
437         (build_cookies_request): Set chain_store_size after reallocating
438         all_chains.
439         (check_domain_match): Annotated for easier future debugging.
440         (store_cookie): In the debug message, print whether the cookie is
441         permanent.
442
443 2001-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
444
445         * http.c (http_loop): Reset no_truncate before deciding whether to
446         set it.
447         (gethttp): Further clarify "-c conflicts with existing file" error
448         message, based on input from Herold Heiko.
449
450 2001-05-07  Hrvoje Niksic  <hniksic@arsdigita.com>
451
452         * http.c (http_loop): If restval is set, set no_truncate to 1
453         unconditionally.
454
455 2001-05-02  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
456
457         * ftp-ls.c (ftp_parse_winnt_ls): Assure months are being correctly
458         converted. Pointed out by <Stefan.Weil@de.heidelberg.com>.
459         (ftp_parse_vms_ls): Ditto.
460
461 2001-04-30  Hrvoje Niksic  <hniksic@arsdigita.com>
462
463         * init.c (cmd_address): Zero SIN before using it; apparently
464         needed on *BSD.
465
466 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
467
468         * ftp.c (ftp_loop_internal): Don't set NO_TRUNCATE if the file is
469         empty.
470
471 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
472
473         * main.c (main): Make `--cookies' respect its argument.
474
475 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
476
477         * main.c (main): Removed undocumented option `--email-address'.
478
479         * netrc.c: Use the latest read_whole_line.
480
481         * init.c (defaults): Set opt.ftp_pass to "-wget@".
482
483         * mswindows.c (pwd_cuserid): Ditto.
484
485         * utils.c (pwd_cuserid): Removed.
486
487         * host.c (ftp_getaddress): Removed.
488
489 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
490
491         (http_loop): Allocate space for filename_plus_orig_suffix with
492         alloca; this is more efficient and removes the need to free it
493         before each and every return.
494
495 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
496
497         * http.c (gethttp): Return RETRUNNEEDED when the retrieval is
498         unneeded because the file is already there and fully downloaded,
499         and -c is specified.
500         (http_loop): Handle RETRUNNEEDED.
501
502         * wget.h (uerr_t): New value RETRUNNEEDED.
503
504         * http.c (http_loop): Set no_truncate for files that both exist
505         and are non-empty.
506         (gethttp): Consider the download finished when restval >= contlen,
507         not only when restval==contlen.
508         (gethttp): Handle redirection before giving up due to -c.
509         (gethttp): Clarify error message which explains that -c will not
510         truncate the file.
511         (gethttp): When returning CONTNOTSUPPORTED, don't forget to free
512         the stuff that needs freeing and release the socket.
513
514 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
515
516         * main.c (print_help): Wget booleans accept "off", not "no".
517
518 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
519
520         * http.c (http_loop): If allow_cache is zero, always disable
521         caching, not only when retrieving through proxy.
522
523         * init.c: Ditto.
524
525         * options.h (struct options): Rename proxy_cache to allow_cache.
526
527 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
528
529         * http.c (mktime_from_utc): Improve documentation.
530         (http_atotm): Put format strings into a separate array.
531
532 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
533
534         * safe-ctype.h: Instead of throwing #error when isalpha is
535         defined, redefine it to something that will throw a compile-time
536         error if actually *used*.  Do the same for the rest of the
537         standard C macros.
538
539 2001-04-26  Hrvoje Niksic  <hniksic@arsdigita.com>
540
541         * url.c (getproxy): Ignore empty proxy vars.
542
543 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
544
545         * http.c (http_loop): Would load cookies every time.
546
547         * cookies.c (load_cookies): Handle cookies whose values contain
548         embedded spaces.
549
550 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
551
552         * utils.c: Define each DIGITS_* in one line.
553
554 2001-04-25  Roger L. Beeman  <beeman@cisco.com>
555
556         * http.c (http_atotm): Initialize t.tm_isdst to 0.
557         (mktime_from_utc): Prevent mktime() from having discontinuities at
558         DST transition points.
559
560 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
561
562         * html-url.c (get_urls_html): Fix documentation.
563
564 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
565
566         * url.c (UNSAFE_CHAR): Reimplement using a static table.
567         (url_init): Removed.
568         (init_unsafe_char_table): Removed.
569
570 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
571
572         * snprintf.c (dopr): Replace ISDIGIT with '0' <= ch && ch <= '9'.
573
574 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
575
576         * utils.c: Document timer functions.
577
578         * retr.c (rate): Use it.
579         (rate): Print in GB/s if transfer rate exceeds 1 GB/s.
580
581         * utils.c (wtimer_granularity): New function.
582
583 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
584
585         * retr.c (show_progress): Ditto.
586
587         * ftp.c (getftp): Ditto.
588
589         * http.c (gethttp): Use new timer functions.
590
591         * utils.c (wtimer_allocate): New function.
592         (wtimer_new): Ditto.
593         (wtimer_delete): Ditto.
594         (wtimer_reset): Ditto.
595         (wtimer_elapsed): Ditto.
596
597 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
598
599         * utils.c (long_to_string): New, faster version.  Favors smaller
600         numbers; much of the calculation is now done at compile-time.
601
602 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
603
604         * utils.c (numdigit): Handle negative numbers.
605
606 2001-04-23  Hrvoje Niksic  <hniksic@arsdigita.com>
607
608         * retr.c (show_progress): Print the download rate even when the
609         percentages are not available.
610
611 2001-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
612
613         * ftp.c (getftp): Adjust expected_bytes if the length is
614         authoritative.
615
616 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
617
618         * url.c: Don't declare `construct'.
619
620         * hash.c (grow_hash_table): Speed up rehashing; inline storing of
621         mappings to new locations.
622         (hash_table_new): Make resize_threshold a field in the hash table,
623         so we don't have to recalculate it in each hash_table_put.
624         (grow_hash_table): Update resize_threshold.
625         (MAX): Remove unused macro.
626         (prime_size): Made static.
627
628 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
629
630         * retr.c (retrieve_url): Call uri_merge, not url_concat.
631
632         * html-url.c (collect_tags_mapper): Call uri_merge, not
633         url_concat.
634
635         * url.c (mkstruct): Use encode_string instead of xstrdup followed
636         by URL_CLEANSE.
637         (path_simplify_with_kludge): Deleted.
638         (contains_unsafe): Deleted.
639         (construct): Renamed to uri_merge_1.
640         (url_concat): Renamed to uri_merge.
641
642 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
643
644         * url.c (str_url): Use encode_string instead of the unnecessary
645         CLEANDUP.
646         (encode_string_maybe): New function, returns input string if no
647         encoding is needed.
648         (encode_string): Call encode_string_maybe to do the dirty work,
649         xstrdup if no work needed.
650
651 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
652
653         * wget.h (XDIGIT_TO_xchar): Define here.
654
655         * url.c (decode_string): Use new name.
656         (encode_string): Ditto.
657
658         * http.c (XDIGIT_TO_xchar): Rename HEXD2asc to XDIGIT_TO_xchar.
659         (dump_hash): Use new name.
660
661         * wget.h: Rename ASC2HEXD and HEXD2ASC to XCHAR_TO_XDIGIT and
662         XDIGIT_TO_XCHAR respectively.
663
664 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
665
666         * init.c: Include cookies.h.
667
668         * cookies.h: Declare cookies_cleanup.
669
670         * cookies.c (check_domain_match): Remove unused variable.
671         (save_cookies): Remove extraneous argument from debug statement.
672
673         * host.c (same_host): Don't call skip_url.
674
675         * url.c (skip_url): Removed.  Removed its calls from various
676         functions in url.c.
677
678 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
679
680         * cookies.c (unsigned_string_hash): Use the new code in
681         string_hash as reference.
682
683         * hash.c (hash_table_map): Allow deletion and change of the
684         element processed by MAPFUN.
685         (string_hash): Use the function from glib.
686
687 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
688
689         * config.h.in: Include #undef stub.
690
691         * hash.c (hash_table_remove): Rewrite to actually clear deleted
692         entries instead of just marking them as deleted.
693
694 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
695
696         * hash.h: Declare hash_table_get_pair and hash_table_count.
697
698 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
699
700         * cookies.c: Declare http_atotm.
701
702 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
703
704         * ftp-ls.c (ftp_parse_unix_ls): Use octal constants for
705         permissions.  A compiler that doesn't accept octal constants is
706         seriously broken and shouldn't be used -- octal constants were
707         present in K&R C!
708
709 2001-01-20  Karl Eichwalder  <ke@suse.de>
710
711         * Makefile.in: Provide and use DESTDIR according to the Coding
712         Standards.
713
714 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
715
716         * ftp-ls.c (ftp_parse_vms_ls): Make seconds optional in time
717         specification.
718
719 2001-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
720
721         * url.c (parseurl): Don't strip trailing slash when u->dir is "/"
722         because that strips the *leading* slash, thus forcing relative
723         FTP retrieval.
724
725 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
726
727         * ftp.c (getftp): Convert initial FTP directory from VMS to UNIX
728         notation for VMS servers. 
729         (ftp_retrieve_dirs): Do not prepend '/' to f->name when
730         odir is an empty string.
731
732 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
733
734         * ftp-ls.c (ftp_parse_winnt_ls): Made the fix for AM/PM more
735         effective. Suggested by Edward J. Sabol.
736
737 2001-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
738
739         * cookies.c (build_cookies_request): Use and sort cookies from all
740         matching domains.
741         (build_cookies_request): Check for duplicates before generating
742         the `Cookies' header.
743
744         * main.c (main): Don't load cookies here.
745         (main): Make loadcookies and savecookies call the correct command.
746
747         * http.c (http_loop): Load cookies on-demand.
748
749 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
750
751         * http.c (gethttp): Fix indentation of SSL ifdef.
752
753 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
754
755         * ftp.c (ftp_retrieve_dirs): Don't forcibly prepend "/" to u->dir;
756         that hack is no longer necessary.
757         (getftp): Prepend initial directory to *non*-absolute u->dir's.
758
759 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
760
761         * init.c (cmd_file): New function.
762         (enable_tilde_expansion): New variable.
763         (run_wgetrc): Use it.
764         (cmd_file): Use it.
765
766 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
767
768         * init.c: Include cookie-related options.
769
770         * main.c (main): Include cookie-specific options.
771         (main): Load cookies before download is finished.
772         (main): Save cookies when done.
773
774         * http.c (gethttp): Process the `Set-Cookie' header.
775         (gethttp): Include cookies in the response.
776
777         * cookies.c: New file.
778
779 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
780
781         * utils.c (datetime_str): New function.
782
783 2001-04-08  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
784
785         * ftp-ls.c (ftp_parse_winnt_ls): The AM/PM change did assume
786         12:01PM == 00:01, which was obviously wrong. Taken care of this
787         anomaly.
788
789         * ChangeLog: Removed an excess conflict marker. Reformatted the
790         entry by Philipp Thomas from 2001-03-09.
791
792         * ftp-ls.c (ftp_parse_winnt_ls): Ensure that adjusted PM hours lay
793         between 0 and 23. Elminate unused variable `sec'.
794
795 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
796
797         * hash.c (hash_table_count): New function.
798
799 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
800
801         * utils.c (read_file): Cast MAP_FAILED to char *.  Enforced by
802         Digital Unix cc.
803
804 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
805
806         * config.h.in: Oops, do the namespace tweaks only on systems we
807         know about.
808
809 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
810
811         * hash.c: Include <string.h>.
812
813 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
814
815         * config.h.in: Define "compilation environment" options that work
816         under Linux and Solaris.  To be reviewed on other OS'es.
817
818 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
819
820         * http.c (gethttp): Prepend literal newline with `\n\'.
821
822 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
823
824         * sysdep.h: Don't define VERY_LONG_FORMAT.
825
826         * utils.c (very_long_to_string): New function.
827         (legible_very_long): Use it; don't use VERY_LONG_FORMAT.
828
829 2001-04-04  Christian Fraenkel  <christian.fraenkel@gmx.net>
830
831         * url.c (parse_uname): Would run past the end of the string if the
832         username was present, but the URL did not contain a slash, e.g.
833         http://foo:bar@myhost.
834
835 2001-04-03  KOJIMA Hajime  <kjm@rins.ryukoku.ac.jp>
836
837         * http.c (http_atotm): Use %A instead of %a to match full
838         weekday.  (On most systems there is no difference.)
839
840 2001-04-03  Paul Bludov  <paul@ozero.net>
841
842         * mswindows.c (sleep): Use SleepEx() instead of Sleep().
843         (ws_changetitle): Use alloca() instead of malloc() to avoid memory
844         leak.
845         (ws_mypath): Use GetModuleFileName instead of argv[0].
846         (ws_startup): Use data.wVersion for comparison.
847
848 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
849
850         * http.c (http_loop): Ditto.
851
852         * ftp.c (ftp_loop_internal): Made the check whether to continue
853         retrieval `-O'-friendly.
854
855 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
856
857         * netrc.c (parse_netrc): Don't trim the line endings explicitly;
858         they will be handled as whitespace.
859         (parse_netrc): Correctly handle lines that end with whitespace.
860
861 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
862
863         * retr.c (retrieve_url): New variable global_download_count used
864         to identify first retrieval.
865
866         * ftp.c (getftp): Ditto.
867
868         * http.c (gethttp): Rewind opt.dfp only on first retrieval.
869
870 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
871
872         * init.c (cmd_address): Heap-allocate the address that gets stored
873         to CLOSURE.  Old code would simply assign an address on the stack.
874
875 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
876
877         * ftp.c (ftp_get_listing): Propagate error status.
878         (ftp_retrieve_glob): Use it.
879         (ftp_loop): Ditto.
880
881 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
882
883         * main.c (main): Add -C to the string that is the third arg to
884         getopt_long().
885
886 2001-04-01  Hrvoje Niksic  <hniksic@arsdigita.com>
887
888         * ftp.c (getftp): Don't start the download from scratch if `-c'
889         was specified, but the file is already fully downloaded.
890
891         * http.c (gethttp): Don't truncate a pre-existing file if `-c' was
892         specified and the server doesn't support continued download.
893         (gethttp): Don't start the download from scratch if `-c' was
894         specified, but the file is already fully downloaded.
895
896 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
897
898         (recursive_retrieve): Don't clear the hash tables at this point at
899         all; it interferes with the normal operation of register_download.
900
901 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
902
903         * recur.c (recursive_retrieve): Clear the hash tables only when
904         they are defined.
905
906 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
907
908         * http.c (gethttp): Make sure the socket is closed with
909         CLOSE_INVALIDATE before we have drained the body.
910
911 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
912
913         * retr.c (retrieve_url): Call register_download() for downloaded
914         files and register_html() for downloaded HTML files.
915
916         * recur.c (register_download): New function; register here that a
917         file has been downloaded, rather than in recursive_retrieve().
918         (register_html): New function; enqueue the location of HTML files
919         here rather than in recursive_retrieve().
920
921 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
922
923         * main.c (print_help): Use multiple fputs instead of a single ugly
924         printf().
925         (main): Consistently assign numbers >128 to options without a
926         corresponding character.
927
928 2001-03-09  Philipp Thomas  <pthomas@suse.de>
929
930         * safe-ctype.h: New file. Locale independent ctype.h replacement
931         taken from libiberty.
932
933         * safe-ctype.c: New file. Tables for above.
934
935         * Makefile.in: Add safe-ctype$o to OBJS.  Add dependencies for
936         safe-ctype$o.
937
938         * cmpt.c: Remove include of ctype.h. Use ISSPACE instead of
939         isspace.
940
941         * ftp-basic.c: Don't include ctype.h.
942
943         * ftp-ls.c: Likewise.
944
945         * ftp.c: Likewise.
946
947         * headers.c: Likewise.
948
949         * host.c: Likewise.
950
951         * html-parse.c: Likewise.
952
953         * html-url.c: Likewise.
954
955         * http.c: Likewise.
956
957         * init.c: Likewise.
958
959         * main.c: Likewise. Set LC_CTYPE along with LC_MESSAGES.
960
961         * netrc.c: Likewise.
962
963         * recur.c: Likewise.
964
965         * retr.c: Likewise.
966
967         * snprintf.c: Replace ctype.h with safe-ctype.h. Use ISDIGIT
968         instead of isdigit.
969
970         * sysdep.h: Remove defines of ctype macros as they aren't needed
971         for safe-ctype-h.
972
973         * url.c: Don't include ctype.h.
974
975         * utils.c: Likewise.
976
977         * wget.h: Include safe-ctype.h.
978
979 2001-03-27  Dan Harkless  <wget@harkless.org>
980
981         * Makefile.in: Moved top_builddir out of "User configuration
982         section" of top Makefile and analogous spot in this one.
983
984 2001-03-17  Dan Harkless  <wget@harkless.org>
985
986         * Makefile.in: Include @SSL_INCLUDES@ substition in INCLUDES.
987         Define top_builddir.  Link wget with libtool so the user doesn't
988         have to supply a bunch of custom environment variables to 
989         correctly link with the OpenSSL shared libraries.
990
991 2001-03-06  Hack Kampbjorn  <hack@hackdata.com>
992
993         * http.c (gethttp): skip :port in host header if it is the
994         DEFAULT_HTTPS_PORT when using SSL.
995
996         * url.c: move the #define of DEFAULT_HTTP_PORT, DEFAULT_FTP_PORT
997         and DEFAULT_HTTPS_PORT to the header file so it can be use in the
998         rest of the code. 
999         * url.h: Ditto
1000
1001 2001-03-01  Jonas Jensen  <bones@huleboer.dk>
1002
1003         * retr.c (show_progress): Correctly calculate the number of bytes
1004         in the first line of the download that have been actually
1005         downloaded in this run.
1006
1007 2001-02-23  Dan Harkless  <wget@harkless.org>
1008
1009         * main.c (print_help): --help documentation for -N said it would
1010         re-download files if they had the _same_ timestamp on server.
1011         (print_help): -nr belongs in "FTP options" section of --help
1012         output, not "Recursive retrieval" section.  Alphabetized FTP
1013         options by long option name.
1014
1015 2001-02-16  Dan Harkless  <wget@harkless.org>
1016
1017         * init.c (commands): Hack Kampbjørn <hack@hackdata.com> discovered
1018         that "httpsproxy" had been inserted into commands[] out of
1019         alphabetical order, causing "BUG: unknown command `httpuser'".
1020
1021 2001-02-13  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
1022
1023         * ftp-ls.c (ftp_parse_ls): Added support of ST_MACOS (Unix-like
1024         listing without correct permissons).
1025
1026         * ftp.h (stype): Added ST_MACOS to identify the NetPresenz MacOS
1027         FTP server. 
1028
1029         * ftp.c (ftp_retrieve_list): New mirroring logic: A remote file
1030         shall be donwloaded only when it's newer than the local copy or
1031         when it has the same timeestamp but its size is different. ST_VMS
1032         and ST_MACOS as special cases that lie about file size. 
1033
1034         * ftp-ls.c (ftp_parse_ls): Support for ST_MACOS.
1035
1036         * Makefile.in: Removed dependency on ftpparse library due to unclear
1037         copyright issues and absence of any feedback to our queries. 
1038
1039         * ftp-ls.c: Removed dependency on ftpparse library due to unclear
1040         copyright issues and absence of any feedback to our queries.   
1041         (ftp_parse_ls): Added a warning message when remote server system
1042         does not seem to be suported by wget. 
1043         (ftp_parse_vms_ls): New function for parsing VMS ftp
1044         server listing output.
1045         (clean_line): New function responsible for removing
1046         end-of-line characters from FTP listing texts.
1047
1048         * ftp.c (getftp): Global variables pwd and host_type are now
1049         member of the ccon structure under names ccon.id and ccon.rs. 
1050
1051         * ftp.h (struct ccon): Added formed global variables from ftp.c,
1052         enum stype rs (remote system identification) and char *id (initial
1053         working directory), as suggested by Hrvoje.
1054
1055         * url.c (parse_uname): Added support for passwords containing '@'
1056         characters.
1057         (skip_uname): Ditto.
1058
1059 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1060
1061         * ftp.c (ftp_loop): Reset con.
1062
1063 2001-01-06  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
1064
1065         * url.c (parse_uname): Added support for passwords containing '@'
1066         characters.
1067         (skip_uname): Ditto.
1068
1069 2001-02-11  Hack Kampbjørn  <hack@hackdata.com>
1070
1071         * url.c (parseurl): Debug-print u->ftp_type.
1072
1073 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1074
1075         * ftp.c (ftp_loop_internal): Disable padding.
1076         (getftp): Ditto.
1077
1078         * http.c (http_loop): Disable padding.
1079
1080         * retr.c (show_progress): Use it to enable padding.
1081
1082         * retr.c (rate): Optional parameter PAD for padding the rate.
1083
1084 2001-02-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1085
1086         * retr.c (show_progress): Make sure that the last output line
1087         includes progress.
1088
1089 2001-02-10  Jonas Jensen  <bones@huleboer.dk>
1090
1091         * retr.c (show_progress): Print the download rate along with the
1092         percentages.
1093         Along with Anders Thorsby <anders@thorsby.dk>.
1094
1095 2001-02-10  Tim Mooney  <mooney@dogbert.cc.ndsu.NoDak.edu>
1096
1097         * ftp.h: Rename enums `command' to `wget_ftp_command' and
1098         `fstatus' to `wget_ftp_status' because old names clash with Tru64
1099         net/if.h.
1100
1101 2001-02-08  Christian Fraenkel <christian.fraenkel@gmx.net>
1102
1103         * gen_sslfunc.c: verify_callback is now static
1104
1105         * gen_sslfunc.c (init_ssl): load certificate if specified
1106
1107         * gen_sslfunc.c (ssl_printerr): new function
1108
1109         * init.c: added new --sslcertfile and --sslcertkey switches
1110
1111         * main.c: ditto
1112
1113         * options.h: ditto
1114
1115         * http.c (gethttp): abort when init_ssl fails
1116
1117 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
1118
1119         * mswindows.h: Include <malloc.h>; it's needed for alloca().
1120
1121 2001-01-10  Dan Harkless  <wget@harkless.org>
1122
1123         * url.c (str_url): Clarified this function's comment header after
1124         Hrvoje answered my question on the list as to when hide != 1.
1125         Also Hrvoje pointed out I need to use xstrdup() on the string literal.
1126
1127 2001-01-06  Hrvoje Niksic  <hniksic@arsdigita.com>
1128
1129         * connect.c (bindport): Declare addrlen as int.  Diagnosed by
1130         Drazen Kacar <dave@arsdigita.com>.
1131         (conaddr): Ditto.
1132
1133 2001-01-09  Dan Harkless  <wget@harkless.org>
1134
1135         * html-url.c: A bunch of fixup of `--page-requisites'-related
1136         comments to reflect Hrvoje's changes to my code when transplanting
1137         it into this new file, to fix spelling mistakes, to clarify, etc.
1138
1139         * url.c (write_backup_file): Clarified a comment.
1140         (str_url): Henrik van Ginhoven pointed out on the list that we
1141         shouldn't give away the number of characters in the password by
1142         replacing each character with a 'x'.  Use "<password>" instead.
1143
1144         * ftp.c (ftp_retrieve_dirs): The bug where recursion into FTP
1145         directories didn't work if logging in put you in a directory other
1146         than "/" is fixed now.  Removed the comment here warning of the bug.
1147
1148         * main.c (print_help): --continue's description was misleading.
1149         We don't "restart", we "resume".  Also, better to say
1150         "partially-downloaded file" rather than just "existing file".
1151
1152 2001-01-06  Dan Harkless  <wget@harkless.org>
1153
1154         * ChangeLog: The '[Not in 1.6 branch.]'s were decided not to be
1155         the best way to go about my aim.  Removed them in favor of:
1156
1157         * ChangeLog-branches/1.6_branch.ChangeLog: New file.
1158
1159 2001-01-04  Hrvoje Niksic  <hniksic@arsdigita.com>
1160
1161         * url.c (replace_attr): New function, to be used by both
1162         TO_COMPLETE and TO_RELATIVE case in convert_links.
1163         (find_fragment): New function for finding URL fragments.
1164         (replace_attr): Better handle the case where the original string
1165         is not quoted.  Use find_fragment.
1166         (convert_links): Use replace_attr().
1167
1168 2000-12-31  Dan Harkless  <wget@harkless.org>
1169
1170         * ChangeLog: Since this flat file doesn't have multiple branches,
1171         looking at the dates would make you think that things went into
1172         1.6 that actually just went into the 1.7-dev branch.  Added "[Not
1173         in 1.6 branch.]" where appropriate to clarify.
1174         
1175 2000-12-30  Dan Harkless  <wget@harkless.org>
1176
1177         * ftp.c, http.c:  Applied Hack Kampbjørn <hack@hackdata.com>'s
1178         patch to deal with h_errno not being defined in netdb.h under Cygwin.
1179
1180 2000-12-18  Csaba Raduly  <csaba.raduly@sophos.com>
1181
1182         * sysdep.h: Include <malloc.h> and <io.h> under Watcom.
1183
1184 2000-12-17  Igor Khristophorov  <igor@atdot.org>
1185
1186         * http.c (check_end): Fix test for '+' or '-'.
1187
1188 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
1189
1190         * url.c (parseurl): Rename inner loop var from i to ind to avoid
1191         clash with the function top-level-declared variable i.
1192         (str_url): Likewise, rename inner-loop i to j.
1193
1194         * recur.c (parse_robots): Don't declare LEN at top of function.
1195         (robots_match): Renamed parameter FORBIDDEN to avoid hiding of
1196         global variable.
1197
1198         * main.c (main): Change erroneous use of bitwise and to logical.
1199
1200         * init.c (cmd_address): Don't heap-allocate `sin'; it can be on
1201         the stack because it will be copied to closure.
1202
1203         Thanks to Csaba Raduly's run of PC-LINT over the sources.
1204
1205 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
1206
1207         * http.c (basic_authentication_encode): Use xmalloc(), not
1208         malloc().  Thanks to Csaba Raduly's run of PC-LINT over the
1209         sources.
1210
1211 2000-12-17  Csaba Raduly  <csaba.raduly@sophos.com>
1212
1213         * sysdep.h: Test for __EMX__ rather than for EMXOS2 for OS/2
1214         compilation.
1215
1216 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
1217
1218         * mswindows.c: Include <errno.h>.
1219
1220         * gen_sslfunc.c: Include <errno.h>.
1221
1222         * ftp-basic.c: Don't attempt to declare errno or h_errno because
1223         they're not used.
1224
1225         * main.c: Include <errno.h> because errno is used.
1226
1227         * ftp.c: Ditto.
1228
1229         * http.c: Include <netdb.h> for h_errno.
1230
1231 2000-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
1232
1233         * html-parse.c (advance_declaration): MSVC assert() chokes on
1234         '\"'.  Use '"' instead.
1235
1236 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1237
1238         * utils.c (xfree_real): Removed.
1239         (xfree_debug): Just call free().
1240
1241         * wget.h (xfree): Make it an alias for free.
1242
1243 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1244
1245         * http.c (http_loop): Furthermore, touch output_document only if
1246         it is known to be an existing regular file.
1247
1248 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
1249
1250         * ftp.c (ftp_retrieve_list): Ditto.
1251
1252         * http.c (http_loop): Touch output_document if that is used for
1253         output.
1254
1255 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
1256
1257         * http.c: Include gen_sslfunc.h after including Wget's headers.
1258         (persistent_available_p): Needed coma before `int ssl'.
1259
1260 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
1261
1262         * ftp.c (ftp_loop_internal): Ditto.
1263
1264         * http.c (http_loop): Use it.
1265
1266         * retr.c (sleep_between_retrievals): New function that handles the
1267         logic of opt.wait and opt.waitretry.
1268
1269 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
1270
1271         * rbuf.h: Implement only a single version of RBUF_READCHAR, using
1272         rbuf_read_bufferful when the buffer is depleted.
1273
1274         * rbuf.c (rbuf_read_bufferful): New function.
1275
1276 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
1277
1278         * gen_sslfunc.h: Use ansi2knr style function declarations.
1279
1280         * gen_sslfunc.c: Reformat according to the GNU coding standards.
1281         More should be done.
1282
1283         * http.c (persistent_available_p): Place the cheap SSL test nearer
1284         the top of the function.
1285         (CLOSE_FINISH, CLOSE_INVALIDATE): Define only one version of each.
1286
1287 2000-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
1288
1289         * url.c (init_unsafe_char_table): Reinstate space as an unsafe
1290         char.
1291
1292 2000-12-03  Christian Fraenkel <christian.fraenkel@gmx.net>
1293
1294         * Makefile.in: added gen_sslfunc object
1295         * config.h.in: added HAVE_SSL define
1296         * connect.c: changed select_fd from static int to int
1297         * connect.h: ditto
1298         * gen_sslfunc.h: New file
1299         * gen_sslfunc.c: ditto
1300         * http.c: added HTTPS fuctionality
1301         * retrc.c: ditto
1302         * url.c: ditto
1303         * init.c: added opt.httpsproxy
1304         * options.h: ditto
1305         * rbuf.h: added alternate rbuf struct
1306         * wget.h: added CONSSLERR
1307         * rbuf.c: ditto
1308
1309         * http.c: Added HTTPS fuctionality.
1310
1311         * retrc.c: Ditto.
1312
1313         * url.c: Ditto.
1314
1315         * init.c: Added opt.httpsproxy.
1316
1317         * options.h: Ditto.
1318
1319         * rbuf.h: Added alternate rbuf struct.
1320
1321         * wget.h: Added CONSSLERR.
1322
1323         * rbuf.c: Ditto.
1324
1325 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
1326
1327         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
1328         "ignore_perms" to ignore file and directory permissions for
1329         Windows NT FTP server listings.
1330         (ftp_parse_winnt_ls): New function.
1331         (ftp_parse_ls): Parses UNIX and Windows NT listings
1332         separately. Simple heuristics for distinguishing between UNIX and
1333         MS-DOS-like FTP listing provided by Windows NT FTP service.
1334
1335 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
1336
1337         * ftpparse.c, ftpparse.h: New files.
1338
1339         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
1340         only. Use ftp_parse_nonunix_ls otherwise.
1341         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
1342         exotic FTP servers.
1343
1344         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
1345         FTP servers.
1346
1347         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
1348         (getftp): Support for VMS. Support for FTP servers that do not
1349         place you in the root directory after login.
1350         (ftp_retrieve_list): VMS is silent about the real file size, issue
1351         a more appropriate message.
1352         (ftp_get_listing): Pass host_type to ftp_parse_ls.
1353
1354         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
1355
1356 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
1357
1358         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
1359         "ignore_perms" to ignore file and directory permissions for
1360         Windows NT FTP server listings.
1361         (ftp_parse_winnt_ls): New function.
1362         (ftp_parse_ls): Parses UNIX and Windows NT listings
1363         separately. Simple heuristics for distinguishing between UNIX
1364         and MS-DOS-like FTP listing provided by Windows NT FTP service.
1365
1366 2000-11-29  John Summerfield  <summer@OS2.ami.com.au>
1367
1368         * netrc.c (parse_netrc): Get rid of line ending.
1369
1370 2000-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
1371
1372         * ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by
1373         Dan.
1374
1375 2000-11-24  Karl Eichwalder  <ke@suse.de>
1376
1377         * main.c (print_help): Untabify.
1378
1379 2000-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
1380
1381         * utils.c (xrealloc_debug): Do the unregister/register thing only
1382         if the pointer has actually changed.
1383         (xmalloc_real): Declare `static' in DEBUG_MALLOC builds.
1384         (xfree_real): Ditto.
1385         (xrealloc_real): Ditto.
1386         (xstrdup_real): Ditto.
1387
1388 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
1389
1390         * ftp.c (getftp): ftp_getaddress() returns a malloc'ed copy of the
1391         string; no need to strdup() it.
1392         (getftp): Make pwd_len a local variable.
1393         (ftp_loop): Free PWD before returning.
1394
1395         * init.c (cleanup): Free opt.ftp_pass only if it's non-NULL.
1396
1397 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
1398
1399         * all: Use xfree() instead of free.
1400
1401         * utils.c (xfree): New function.
1402
1403 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
1404
1405         * url.c (convert_links): HTML-quote the converted string.
1406
1407         * utils.c (html_quote_string): Move here from ftp-ls.c
1408         (html_quote_string): Make non-static; declare in utils.h.
1409         (html_quote_string): Convert SP to &#32;.
1410
1411 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
1412
1413         * ftp.c (getftp): Reformat Jan's code according to GNU coding
1414         standards; remove (debugging?) printf's; use '\0' for the ASCII
1415         zero character.  Use alloca() instead of malloc() for
1416         inter-function temporary allocations.
1417
1418 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
1419
1420         * ftpparse.c, ftpparse.h: New files.
1421
1422         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
1423         only. Use ftp_parse_nonunix_ls otherwise.
1424         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
1425         exotic FTP servers.
1426
1427         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
1428         FTP servers.
1429
1430         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
1431         (getftp): Support for VMS. Support for FTP servers that do not
1432         place you in the root directory after login.
1433         (ftp_retrieve_list): VMS is silent about the real file size, issue
1434         a more appropriate message.
1435         (ftp_get_listing): Pass host_type to ftp_parse_ls.
1436
1437         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
1438
1439 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
1440
1441         * hash.c (hash_table_put): Don't overwrite deleted mappings.
1442
1443 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
1444
1445         * hash.c (find_mapping): New function.
1446         (hash_table_get): Use it.
1447         (hash_table_get_pair): Ditto.
1448         (hash_table_exists): Ditto.
1449         (hash_table_remove): Ditto.
1450         (hash_table_remove): Really delete the entry if the mapping
1451         following LOCATION is empty.
1452
1453         * utils.c (string_set_add): Check whether the element has existed
1454         before.
1455
1456         * hash.c (hash_table_get_pair): New function.
1457
1458 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1459
1460         * http.c (http_process_type): Ignore trailing whitespace; use
1461         strdupdelim().
1462
1463         * recur.c (recursive_retrieve): Use the new `convert' field.
1464         (convert_all_links): Ditto.
1465         (convert_all_links): Don't respect meta_disallow_follow.
1466
1467         * html-url.c (handle_link): Fill out link_relative_p and
1468         link_complete_p.
1469
1470         * url.h (struct _urlpos): Make elements more readable.
1471
1472         * recur.c (recursive_retrieve): Call slist_prepend instead of
1473         slist_append.
1474         (convert_all_links): Call slist_nreverse before iterating through
1475         urls_html.
1476
1477         * utils.c (slist_prepend): New function.
1478         (slist_nreverse): Ditto.
1479
1480 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1481
1482         * http.c (check_end): Constify.
1483
1484 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1485
1486         * http.c (http_loop): If username and password are known, try the
1487         `Basic' authentication scheme by default.
1488
1489         * connect.h: Declare test_socket_open.
1490
1491 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1492
1493         * version.c: Bump version from 1.5.3+dev to 1.7-dev.
1494
1495 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1496
1497         * http.c (gethttp): Don't use the return value of sprintf().
1498         (gethttp): Inhibit keep-alive if opt.http_keep_alive is 0.
1499
1500 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
1501
1502         * recur.c (recursive_retrieve): Print the "so we don't load"
1503         debugging message only if we really don't load.
1504
1505         * http.c (gethttp): Inhibit keep-alive if proxy is being used.
1506         (gethttp): Don't request keep-alive if keep-alive is inhibited.
1507
1508 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
1509
1510         * http.c (gethttp): Make the HTTP persistent connections more
1511         robust.
1512
1513 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
1514
1515         * retr.c (get_contents): If use_expected, make sure that the
1516         appropriate amount of data is being read.
1517
1518         * http.c (gethttp): Check for both `Keep-Alive: ...' and
1519         `Connection: Keep-Alive'.
1520
1521         * wget.h (DEBUGP): Call debug_logprintf only if opt.debug is
1522         turned on.
1523
1524 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
1525
1526         * http.c (connection_available_p): Use it.
1527
1528         * connect.c (test_socket_open): New function.
1529
1530         * http.c (gethttp): Support persistent connections.  Based on the
1531         ideas, and partly on code, by Sam Horrocks <sam@daemoninc.com>.
1532         (register_persistent): New function.
1533         (connection_available_p): Ditto.
1534         (invalidate_connection): Ditto.
1535
1536 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
1537
1538         * url.c (convert_links): Handle UREL2ABS case.
1539
1540         * recur.c (recursive_retrieve): Instead of the list
1541         urls_downloaded, use hash tables dl_file_url_map and
1542         dl_url_file_map.
1543         (convert_all_links): Use them to retrieve data.
1544
1545         * host.c (clean_hosts): Free the hash tables.
1546
1547         * main.c (private_initialize): Call host_init().
1548
1549         * host.c (store_hostaddress): Use a saner, hash table-based data
1550         model.
1551         (realhost): Ditto.
1552         (host_init): Initialize the hash tables.
1553
1554 2000-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
1555
1556         * utils.c (slist_append): Eviscerate NOSORT.  Hash tables are now
1557         used for what the sorted slists used to be used for.
1558         (slist_contains): Don't rely on the list being sorted.
1559         (slist_append): Simplify the code.
1560
1561         * recur.c (recursive_cleanup): Use free_string_set.
1562
1563         * utils.c (string_set_add, string_set_exists, string_set_free):
1564         New functions for easier freeing of hash tables whose keys are
1565         strdup'ed strings.
1566
1567         * recur.c (recursive_retrieve): Use the hash table functions for
1568         storing undesirable URLs.
1569
1570         * hash.c: New file.
1571
1572 2000-11-17  Hrvoje Niksic  <hniksic@arsdigita.com>
1573
1574         * main.c (private_initialize): Call url_init.
1575         (main): Call private_initialize.
1576
1577         * url.c (unsafe_char_table): New table.
1578         (UNSAFE_CHAR): Use it.
1579         (init_unsafe_char_table): New function.
1580         (url_init): New function; call init_unsafe_char_table.
1581
1582 2000-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
1583
1584         * mswindows.h: Define snprintf and vsnprintf to _snprintf and
1585         _vsnprintf respectively.
1586
1587 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
1588
1589         * config.h.in: Do the _XOPEN_SOURCE and _SVID_SOURCE things only
1590         on Linux.
1591
1592 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
1593
1594         * html-url.c (handle_link): Handle HTML fragment identifiers.
1595
1596         * recur.c (recursive_retrieve): If norobot info is respected and
1597         the file is specified not to be followed by robots, respect that.
1598
1599         * html-url.c (collect_tags_mapper): Handle <meta name=robots
1600         content=X>.  For us the important cases are where X is NONE or
1601         where X contains NOFOLLOW.
1602         (get_urls_html): Propagate that information to the caller.
1603
1604 2000-11-13  Hrvoje Niksic  <hniksic@arsdigita.com>
1605
1606         * url.c (convert_links): Unlink the file we might be reading from
1607         before writing to it.
1608         (convert_links): Use alloca instead of malloc for
1609         filename_plus_orig_suffix.
1610
1611 2000-11-12  Hrvoje Niksic  <hniksic@arsdigita.com>
1612
1613         * host.c (realhost): Add HOST to the list with quality==0 only if
1614         it wasn't already there.
1615         Based on analysis by Lu Guohan <feng@public.bjnet.edu.cn>.
1616
1617 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1618
1619         * url.c (get_urls_file): Ditto.
1620         (convert_links): Ditto.
1621
1622         * html-url.c (get_urls_html): Use read_file() instead of
1623         load_file().
1624
1625         * utils.c (read_file): New function, instead of the old
1626         load_file().
1627         (read_file_free): Ditto.
1628
1629         * url.c (findurl): Search only for the supported protocols.
1630         (convert_links): Use fwrite() when writing out a region of
1631         characters.
1632
1633 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1634
1635         * ftp-ls.c: Move html_quote_string and ftp_index here.
1636
1637         * url.c: Remove get_urls_html, since that's now in html-url.c.
1638
1639         * html-url.c: New file.
1640
1641         * html-parse.c: New file.
1642
1643 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1644
1645         * init.c (run_wgetrc): Don't bother killing off '\r' since
1646         pars_line() skips whitespace at end of line anyway.
1647         (parse_line): Oops, it didn't.  Now it does.
1648
1649         * recur.c (parse_robots): Ditto here.
1650
1651         * ftp-ls.c (ftp_parse_unix_ls): Kill off the newline character
1652         manually because read_whole_line no longer does.
1653
1654         * utils.c (read_whole_line): Rewrite to: a) use less memory
1655         (reallocates to needed size after work), b) work faster -->
1656         fgets() instead of getc, c) be more correct --> doesn't kill the
1657         newline character at the end of line.
1658
1659 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
1660
1661         * init.c (comind): Initialize MAX to array size - 1.
1662
1663 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
1664
1665         * url.c (construct): Changed last_slash[-1] to *(last_slash - 1).
1666         Suggested by Edward J. Sabol.
1667
1668 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
1669
1670         * url.c (construct): Handle the case where host name is not
1671         followed by a slash.
1672
1673 2000-11-06  Hrvoje Niksic  <hniksic@arsdigita.com>
1674
1675         * init.c: commands[] need to be sorted!  ("base" wasn't.)
1676
1677 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
1678
1679         * wget.h (DO_REALLOC_FROM_ALLOCA): Use braces to disambiguate
1680         `if'.
1681
1682 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
1683
1684         * url.c (construct): Insert unneeded initialization for the
1685         compiler to shut up.
1686
1687         * config.h.in: Define _XOPEN_SOURCE to 500 to get the prototype
1688         for strptime() (*duh*).  Define _SVID_SOURCE to get S_IFLNK which
1689         otherwise gets lost when you define _XOPEN_SOURCE.
1690
1691         * utils.c (touch): Include the file name in the error message.
1692         From Debian.
1693
1694 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
1695
1696         * log.c (logvprintf): Use vsnprintf() in all cases.  If necessary,
1697         resize the buffer to fit the formated message.  That way, messages
1698         of arbitrary size may be printed.
1699         (logvprintf): Use saved_append() to optionally log the last
1700         several lines of output.
1701         (logputs): Ditto.
1702         (log_close): Adapt to new data structures.
1703         (log_dump): Ditto.
1704         (redirect_output): Print messages to stderr, not to stdout.
1705
1706         * log.c (saved_append_1): New function.  Replaces the old logging
1707         system ("log all output until 10M characters") with a new, much
1708         more reasonable one ("log last screenful of text").
1709         (saved_append): New function; call saved_append_1.
1710         (free_log_line): New function.
1711
1712 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
1713
1714         * url.c (construct): Fix comment.
1715         (find_last_char): Document.
1716
1717 2000-11-04  Hrvoje Niksic  <hniksic@arsdigita.com>
1718
1719         * snprintf.c: New file.
1720
1721 2000-11-03  Hrvoje Niksic  <hniksic@arsdigita.com>
1722
1723         * wget.h: If HAVE_STDARG_H is not defined, don't declare argument
1724         types to logprintf() and debug_logprintf().
1725
1726 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
1727
1728         * ftp.c (ftp_loop_internal): Hide the password from the URL when
1729         printing non-verbose.  Problem spotted by Dariusz Mlynarczyk
1730         <darekm@bydg.lomac.com.pl>.
1731
1732 2000-11-02  Junio Hamano  <junio@twinsun.com>
1733
1734         * ftp-basic.c (ftp_login): Make comparison case-insensitive.
1735
1736 2000-11-02  Tyler Riddle  <triddle@liquidmarket.com>
1737
1738         * http.c (known_authentication_scheme_p): Recognize NTML
1739         authentication.
1740         (create_authorization_line): Treat NTML the same as `Basic'.
1741
1742 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
1743
1744         * retr.c (retrieve_url): Free url before returning.
1745         (retrieve_url): Free mynewloc before returning.
1746         Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
1747
1748 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
1749
1750         * url.c (parseurl): Remove possible reading past the end of
1751         sup_protos[].  Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
1752
1753 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1754
1755         * main.c (main): In case of opt.downloaded overflowing, print
1756         <overflow> instead of a totally bogus random value.
1757
1758         * retr.c (retrieve_from_file): Ditto.
1759
1760         * recur.c (recursive_retrieve): Ditto.
1761
1762         * main.c (main): Ditto.
1763
1764         * http.c (http_loop): Ditto.
1765
1766         * ftp.c (ftp_loop_internal): Use downloaded_increase() instead of
1767         `+=', and downloaded_exceeds_quota() instead of the simple-minded
1768         check.
1769         (ftp_retrieve_list): Ditto.
1770         (ftp_retrieve_dirs): Ditto.
1771         (ftp_retrieve_glob): Ditto.
1772
1773         * retr.c (downloaded_increase): New function.  Notice overflows of
1774         opt.downloaded.
1775         (downloaded_exceeds_quota): Make sure that opt.downloaded is not
1776         used if it overflowed.
1777
1778         * options.h (struct options): New member downloaded_overflow.
1779
1780 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1781
1782         * wget.h (enum): Remove extra space after last enumeration.
1783
1784 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1785
1786         * main.c (main): Use legible_very_long() for printing
1787         opt.downloaded.
1788
1789         * utils.c (legible_1): New function that operates on strings and
1790         does the brunt of legible()'s work.
1791         (legible): Use legible_1().
1792         (legible_very_long): New function; dump the argument with
1793         sprintf(), and call legible_1().
1794
1795         * options.h (struct options): Use VERY_LONG_TYPE for
1796         opt.downloaded.
1797
1798         * sysdep.h (VERY_LONG_TYPE): Define it to have a 64-bit or greater
1799         type.
1800
1801         * config.h.in: Make sure that SIZEOF_LONG and SIZEOF_LONG_LONG get
1802         defined.  Define HAVE_LONG_LONG if long long is available.
1803
1804 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1805
1806         * utils.c (long_to_string): Update with a later, better version.
1807
1808 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1809
1810         * url.c (path_simplify_with_kludge): New function.
1811         (path_simplify_with_kludge): Disable it.  Instead...
1812         (parse_dir): ...make sure that at this point the right thing is
1813         done, i.e. that "query" part of the URL (?...) is always assigned
1814         to the file, never to the directory portion of the path.
1815
1816 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1817
1818         * retr.c (retrieve_url): Detect redirection cycles.
1819
1820 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1821
1822         * url.c (get_urls_html): Decode HTML entities using
1823         html_decode_entities.
1824
1825         * html.c (htmlfindurl): Don't count the `#' in numeric entities
1826         (&#NNN;) as an HTML fragemnt.
1827         (html_decode_entities): New function.
1828
1829 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1830
1831         * html.c (htmlfindurl): Fix recognition of # HTML fragments.
1832
1833 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
1834
1835         * url.c (construct): Rewritten for clarity.  Avoids the
1836         unnecessary copying and stack-allocation the old version
1837         performed.
1838
1839 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
1840
1841         * ftp.c (getftp): Ditto.
1842
1843         * http.c (gethttp): Rewind the stream when retrying from scratch.
1844
1845 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
1846
1847         * retr.c (retrieve_url): Use url_concat() to handle relative
1848         redirections instead of /ad hoc/ code.
1849
1850         * url.c (url_concat): New function encapsulating weird
1851         construct().
1852         (urllen_http_hack): New function.
1853         (construct): When constructing new URLs, recognize that `?' does
1854         not form part of the file name in HTTP.
1855
1856 2000-10-13  Adrian Aichner  <adrian@xemacs.org>
1857
1858         * retr.c: Add msec timing support for WINDOWS.
1859         * retr.c (reset_timer): GetSystemTime() on WINDOWS.
1860         * retr.c (elapsed_time): Calculate delta time to msec on WINDOWS.
1861
1862 2000-10-27  Dan Harkless  <wget@harkless.org>
1863
1864         * retr.c (retrieve_url): Manually applied T. Bharath
1865         <TBharath@responsenetworks.com>'s patch to get wget to grok
1866         illegal relative URL redirects.  Reformatted and re-commented it.
1867
1868 2000-10-23  Dan Harkless  <wget@harkless.org>
1869
1870         * connect.c (make_connection and bindport): Manually applied Rob
1871         Mayoff <mayoff@dqd.com>'s 1.5.3 patch to add --bind-address,
1872         changing coding style to GNU's.
1873
1874         * ftp.c (ftp_loop_internal): --delete-after wasn't implemented for
1875         files downloaded via FTP.  Per a comment, .listing files were not
1876         counted towards number of bytes and files downloaded because they're 
1877         deleted anyway.  Well, they aren't under -nr, so count them then.
1878
1879         * init.c: Manually applied Rob Mayoff's 1.5.3 patch to add
1880         --bind-address, alphabetizing, changing coding style to GNU's,
1881         commenting, and renaming cmd_ip_address() to cmd_address() to
1882         imply hostnames also okay.
1883                 
1884         * main.c (main): --delete-after didn't delete the root of the
1885         tree.  Ignore --convert-links if --delete-after was specified.
1886         Manually applied Rob Mayoff's 1.5.3 patch to add --bind-address,
1887         fixing duplicate use of added-since-1.5.3 case value.
1888         (print_help): Clarified that --delete-after deletes local files.
1889         Rob forgot to add a line for his new --bind-address option.
1890                 
1891         * options.h (struct options): Manually applied Rob Mayoff's patch
1892         to add --bind-address (bind_address structure member).
1893                 
1894         * recur.c (recursive_retrieve): Improved comment; added DEBUGP().
1895         Ignore --convert-links if --delete-after was specified.
1896                 
1897         * retr.c (retrieve_from_file): Just added a DEBUGP().
1898                 
1899 2000-10-19  Dan Harkless  <wget@harkless.org>
1900
1901         * ftp.c (ftp_loop_internal): downloaded_file() enumerators changed.
1902         (getftp): Applied Piotr Sulecki <Piotr.Sulecki@ios.krakow.pl>'s
1903         patch to work around FTP servers that incorrectly respond to the
1904         "REST" command with the remaining size rather than the total file size.
1905                 
1906         * http.c (gethttp): Improved a comment and added code to tack on
1907         ".html" to text/html files without that extension when -E specified.
1908         (http_loop): Use new downloaded_file() enumerators and deal with
1909         the case of gethttp() called xrealloc() on u->local.
1910
1911         * init.c (commands): Added new "htmlextension" command.
1912         Also renamed John Daily's cmd_quad() to the more descriptive
1913         cmd_lockable_boolean(), alpha-sorted the CMD_DECLARE()s and
1914         removed duplicate cmd_boolean() declaration.
1915
1916         * main.c (print_help): Added my new -E / --html-extension option.
1917         (main): Undocumented --email-address option previously used -E synonym.
1918         Stole it away for the much more deserving --html-extension's use.
1919
1920         * options.h (struct options): Added html_extension field.
1921
1922         * url.c (convert_links): URL X that we saved as X.html locally due
1923         to -E needs to be backed up as X.orig, not X.html.orig.  Added comments.
1924         (downloaded_file): Now remembers if we added .html extension to a file.
1925
1926         * url.h (downloaded_file_t): Added extra enumerators to support above.
1927         (downloaded_file): Now takes and returns a downloaded_file_t.
1928
1929         * wget.h (unnamed "dt" enum): Added ADDED_HTML_EXTENSION enumerator.
1930         
1931 2000-10-09  Dan Harkless  <wget@harkless.org>
1932
1933         * html.c (htmlfindurl): Added unneeded initialization to quiet warning.
1934                 
1935         * main.c (print_help): Clarified what --retr-symlinks does.
1936         
1937 2000-09-15  John Daily  <jdaily@cyberdude.com>
1938
1939         * init.c: Add support for "always" and "never" values to allow
1940         .wgetrc to override commandline (useful e.g. with .pm files
1941         calling `wget --passive-ftp' when your firewall doesn't allow that).
1942
1943         * ftp.c (getftp): passive_ftp is first option to support always/never.
1944
1945 2000-08-30  Dan Harkless  <wget@harkless.org>
1946
1947         * ftp.c (ftp_retrieve_list): Use new INFINITE_RECURSION #define.
1948         
1949         * html.c: htmlfindurl() now takes final `dash_p_leaf_HTML' parameter.
1950         Wrapped some > 80-column lines.  When -p is specified and we're at a 
1951         leaf node, do not traverse <A>, <AREA>, or <LINK> tags other than 
1952         <LINK REL="stylesheet">.
1953         
1954         * html.h (htmlfindurl): Now takes final `dash_p_leaf_HTML' parameter.
1955         
1956         * init.c: Added new -p / --page-requisites / page_requisites option.
1957
1958         * main.c (print_help): Clarified that -l inf and -l 0 both allow
1959         infinite recursion.  Changed the unhelpful --mirrior description
1960         to simply give the options it's equivalent to.  Added new -p option.
1961         (main): Added some comments; handle new -p / --page-requisites.
1962         
1963         * options.h (struct options): Added new page_requisites field.
1964
1965         * recur.c: Changed "URL-s" to "URLs" and "HTML-s" to "HTMLs".
1966         Calculate and pass down new `dash_p_leaf_HTML' parameter to
1967         get_urls_html().  Use new INFINITE_RECURSION #define.
1968
1969         * retr.c: Changed "URL-s" to "URLs".  get_urls_html() now takes
1970         final `dash_p_leaf_HTML' parameter.
1971
1972         * url.c: get_urls_html() and htmlfindurl() now take final
1973         `dash_p_leaf_HTML' parameter.
1974
1975         * url.h (get_urls_html): Now takes final `dash_p_leaf_HTML' parameter.
1976
1977         * wget.h: Added some comments and new INFINITE_RECURSION #define.
1978         
1979 2000-08-23  Dan Harkless  <wget@harkless.org>
1980
1981         * main.c (print_help): -B / --base was not mentioned.
1982
1983 2000-08-22  Dan Harkless  <wget@harkless.org>
1984
1985         * main.c (print_help): Modified -nc description to mention that it
1986         also prevents the creation of multiple versions of the same file
1987         with ".<number>" suffixes.
1988
1989 2000-07-14  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
1990
1991         * retr.c (retrieve_url): Consistently strdup opt.referer when
1992         setting u->referer.
1993
1994 2000-06-09  Dan Harkless  <wget@harkless.org>
1995
1996         * main.c (print_help): --help output for --waitretry was over 80 cols.
1997
1998 2000-06-09  Hrvoje Niksic  <hniksic@iskon.hr>
1999
2000         * url.c (encode_string): Fix comment.
2001         Suggested by Herold Heiko <Heiko.Herold@previnet.it>.
2002
2003 2000-06-01  Const Kaplinsky  <const@ce.cctpu.edu.ru>
2004
2005         * ftp.c (ftp_retrieve_list): Change permissions only on plain
2006         files.
2007
2008 2000-06-01  Hrvoje Niksic  <hniksic@iskon.hr>
2009
2010         * url.c (str_url): Print the port number only if it's different
2011         from the default port number for that protocol.
2012
2013 2000-05-22  Dan Harkless  <wget@harkless.org>
2014
2015         * main.c (print_help): Added --help line for Damir Dzeko
2016         <ddzeko@zesoi.fer.hr>'s until-now-undocumented --referer option.
2017         Removed comments that --referer and --waitretry were undocumented.
2018         Changed "`.wgetrc' command" to "`.wgetrc'-style command" on --help
2019         line for --execute.
2020
2021 2000-05-18  Hrvoje Niksic  <hniksic@iskon.hr>
2022
2023         * ftp.c (getftp): Ditto.
2024
2025         * http.c (gethttp): Check for return value of fclose/fflush.
2026
2027 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
2028
2029         * host.c (store_hostaddress): Instead of shifting ADDR, start
2030         copying from the correct address.
2031
2032 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
2033
2034         * http.c (gethttp): Don't free REQUEST -- it was allocated with
2035         alloca().
2036         Pointed out by Gisle Vanem <gvanem@eunet.no>.
2037
2038 2000-04-04  Dan Harkless  <wget@harkless.org>
2039
2040         * host.c (store_hostaddress): R. K. Owen's patch introduces a
2041         "left shift count >= width of type" warning on 32-bit
2042         architectures.  Got rid of it by tricking the compiler w/ a variable.
2043         
2044         * url.c (UNSAFE_CHAR): The macro didn't include all the illegal
2045         characters per RFC1738, namely everything above '~'.  It also
2046         generated a warning on OSes where char =~ unsigned char.  Fixed.
2047         
2048 1998-10-17  Hrvoje Niksic  <hniksic@srce.hr>
2049
2050         * http.c (http_process_type): Removed needless strdup(), a memory
2051         leak.
2052
2053 1998-09-25  Hrvoje Niksic  <hniksic@srce.hr>
2054
2055         * html.c (htmlfindurl): Set PH to the first occurrence of `#'.
2056
2057 1998-09-25  Simon Munton  <simonm@m4data.co.uk>
2058
2059         * init.c (wgetrc_file_name): Don't free HOME under Windows.
2060
2061 1998-12-01  "R. K. Owen"  <rkowen@Nersc.GOV>
2062
2063         * host.c (store_hostaddress): Fix for big endian 64-bit machines.
2064
2065 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
2066
2067         * url.c (UNSAFE_CHAR): New macro.
2068         (contains_unsafe): Use it.
2069         (encode_string): Ditto.
2070
2071 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
2072
2073         * main.c (i18n_initialize): Use LC_MESSAGES only if available.
2074
2075 2000-03-31  Hrvoje Niksic  <hniksic@srce.hr>
2076
2077         * Use TOUPPER/TOLOWER.
2078
2079 1998-12-22  Alexander V. Lukyanov  <lav@yars.free.net>
2080
2081         * ftp-opie.c (btoe): Zero-terminate OSTORE.
2082
2083 2000-03-21  Hrvoje Niksic  <hniksic@iskon.hr>
2084
2085         * wget.h (DO_REALLOC_FROM_ALLOCA): Ditto.
2086
2087         * sysdep.h (ISALNUM): New macro.
2088         (TOLOWER): Ditto.
2089         (TOUPPER): Ditto.
2090
2091 2000-03-10  Dan Harkless  <wget@harkless.org>
2092
2093         * html.c (idmatch): Implemented checking of my new --follow-tags
2094         and --ignore-tags options.
2095         
2096         * init.c (commands): Added comment reminding people adding new
2097         entries doing allocation to add corresponding freeing in cleanup().
2098         (commands): Added new followtags and ignoretags commands.
2099         (cleanup): Free storage for new followtags and ignoretags.
2100         
2101         * main.c: Use of "comma-separated list" was random -- normalized
2102         it.  Did some alphabetization.  Added comments pointing out
2103         "Options without arguments" and "Options accepting an argument"
2104         sections of long_options[].  Added new options --follow-tags and
2105         -G / --ignore-tags.  Added comment that Damir's --referer is
2106         currently undocumented.  Added comment that Heiko's --waitretry is
2107         partially undocumented (mentioned in --help but not in
2108         wget.texi).  Moved improperly sorted 24, 129, and 'G' cases.
2109         
2110         * options.h (struct options): Added new fields follow_tags and
2111         ignore_tags. 
2112         
2113         * wget.h: Added "#define EQ 0" so we can say "strcmp(a, b) == EQ".
2114         
2115 2000-03-02  Dan Harkless  <wget@harkless.org>
2116
2117         * ftp.c (ftp_loop_internal): Heiko introduced "suggest explicit
2118         braces to avoid ambiguous `else'" warnings.  Eliminated them.
2119         
2120         * http.c (gethttp): Dan Berger's query string patch is totally
2121         bogus.  If you have two different URLs, gen_page.cgi?page1 and
2122         get_page.cgi?page2, they'll both be saved as get_page.cgi and the
2123         second will overwrite the first.  Also, parameters to implicit
2124         CGIs, like "http://www.host.com/db/?2000-03-02" cause the URLs to
2125         be printed with trailing garbage characters, and could seg fault.
2126         Backing out the patch, which Dan B. informed me by email was just
2127         a kludge to download StarOffice from Sun made necessary due to
2128         wget's unconditional escaping of certain characters (room for an
2129         option there?).
2130         (http_loop): Heiko introduced "suggest explicit braces to avoid
2131         ambiguous `else'" warnings.  Eliminated them.
2132         
2133         * main.c: Heiko's --wait / --waitretry backwards compatibility
2134         code looks to have been totally untested -- automatic variable
2135         'wr' was used without being initialized, and a long int was passed
2136         into setval()'s char* val parameter.
2137         
2138         * recur.c (parse_robots): Applied Edward J. Sabol
2139         <sabol@alderaan.gsfc.nasa.gov>'s patch for Guan Yang's reported
2140         problem with "User-agent:<space>*<space>" lines in robots.txt.
2141         
2142         * url.c (parseurl, str_url): Removing Dan Berger's code (see
2143         http.c above for explanation).
2144         
2145 1999-08-25  Heiko Herold  <Heiko.Herold@previnet.it>
2146
2147         * ftp.c: Respect new option waitretry.
2148
2149 2000-01-30  Damir Dzeko  <ddzeko@zesoi.fer.hr>
2150
2151         * http.c (gethttp): Send custom Referer, if required.
2152
2153 1999-09-24  Charles G Waldman  <cgw@fnal.gov>
2154
2155         * netrc.c (parse_netrc): Allow passwords to contain spaces.
2156
2157         * netrc.c (parse_netrc): New function.
2158
2159 1999-09-17  Dan Berger  <dberger@ix.netcom.com>
2160
2161         * http.c (gethttp): Send it.
2162
2163         * url.c (parseurl): Detect query string in HTTP URL-s.
2164         (str_url): Print it.
2165
2166 2000-03-02  HIROSE Masaaki  <hirose31@t3.rim.or.jp>
2167
2168         * html.c (html_allow): Add <link href=...> and <script src=...>.
2169
2170 1999-05-02  andrew deryabin  <djsf@softhome.net>
2171
2172         * http.c (gethttp): Specify port in `Host' header only if it's
2173         different from 80.
2174
2175 1998-11-03  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
2176
2177         * recur.c (recursive_retrieve): If a finite maximum depth is
2178         specified, and we're are already at that depth, don't download the
2179         HTML file for parsing.
2180
2181 2000-03-01  Dan Harkless  <wget@harkless.org>
2182
2183         * ftp.c (ftp_loop_internal): Call new downloaded_file() function,
2184         even though we don't do conversion on HTML files retrieved via
2185         FTP, so _current_ usage of downloaded_file() makes this call unneeded. 
2186         (ftp_retrieve_list): Added a comment saying where we need to
2187         stat() a .orig file if FTP'd HTML file conversion is ever implemented.
2188         (ftp_retrieve_list): "Local file '%s' is more recent," is sometimes
2189         a lie -- reworded as "Server file no newer than local file '%s' --".
2190         
2191         * http.c (http_loop): Fixed a typo and clarified a comment.
2192         (http_loop): When -K and -N are specified together, compare size
2193         and timestamp of server file X against local file X.orig (if
2194         extant) rather than converted local file X.
2195         (http_loop): "Local file '%s' is more recent," is sometimes a lie
2196         -- reworded as "Server file no newer than local file '%s' --".
2197         (http_loop): Call new downloaded_file() function to prevent
2198         wrongful overwriting of .orig file when -N is specified.
2199         
2200         * url.c (convert_links): When -K specified, only rename X to
2201         X.orig if downloaded_file() returns TRUE.  Otherwise when we skip
2202         file X due to -N, we clobber an X.orig from a previous invocation.
2203         (convert_links): Call the failsafe xstrdup(), not the real strdup().
2204         (convert_links): Added a note asking anyone who understands how
2205         multiple URLs can correspond to a single file to comment it.
2206         (downloaded_file): Added this new function.
2207         
2208         * url.h (downloaded_file): Added prototype for this new function
2209         as well as its downloaded_file_t enum type.
2210
2211         * wget.h (boolean): Added this new typedef and TRUE and FALSE #defines.
2212
2213 2000-02-29  Dan Harkless  <wget@harkless.org>
2214
2215         * version.c: Upped version to developer-only "1.5.3+dev".
2216
2217 2000-02-18  Dan Harkless  <wget@harkless.org>
2218
2219         * init.c (backup_converted): Added this new option.
2220
2221         * main.c (-K / --backup-converted): Added this new option.
2222
2223         * options.h (backup_converted): Added this new option.
2224
2225         * url.c (convert_links): When backup_converted is specified, save
2226         file X as X.orig before converting.
2227
2228         * url.h (urlpos): Fixed typo -- said "Rekative" instead of "Relative".
2229
2230 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
2231
2232         * version.c: Wget 1.5.3 is released.
2233
2234 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
2235
2236         * host.c (ftp_getaddress): Don't warn when reverse-lookup of local 
2237         address doesn't yield FQDN.
2238
2239 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2240
2241         * cmpt.c (strerror): Fix declaration of sys_errlist.
2242
2243 1998-09-11  Hrvoje Niksic  <hniksic@srce.hr>
2244
2245         * main.c (main): Don't use an array subscript as the first
2246         argument to STRDUP_ALLOCA.
2247         From Kaveh R. Ghazi.
2248
2249 1998-09-11  Szakacsits Szabolcs  <szaka@sienet.hu>
2250
2251         * html.c (htmlfindurl): Download table background.
2252
2253 1998-09-11  Hans Grobler  <grobh@conde.ee.sun.ac.za>
2254
2255         * init.c (parse_line): Would free *com before allocating it.
2256         (parse_line): Would free com instead of *com.
2257
2258 1998-09-10  Howard Gayle  <howard@fjst.com>
2259
2260         * url.c (get_urls_html): Would drop the last character of the
2261         link.
2262
2263 1998-09-10  Hrvoje Niksic  <hniksic@srce.hr>
2264
2265         * http.c (http_loop): Don't print status code if quiet.
2266
2267 1998-09-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2268
2269         * log.c: Use <stdarg.h> only when __STDC__.
2270
2271 1998-09-10  Adam D. Moss  <adam@foxbox.org>
2272
2273         * html.c (htmlfindurl): Download <layer src=...>.
2274
2275 1998-09-10  Howard Gayle  <howard@fjst.com>
2276
2277         * ftp.c (ftp_retrieve_list): Don't update the time stamp of a file 
2278         not retrieved.
2279
2280 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
2281
2282         * utils.c: Include <libc.h> on NeXT.
2283
2284 1998-06-26  Heinz Salzmann  <heinz.salzmann@intermetall.de>
2285
2286         * url.c (get_urls_html): Fix calculation of URL position.
2287
2288 1998-06-23  Hrvoje Niksic  <hniksic@srce.hr>
2289
2290         * version.c: Wget 1.5.2 is released.
2291
2292 1998-06-23  Dave Love  <d.love@dl.ac.uk>
2293
2294         * ftp.c, init.c, netrc.c: Include errno.h.
2295
2296         * http.c: Include errno.h and time header.
2297
2298         * Makefile.in (exext): Define.
2299         (install.bin, uninstall.bin): Use it.
2300
2301 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
2302
2303         * http.c (http_loop): Don't attempt to compare local and remote
2304         sizes if the remote size is unknown.
2305
2306 1998-06-16  Hrvoje Niksic  <hniksic@srce.hr>
2307
2308         * url.c (get_urls_html): Use malloc() instead of alloca in the
2309         loop.
2310
2311 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
2312
2313         * version.c: Wget 1.5.2-b4 is released.
2314
2315 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
2316
2317         * url.c (get_urls_html): Ignore spaces before and after the URI.
2318
2319 1998-06-08  Wanderlei Antonio Cavassin  <cavassin@conectiva.com.br>
2320
2321         * ftp.c (getftp): Translate `done'.
2322
2323 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
2324
2325         * version.c: Wget 1.5.2-b3 is released.
2326
2327 1998-06-06  Alexander Kourakos  <awk@bnt.com>
2328
2329         * init.c (cleanup): Close dfp, don't free it.
2330
2331 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
2332
2333         * utils.c (make_directory): Twiddle.
2334
2335         * config.h.in: Added template for access().
2336
2337 1998-06-05  Mathieu Guillaume  <mat@cythere.com>
2338
2339         * html.c (htmlfindurl): Download <input src=...>
2340
2341 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
2342
2343         * utils.c (file_exists_p): Use access() with two arguments.
2344
2345 1998-05-27  Martin Kraemer  <Martin.Kraemer@mch.sni.de>
2346
2347         * netrc.c (parse_netrc): Correct logic.
2348
2349 1998-05-27  Hrvoje Niksic  <hniksic@srce.hr>
2350
2351         * ftp.c (getftp): Added `break'; suggested by Lin Zhe Min
2352         <ljm@ljm.wownet.net>.
2353
2354 1998-05-24  Hrvoje Niksic  <hniksic@srce.hr>
2355
2356         * version.c: Wget 1.5.2-b2 is released.
2357
2358 1998-05-18  Juan Jose Rodriguez  <jcnsoft@jal1.telmex.net.mx>
2359
2360         * mswindows.h: Don't translate mkdir to _mkdir under Borland.
2361
2362 1998-05-17  Hrvoje Niksic  <hniksic@srce.hr>
2363
2364         * retr.c (elapsed_time): Return correct value when
2365         HAVE_GETTIMEOFDAY is undefined.
2366
2367 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
2368
2369         * version.c: Wget 1.5.2-b1 is released.
2370
2371 1998-05-08  Hrvoje Niksic  <hniksic@srce.hr>
2372
2373         * getopt.c (_getopt_internal): Use exec_name instead of argv[0].
2374         (_getopt_internal): Don't translate `#if 0'-ed strings.
2375
2376 1998-05-06  Douglas E. Wegscheid  <wegscd@whirlpool.com>
2377
2378         * mswindows.c (ws_handler): Use fork_to_background().
2379
2380 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
2381
2382         * version.c: Wget 1.5.1 is released.
2383
2384 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
2385
2386         * http.c (parse_http_status_line): Avoid `minor' and `major'
2387         names.
2388
2389 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
2390
2391         * utils.c (mkdirhier): Renamed to make_directory.
2392
2393 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
2394
2395         * mswindows.c (fork_to_background): Define under Windows.
2396
2397         * utils.c (fork_to_background): New function.
2398
2399         * html.c (htmlfindurl): Removed rerdundant casts.
2400
2401 1998-05-01  Douglas E. Wegscheid  <wegscd@whirlpool.com>
2402
2403         * mswindows.c (ws_mypath): Cache the path.
2404
2405 1998-04-30  Douglas E. Wegscheid  <wegscd@whirlpool.com>
2406
2407         * ftp.h: Prefix enum ftype members with FT_.
2408
2409         * ftp-ls.c, ftp.c, html.h: Adjust accordingly.
2410
2411         * mswindows.h: Use stat under Borland, _stat under MSVC.
2412
2413 1998-04-28  Hrvoje Niksic  <hniksic@srce.hr>
2414
2415         * http.c (known_authentication_scheme_p): New function.
2416         (gethttp): Handle authorization more correctly.
2417
2418         * ftp-basic.h: Removed.
2419
2420         * cmpt.h: Removed.
2421
2422         * utils.c: Include <unistd.h> before <pwd.h>; needed under SunOS
2423         with gcc 2.8.
2424         (numdigit): Use `while' loop.
2425
2426         * http.c (create_authorization_line): Detect authentication
2427         schemes case-insensitively.
2428
2429         * http.c (extract_header_attr): Use strdupdelim().
2430         (digest_authentication_encode): Move declaration of local
2431         variables to smaller scope.
2432         (digest_authentication_encode): Reset REALM, OPAQUE and NONCE.
2433         (create_authorization_line): Detect authentication schemes
2434         case-insensitively.
2435
2436         * utils.c (touch): Constify.
2437
2438         * http.c (gethttp): Report a nicer error when no data is received.
2439
2440         * rbuf.h (RBUF_READCHAR): Ditto.
2441
2442         * ftp-basic.c (ftp_response): Use sizeof.
2443
2444 1998-04-27  Hrvoje Niksic  <hniksic@srce.hr>
2445
2446         * retr.c (print_percentage): EXPECTED is long, not int.
2447         (print_percentage): Use floating-point arithmetic to avoid
2448         overflow with large files' sizes multiplied with 100.
2449
2450 1998-04-27  Gregor Hoffleit  <flight@mathi.uni-heidelberg.de>
2451
2452         * config.h.in: Added pid_t stub.
2453
2454         * sysdep.h (S_ISREG): Moved here from mswindows.h (NeXT doesn't
2455         define it).
2456
2457 1998-04-20  Hrvoje Niksic  <hniksic@srce.hr>
2458
2459         * version.c: Wget 1.5.0 is released.
2460
2461 1998-04-18  Hrvoje Niksic  <hniksic@srce.hr>
2462
2463         * url.c (str_url): Ditto.
2464
2465         * ftp-basic.c (ftp_rest): Use new name.
2466
2467         * utils.c (long_to_string): Renamed from prnum().
2468
2469 1998-04-16  Hrvoje Niksic  <hniksic@srce.hr>
2470
2471         * version.c: Wget 1.5-b17 is released.
2472
2473 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
2474
2475         * headers.c (header_get): New argument FLAGS.
2476
2477         * http.c (gethttp): If request is malformed, bail out of the
2478         header loop.
2479         (gethttp): Check for empty header *after* the status line checks.
2480         (gethttp): Disallow continuations for status line.
2481
2482 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
2483
2484         * version.c: Wget 1.5-b16 is released.
2485
2486 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
2487
2488         * init.c (commands): Renamed `always_rest' to `continue'.
2489
2490 1998-04-05  Hrvoje Niksic  <hniksic@srce.hr>
2491
2492         * all: Use it.
2493
2494         * log.c (logputs): New argument.
2495         (logvprintf): Ditto.
2496         (logprintf): Ditto.
2497
2498 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
2499
2500         * http.c (http_atotm): Update comment.
2501
2502         * main.c (i18n_initialize): Set LC_MESSAGES, not LC_ALL.
2503
2504         * wget.h: Renamed ENABLED_NLS to HAVE_NLS.
2505
2506         * main.c (i18n_initialize): New function.
2507         (main): Use it.
2508
2509         * log.c: Include <unistd.h>.
2510
2511         * retr.c (show_progress): Cast alloca to char *.
2512
2513 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
2514
2515         * version.c: Wget 1.5-b15 is released.
2516
2517 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
2518
2519         * utils.h: Declare file_non_directory_p().
2520
2521 1998-04-03  Hrvoje Niksic  <hniksic@srce.hr>
2522
2523         * main.c (main): It's `tries', not `numtries' now.
2524
2525 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
2526
2527         * init.c (getperms): Removed.
2528
2529 1998-04-01  Tim Charron  <tcharron@interlog.com>
2530
2531         * log.c (logvprintf): Don't use ARGS twice.
2532
2533 1998-04-01  John  <john@futuresguide.com>
2534
2535         * mswindows.c: Cleaned up.
2536
2537 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
2538
2539         * version.c: Wget 1.5-b14 is released.
2540
2541 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
2542
2543         * ftp-opie.c (STRLEN4): New macro.
2544         (btoe): Use it.
2545
2546 1998-04-01  Junio Hamano  <junio@twinsun.com>
2547
2548         * http.c: Document all the Digest functions.
2549
2550 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
2551
2552         * utils.c (file_non_directory_p): Renamed from isfile().
2553
2554         * mswindows.h (S_ISREG): New macro, suggested by Tim Adam.
2555
2556 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
2557
2558         * utils.c (mkdirhier): Use 0777 instead of opt.dirmode.
2559
2560         * init.c (cmd_spec_dotstyle): Use 48 dots per line for binary
2561         style.
2562         (cmd_permissions): Removed.
2563
2564         * config.h.in: Add template for WORDS_BIGENDIAN.
2565
2566 1998-03-31  Junio Hamano  <junio@twinsun.com>
2567
2568         * http.c (HEXD2asc): New macro.
2569         (dump_hash): Use it.
2570
2571 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
2572
2573         * version.c: Wget 1.5-b13 is released.
2574
2575 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
2576
2577         * main.c (main): Don't try to use `com'.
2578
2579 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
2580
2581         * init.c (cmd_permissions): New function.
2582
2583 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
2584
2585         * version.c: Wget 1.5-b12 is released.
2586
2587 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
2588
2589         * init.c (commands): Renamed `numtries' to `tries'.
2590         (cmd_spec_debug): Removed.
2591         (home_dir): Under Windows, return `C:\' if HOME is undefined.
2592
2593 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
2594
2595         * config.h.in: Define _XOPEN_SOURCE.
2596
2597         * init.c (check_user_specified_header): New function.
2598         (cmd_spec_header): Use it.
2599         (cmd_spec_useragent): New function.
2600
2601 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
2602
2603         * version.c: Wget 1.5-b11 is released.
2604
2605 1998-03-28  Hrvoje Niksic  <hniksic@srce.hr>
2606
2607         * wget.h: Include <libintl.h> only if NLS is enabled.
2608
2609 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
2610
2611         * options.h (struct options): Made `wait' a long.
2612         (struct options): Ditto for `timeout'.
2613
2614 1998-03-19  Hrvoje Niksic  <hniksic@srce.hr>
2615
2616         * utils.c (exists): Renamed to file_exists_p.
2617         (file_exists_p): Use access() if available.
2618
2619 1998-03-17  Hrvoje Niksic  <hniksic@srce.hr>
2620
2621         * utils.c (memfatal): Set save_log_p to 0 to avoid potential
2622         infloop.
2623
2624         * log.c: do_logging -> save_log_p.
2625
2626         * config.h.in: Added template for HAVE_VSNPRINTF.
2627
2628 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
2629
2630         * init.c: Ditto.
2631
2632         * http.c: Protect declaration against non-ANSI compiler.
2633
2634         * log.c (logvprintf): Use vsnprintf() if available.
2635
2636         * getopt.c (main): Don't translate test stuff.
2637
2638 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
2639
2640         * version.c: Wget 1.5-b10 is released.
2641
2642 1998-03-11  Hrvoje Niksic  <hniksic@srce.hr>
2643
2644         * ftp.c (getftp): Don't translate "CWD %s".
2645
2646         * wget.h (GCC_FORMAT_ATTR): Renamed from FORMAT_ATTR.
2647
2648 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
2649
2650         * ftp-opie.c (btoe): Use memcpy() instead of strncat().
2651
2652         * log.c (logputs): New function.
2653         (logvprintf): Renamed from vlogmsg; use logputs().
2654
2655         * retr.c (show_progress): Print `[100%]' when the retrieval is
2656         finished.
2657
2658         * init.c (run_wgetrc): Use FILE, not PATH.
2659         (wgetrc_file_name): Ditto.
2660
2661 1998-03-07  Tim Adam  <tma@osa.com.au>
2662
2663         * recur.c (parse_robots): Correctly reset `entries' on empty
2664         disallow.
2665
2666 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
2667
2668         * init.c (cmd_spec_debug): Use cmd_boolean().
2669
2670 1998-02-23  Hrvoje Niksic  <hniksic@srce.hr>
2671
2672         * http.c (gethttp): Create proxy-authorization correctly.
2673
2674 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
2675
2676         * md5.c: Ditto.
2677
2678         * getopt.c: Use ANSI function definitions.
2679
2680         * ftp-opie.c: New file.
2681
2682         * options.h: Don't redefine EXTERN.
2683
2684         * init.c: Sort it correctly.
2685
2686 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
2687
2688         * version.c: Wget 1.5-b9 is released.
2689
2690 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
2691
2692         * recur.c (recursive_retrieve): Reset `first_time'.
2693
2694         * ftp.c (getftp): Added `default' clause to switches of uerr_t.
2695
2696         * rbuf.c (rbuf_peek): Simplified.
2697         (rbuf_flush): Use MINVAL.
2698
2699         * wget.h (MINVAL): Moved from url.h.
2700
2701         * rbuf.h (RBUF_FD): New macro.
2702
2703         * url.c (add_url): Add to the head of the list.
2704
2705         * ftp.c (ftp_retrieve_list): Set the permissions to downloaded
2706         file.
2707         (getftp): Set the default permissions to 0600.
2708
2709 1998-02-21  Hrvoje Niksic  <hniksic@srce.hr>
2710
2711         * url.c (get_urls_html): Ditto.
2712         (convert_links): Ditto.
2713
2714         * recur.c (parse_robots): Ditto.
2715
2716         * html.c (ftp_index): Ditto.
2717
2718         * ftp-ls.c (ftp_parse_unix_ls): Open file as binary.
2719
2720         * init.c (defaults): Initialize `opt' to zero via memset.
2721
2722         * http.c (digest_authentication_encode): goto considered harmful.
2723
2724 1998-02-19  Hrvoje Niksic  <hniksic@srce.hr>
2725
2726         * ftp.c (delelement): Simplify and fix leak.
2727
2728 1998-02-18  Hrvoje Niksic  <hniksic@srce.hr>
2729
2730         * http.c (dump_hash): Use HEXD2ASC instead of home-grown stuff.
2731
2732         * url.h (HEXD2ASC): Removed warning.
2733
2734         * init.c (comind): Use binary search.
2735         (commands): Reorganized.
2736         (setval): Ditto.
2737         (cmd_boolean): New function.
2738         (cmd_number): Ditto.
2739         (cmd_number_inf): Ditto.
2740         (cmd_string): Ditto.
2741         (cmd_vector): Ditto.
2742         (cmd_directory_vector): Ditto.
2743         (cmd_bytes): Ditto.
2744         (cmd_time): Ditto.
2745         (cmd_spec_debug): Ditto.
2746         (cmd_spec_dirmode): Ditto.
2747         (cmd_spec_dirstruct): Ditto.
2748         (cmd_spec_dotstyle): Ditto.
2749         (cmd_spec_header): Ditto.
2750         (cmd_spec_htmlify): Ditto.
2751         (cmd_spec_mirror): Ditto.
2752         (cmd_spec_outputdocument): Ditto.
2753         (cmd_spec_recursive): Ditto.
2754         (settime): Merged with cmd_time().
2755         (setbytes): Merged with cmd_bytes().
2756         (setonoff): Merged with cmd_boolean().
2757         (onoff): Ditto.
2758
2759 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
2760
2761         * Makefile.in (distclean): Remove `config.h'.
2762
2763 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
2764
2765         * version.c: Wget 1.5-b8 is released.
2766
2767 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
2768
2769         * http.c (digest_authentication_encode): New function.
2770         (create_authorization_line): Use it.
2771         (dump_hash): New function.
2772         (digest_authentication_encode): Use it.
2773
2774         * fnmatch.c: Renamed from `mtch.c'.
2775
2776 1998-02-15  Karl Eichwalder  <ke@suse.de>
2777
2778         * main.c (main): Tag "Written by..." string as translatable.
2779
2780 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
2781
2782         * wget.h (FREE_MAYBE): New macro.
2783
2784         * http.c (create_authorization_line): Don't use ANSI C string
2785         concatenation feature.
2786         (basic_authentication_encode): Use alloca() for temporary
2787         variables.
2788
2789         * recur.h: Ditto.
2790
2791         * http.c: Ditto.
2792
2793         * headers.h: Ditto.
2794
2795         * ftp-basic.c: Protect declaration against non-ANSI compiler.
2796
2797         * http.c (create_authorization_line): Cast `unsigned char *' to
2798         `char *' for sprintf, to shut up the noisy Digital Unix cc.
2799
2800 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
2801
2802         * version.c: Wget 1.5-b7 is released.
2803
2804 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
2805
2806         * cmpt.c (strstr): Synched with glibc-2.0.6.
2807
2808         * ftp-basic.c (calculate_skey_response): Ditto.
2809         (calculate_skey_response): Use alloca().
2810
2811         * http.c (create_authorization_line): Work with FSF's version of
2812         md5.c.
2813
2814         * md5.c: New file, from GNU libc.
2815
2816 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
2817
2818         * url.h (URL_CLEANSE): Name the temporary variable more carefully.
2819
2820 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
2821
2822         * http.c (basic_authentication_encode): New function, instead of
2823         the macro.
2824
2825 1998-02-13  Junio Hamano  <junio@twinsun.com>
2826
2827         * http.c: Add HTTP-DA support.
2828         * ftp-basic.c: Add Opie/S-key support.
2829         * config.h.in, Makefile.in: Add HTTP-DA and Opie/S-key support.
2830         * md5.c, md5.h: New files.
2831
2832 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
2833
2834         * http.c (http_process_range): Renamed from hprocrange().
2835         (http_process_range): Parse the whole header.
2836
2837         * headers.c: New file.
2838         (header_process): New function.
2839         (header_get): Renamed from fetch_next_header.
2840
2841         * all: Include utils.h only where necessary.
2842
2843         * wget.h: Declare xmalloc(), xrealloc() and xstrdup() here.
2844
2845         * wget.h: Add provisions for dmalloc.
2846
2847 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
2848
2849         * version.c: Wget 1.5-b6 is released.
2850
2851 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
2852
2853         * ftp.c (ftp_loop): Determine `filename' more precisely.
2854
2855         * init.c (setval): Don't set `opt.quiet' if output-document is
2856         `-'.
2857
2858         * log.c (log_init): Print to STDERR instead of STDOUT.
2859         (vlogmsg): Use STDERR by default.
2860         (logflush): Ditto.
2861
2862 1998-02-11  Simon Josefsson  <jas@pdc.kth.se>
2863
2864         * host.c: Use addr_in again.
2865
2866 1998-02-08  Karl Eichwalder  <karl@suse.de>
2867
2868         * http.c (gethttp): Fixed typo.
2869
2870 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
2871
2872         * version.c: Wget 1.5-b5 is released.
2873
2874 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
2875
2876         * retr.c (show_progress): Use it.
2877
2878         * log.c (logflush): New function.
2879
2880         * wget.h: Utilize __attribute__ if on gcc.
2881
2882 1998-02-07  Hrvoje Niksic  <hniksic@srce.hr>
2883
2884         * http.c (base64_encode_line): New argument LENGTH.
2885         (BASIC_AUTHENTICATION_ENCODE): Use it.
2886         (BASIC_AUTHENTICATION_ENCODE): Take length of HEADER into account.
2887
2888         * main.c (main): Fixed fprintf() format mismatch.
2889
2890 1998-02-06  Hrvoje Niksic  <hniksic@srce.hr>
2891
2892         * version.c: Wget 1.5-b4 is released.
2893
2894 1998-02-03  Simon Josefsson  <jas@pdc.kth.se>
2895
2896         * host.c: use sockaddr_in instead of addr_in.
2897
2898 1998-02-04  Hrvoje Niksic  <hniksic@srce.hr>
2899
2900         * init.c (cleanup): Use it.
2901
2902         * recur.c (recursive_cleanup): New function.
2903
2904         * retr.c (retrieve_from_file): Ditto.
2905
2906         * main.c (main): Use it.
2907
2908         * recur.c (recursive_reset): New function.
2909
2910         * retr.c (retrieve_from_file): Ditto.
2911
2912         * main.c (main): Simplify call to recursive_retrieve().
2913
2914         * recur.c (recursive_retrieve): Removed FLAGS argument.
2915
2916         * http.c (gethttp): Changed call to iwrite().
2917
2918 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
2919
2920         * url.c (get_urls_html): Ditto.
2921         (free_urlpos): Ditto.
2922         (mkstruct): Ditto.
2923         (construct): Ditto.
2924
2925         * retr.c (retrieve_url): Move declaration of local variables to
2926         smaller scope.
2927
2928         * url.c (urlproto): Use it.
2929         (parseurl): Ditto.
2930         (str_url): Ditto.
2931         (get_urls_html): Ditto.
2932
2933         * utils.h (ARRAY_SIZE): New macro.
2934
2935         * url.c (proto): Moved from url.h.
2936
2937         * url.h (URL_CLEANSE): Reformatted.
2938         (USE_PROXY_P): Renamed from USE_PROXY.
2939
2940         * ftp-basic.c: Adjust to the new interface of iwrite().
2941
2942         * ftp-basic.c (ftp_port): Use alloca().
2943
2944 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
2945
2946         * version.c: Wget 1.5-b3 is released.
2947
2948         * host.c (ftp_getaddress): Don't print to stderr directly.
2949
2950         * init.c (setbytes): Support `g' for gigabytes.
2951         (cmdtype): New specification CTIME.
2952         (setval): Use it with settime().
2953         (commands): Use it for WAIT and TIMEOUT.
2954
2955 1998-02-02  Hrvoje Niksic  <hniksic@srce.hr>
2956
2957         * http.c (BASIC_AUTHENTICATION_ENCODE): New macro.
2958         (gethttp): Use it.
2959
2960         * utils.c (unique_name_1): Moved from url.c.
2961         (unique_name): Ditto.
2962
2963         * url.c (url_filename): Ditto.
2964
2965         * log.c (redirect_output): Changed call to unique_name().
2966
2967         * url.c (unique_name_1): Renamed from unique_name().
2968         (unique_name): Changed interface.
2969
2970         * init.c (enum cmdid): Moved from init.h.
2971         (cmdtype): Ditto.
2972         (struct cmd): Ditto.
2973
2974         * main.c (main): Use it.
2975         (main): Moved `--backups' to not have a short option.
2976
2977         * options.h (struct options): New member BACKGROUND.
2978
2979         * main.c (print_help): Rearranged.
2980         (main): New long options for -n* short options: --no-directories,
2981         --no-host-directories, --non-verbose, --no-host-lookup and
2982         --dont-remove-listing.
2983
2984 1998-02-01  Hrvoje Niksic  <hniksic@srce.hr>
2985
2986         * main.c (main): Use log_close().
2987
2988         * log.c: New variable LOGFP.
2989         (vlogmsg): Use it.
2990         (redirect_output): Don't open /dev/null; set LOGFP to stdin
2991         instead.
2992         (log_close): New function.
2993
2994         * options.h (struct options): Removed LFILE.
2995
2996         * log.c (log_enable): Removed.
2997
2998         * main.c (main): Use it.
2999
3000         * log.c (log_init): New function.
3001
3002         * url.c (get_urls_html): Removed needless assignment to BASE.
3003
3004         * host.c (add_hlist): Don't set CMP needlessly.
3005
3006         * utils.c (match_backwards): Ditto.
3007         (in_acclist): Ditto.
3008
3009         * url.c (findurl): Ditto.
3010
3011         * netrc.c (parse_netrc): Ditto.
3012
3013         * log.c (log_dump): Ditto.
3014
3015         * html.c (html_quote_string): Ditto.
3016
3017         * ftp-basic.c (ftp_request): Made static.
3018
3019         * connect.c: Made global variables static.
3020
3021         * url.c (construct): Ditto.
3022
3023         * init.c (init_path): Avoid assignment inside `if'-condition.
3024
3025         * ftp.c: Don't include in.h or winsock.h.
3026
3027         * ftp.c (ftp_loop): Use SZ.
3028
3029         * connect.c (bindport): Cast &addrlen to int *.
3030         (conaddr): Ditto.
3031
3032         * init.c (initialize): Don't use SYSTEM_WGETRC unconditionally.
3033
3034 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
3035
3036         * ftp.c (getftp): Initialize opt.ftp_pass here.
3037         (ftp_retrieve_dirs): Use alloca().
3038
3039         * init.c (defaults): Don't initialize opt.ftp_pass.
3040
3041         * sysdep.h (S_ISLNK): Declare for OS/2; ditto for lstat.
3042         From Ivan F. Martinez <ivanfm@ecodigit.com.br>.
3043
3044 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
3045
3046         * recur.c (parse_robots): Check for comments more correctly.
3047
3048         * host.c (ftp_getaddress): Use STRDUP_ALLOCA.
3049         (ftp_getaddress): Add diagnostics when reverse-lookup yields only
3050         hostname.
3051
3052 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
3053
3054         * version.c: Wget 1.5-b2 is released.
3055
3056         * netrc.c (NETRC_FILE_NAME): Moved from netrc.h.
3057
3058         * utils.c (proclist): Pass FNM_PATHNAME to fnmatch().
3059
3060         * ftp-basic.c (ftp_pasv): Avoid unnecessary casting to unsigned
3061         char.
3062
3063         * log.c: Don't attempt to hide arguments from ansi2knr.
3064
3065         * cmpt.c: Synched strptime() and mktime() with glibc-2.0.6.
3066
3067         * ansi2knr.c: Use a later version, from fileutils-3.16l alpha.
3068
3069         * ftp.c (getftp): Ditto.
3070
3071         * http.c (gethttp): Use it.
3072
3073         * retr.c (get_contents): New argument EXPECTED; pass it to
3074         show_progress().
3075         (show_progress): New argument EXPECTED; use it to display
3076         percentages.
3077
3078         * init.c (setval): Ditto.
3079
3080         * http.c (gethttp): Ditto.
3081         (http_loop): Ditto.
3082
3083         * ftp.c (getftp): Ditto.
3084         (ftp_loop_internal): Ditto.
3085
3086         * ftp-ls.c (ftp_parse_unix_ls): Use abort() instead of assert(0).
3087
3088         * sysdep.h (CLOSE): Simplify; use DEBUGP.
3089
3090         * netrc.c (search_netrc): Use alloca().
3091
3092         * init.c (defaults): Initialize no_flush.
3093
3094         * log.c (vlogmsg): Don't flush if no_flush.
3095
3096         * options.h (struct options): New variable no_flush.
3097
3098         * main.c (main): Don't play games with buffering.
3099
3100         * log.c (vlogmsg): Flush the output after every message.
3101
3102 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
3103
3104         * init.c (parse_line): Ditto.
3105
3106         * url.c (get_urls_html): Ditto.
3107
3108         * main.c (main): Don't cast to unsigned char.
3109
3110         * init.c (run_wgetrc): Don't cast to unsigned char.
3111         (parse_line): Accept char instead of unsigned char.
3112
3113         * html.c (htmlfindurl): Use char instead of unsigned char.
3114
3115         * all: Use them.
3116
3117         * sysdep.h: Add wrappers to ctype macros to make them
3118         eight-bit-clean:
3119
3120 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
3121
3122         * html.c (htmlfindurl): Download <img lowsrc=...>
3123
3124         * main.c (main): Ignore SIGPIPE.
3125
3126         * connect.c (select_fd): New argument WRITEP.
3127         (iwrite): Call select_fd().
3128
3129 1997-02-27  Fila Kolodny <fila@ibi.com>
3130
3131         * ftp.c (ftp_retrieve_list): If retrieving symlink and the proper
3132         one already exists, just skip it.
3133
3134 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
3135
3136         * http.c (gethttp): Cosmetic changes.
3137
3138         * http.c (check_end): Allow `+D...' instead of `GMT'.
3139         From Fabrizio Pollastri <pollastri@cstv.to.cnr.it>.
3140
3141         * url.c (process_ftp_type): New function.
3142         (parseurl): Use it.
3143
3144         * connect.c (iwrite): Allow writing in a few chunks.
3145         (bindport): Made SRV static, so addr can point to it.
3146         (select_fd): Removed HPUX kludge.
3147
3148         * host.c (free_hlist): Incorporated into clean_hosts().
3149
3150 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
3151
3152         * host.c (hlist): Made static.
3153         (search_address): Cosmetic change.
3154
3155 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
3156
3157         * version.c: Wget v1.5-b1 is released.
3158
3159         * http.c (hgetlen): Use sizeof() to get the header length.
3160         (hgetrange): Ditto.
3161         (hgettype): Ditto.
3162         (hgetlocation): Ditto.
3163         (hgetmodified): Ditto.
3164         (haccepts_none): Ditto.
3165
3166         * main.c (main): Updated `--version' and `--help' output, as per
3167         Francois Pinard's suggestions.
3168
3169         * main.c: Include locale.h; call setlocale(), bindtextdomain() and 
3170         textdomain().
3171
3172         * config.h.in: Define stubs for I18N3.
3173
3174         * wget.h: Include libintl.h.
3175
3176 1998-01-28  Hrvoje Niksic  <hniksic@srce.hr>
3177
3178         * url.c (mkstruct): Check for opt.cut_dirs.
3179         (mkstruct): alloca()-te more, xmalloc() less.
3180
3181         * utils.c (load_file): Check for ferror().
3182
3183         * url.c (get_urls_file): Close only the files we opened.
3184         (get_urls_html): Ditto.
3185         (count_slashes): New function.
3186
3187         * http.h: Removed.
3188
3189         * http.c (gethttp): Respect username and password provided by
3190         proxy URL.
3191         (base64_encode_line): Write into an existing buffer instead of
3192         malloc-ing a new one.
3193         (struct http_stat): Moved from http.h
3194
3195         * retr.c (retrieve_url): Free SUF.
3196
3197         * all: Removed lots of unnecessary .h dependencies.
3198
3199         * html.c (global_state): Made static.
3200
3201         * utils.h (ALLOCA_ARRAY): New macro.
3202
3203         * main.c (main): New option `--cut-dirs'.
3204
3205         * url.c (construct): Use alloca() for T.
3206
3207         * utils.c (mkdirhier): Use STRDUP_ALLOCA.
3208
3209         * host.c (_host_t): Moved from host.h.
3210         (struct host): Renamed from _host_t.
3211         (store_hostaddress): Use STRDUP_ALLOCA for INET_S.
3212         (realhost): Ditto.
3213
3214         * host.h: Don't include url.h.
3215
3216         * ftp.c (LIST_FILENAME): Moved from ftp.h.
3217
3218         * init.c (DEFAULT_FTP_ACCT): Moved from ftp.h.
3219
3220         * main.c (main): Enable log if the output goes to a TTY.
3221
3222         * connect.h: Removed unused constant `BACKLOG'.
3223
3224         * config.h.in: Check for isatty().
3225
3226         * Makefile.in (LINK): Use CFLAGS when linking.
3227
3228 1998-01-27  Hrvoje Niksic  <hniksic@srce.hr>
3229
3230         * mswindows.c (ws_hangup): Use redirect_output().
3231
3232         * main.c (redirect_output_signal): New function; use
3233         redirect_output().
3234
3235         * log.c (redirect_output): New function, based on hangup(), which
3236         is deleted.
3237
3238         * log.c (vlogmsg): New function.
3239
3240         * wget.h (DEBUGP): Use debug_logmsg().
3241
3242         * main.c (hangup): Use it.
3243
3244         * log.c (log_dump): New function.
3245
3246         * utils.h (DO_REALLOC): Use `long' for various sizes.
3247
3248         * http.c (hskip_lws): Use `while', for clarity.
3249         (HTTP_DYNAMIC_LINE_BUFFER): New constant.
3250         (fetch_next_header): Use it instead of DYNAMIC_LINE_BUFFER.
3251
3252         * ftp-basic.c (FTP_DYNAMIC_LINE_BUFFER): New constant.
3253         (ftp_response): Use it instead of DYNAMIC_LINE_BUFFER.
3254
3255         * utils.c (DYNAMIC_LINE_BUFFER): Moved from utils.c.
3256         (LEGIBLE_SEPARATOR): Ditto.
3257         (FILE_BUFFER_SIZE): Ditto.
3258
3259         * retr.c (BUFFER_SIZE): Moved from retr.h.
3260
3261         * log.c: New file.
3262         (logmsg): Moved from utils.c.
3263         (debug_logmsg): New function.
3264
3265         * mswindows.h: Include it here.
3266
3267         * init.c: Ditto.
3268
3269         * utils.c: Don't include <windows.h>.
3270
3271 1998-01-25  Hrvoje Niksic  <hniksic@srce.hr>
3272
3273         * host.c (ftp_getaddress): Ditto.
3274
3275         * main.c (main): Use it.
3276
3277         * utils.h (STRDUP_ALLOCA): New macro.
3278
3279         * init.c: Prepend `wget: ' to error messages printed on stderr.
3280
3281         * utils.c (mkdirhier): Renamed from mymkdir.
3282         (touch): Renamed from my_touch.
3283         (pwd_cuserid): Renamed from my_cuserid().
3284
3285 1998-01-24  Andy Eskilsson  <andy.eskilsson@telelogic.se>
3286
3287         * utils.c (accdir): Process wildcards.
3288         (proclist): New function.
3289         (accdir): Use it to avoid code repetition.
3290
3291 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
3292
3293         * recur.c (parse_robots): Respect opt.useragent; use alloca().
3294
3295         * http.c (gethttp): Construct useragent accordingly.
3296
3297         * version.c: Changed version string to numbers-only.
3298
3299         * main.c (print_help): List all the options.
3300
3301         * mswindows.c (windows_main_junk): Initialize argv0 here.
3302
3303 1998-01-24  Karl Heuer  <kwzh@gnu.org>
3304
3305         * netrc.c (search_netrc): Initialize `l' only after processing
3306         netrc.
3307
3308         * main.c (main): Don't trap SIGHUP if it's being ignored.
3309
3310 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
3311
3312         * all: Use logmsg().
3313
3314         * utils.c (time_str): Moved from retr.c.
3315         (logmsg): New function.
3316         (logmsg_noflush): Ditto.
3317
3318         * rbuf.c: New file, moved buf_* functions here.
3319
3320         * ftp.c (ftp_expected_bytes): Moved from ftp-basic.c.
3321
3322         * ftp-basic.c (ftp_rest): Use prnum().
3323
3324         * ftp-basic.c: Ditto.
3325
3326         * ftp.c: Use the new reading functions and macros.
3327
3328         * retr.c (buf_initialize): New function.
3329         (buf_initialized_p): Ditto.
3330         (buf_uninitialize): Ditto.
3331         (buf_fd): Ditto.
3332
3333         * http.c (fetch_next_header): Use the BUF_READCHAR macro for
3334         efficiency.
3335         (gethttp): Use alloca() where appropriate.
3336
3337         * retr.c (buf_readchar): Use it.
3338         (buf_peek): Use rstreams.
3339
3340         * retr.h (BUF_READCHAR): New macro.
3341
3342         * init.c (home_dir): Rewritten for clarity.
3343         (init_path): Ditto.
3344
3345         * mswindows.c (ws_backgnd): Made static.
3346         (read_registry): Ditto.
3347         (ws_cleanup): Ditto.
3348         (ws_handler): Ditto.
3349
3350 1998-01-23  Hrvoje Niksic  <hniksic@srce.hr>
3351
3352         * alloca.c: New file.
3353
3354         * Makefile.in (ALLOCA): Define.
3355
3356         * mswindows.c (ws_help): Constify.
3357         (ws_help): Use alloca.
3358
3359         * mswindows.c: Reformat.
3360
3361         * all: Added _(...) annotations for I18N snarfing and translation.
3362
3363         * host.c (ftp_getaddress): Nuke SYSINFO.
3364         (ftp_getaddress): Don't use getdomainname().
3365         (ftp_getaddress): Use uname(), where available.
3366
3367         * http.c (gethttp): Protect a stray fprintf().
3368
3369         * init.c (settime): New function.
3370         (setval): Treat WAIT specially, allowing suffixes like `m' for
3371         minutes, etc.
3372
3373 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
3374
3375         * url.c (get_urls_html): Use alloca() for TEMP.
3376
3377 1998-01-21  Jordan Mendelson  <jordy@wserv.com>
3378
3379         * url.c (rotate_backups): New function.
3380
3381         * http.c (gethttp): Ditto.
3382
3383         * ftp.c (getftp): Rotate backups.
3384
3385 1997-12-18  Hrvoje Niksic  <hniksic@srce.hr>
3386
3387         * all: Renamed nmalloc(), nrealloc() and nstrdup() to xmalloc(),
3388         xrealloc() and xstrdup().  Use the new functions.
3389
3390         * url.c (decode_string): Made static.
3391         (has_proto): Ditto.
3392         (parse_dir): Ditto.
3393         (parse_uname): Ditto.
3394         (mkstruct): Ditto.
3395         (construct): Ditto.
3396         (construct_relative): Ditto.
3397
3398         * retr.c (show_progress): Made static.
3399
3400         * recur.c (robots_url): Made static.
3401         (retrieve_robots): Ditto.
3402         (parse_robots): Ditto.
3403         (robots_match): Ditto.
3404
3405         * main.h: Removed.
3406
3407         * main.c (printhelp): Made static.
3408         (hangup): Ditto.
3409
3410         * init.c (comind): Made static.
3411         (defaults): Ditto.
3412         (init_path): Ditto.
3413         (run_wgetrc): Ditto.
3414         (onoff): Ditto.
3415         (setonoff): Ditto.
3416         (setnum): Ditto.
3417         (myatoi): Ditto.
3418         (getperms): Ditto.
3419         (setbytes): Ditto.
3420
3421         * http.c (fetch_next_header): Made static.
3422         (hparsestatline): Ditto.
3423         (hskip_lws): Ditto.
3424         (hgetlen): Ditto.
3425         (hgetrange): Ditto.
3426         (hgettype): Ditto.
3427         (hgetlocation): Ditto.
3428         (hgetmodified): Ditto.
3429         (haccepts_none): Ditto.
3430         (gethttp): Ditto.
3431         (base64_encode_line): Ditto.
3432         (mktime_from_utc): Ditto.
3433         (http_atotm): Ditto.
3434
3435         * html.c (idmatch): Made static.
3436
3437         * host.c (search_host): Made static.
3438         (search_address): Ditto.
3439         (free_hlist): Ditto.
3440
3441         * ftp.c (getftp): Made static.
3442         (ftp_loop_internal): Ditto.
3443         (ftp_get_listing): Ditto.
3444         (ftp_retrieve_list): Ditto.
3445         (ftp_retrieve_dirs): Ditto.
3446         (ftp_retrieve_glob): Ditto.
3447         (freefileinfo): Ditto.
3448         (delelement): Ditto.
3449
3450         * ftp-ls.c (symperms): Made static.
3451         (ftp_parse_unix_ls): Ditto.
3452
3453         * connect.c (select_fd): Made static.
3454
3455         * utils.c (xmalloc): Renamed from nmalloc.
3456         (xrealloc): Renamed from nrealloc.
3457         (xstrdup): Renamed from nstrdup.
3458
3459         * getopt.c (exchange): Use alloca.
3460
3461         * mswindows.c (mycuserid): Use strncpy.
3462
3463         * New files mswindows.c, mswindows.h, sysdep.h.  winjunk.c,
3464         systhings.h, windecl.h and winjunk.h removed.
3465
3466         * mswindows.c (sleep): New function.
3467
3468         * utils.c: Include <windows.h> under Windows.
3469
3470 1997-06-12  Darko Budor  <dbudor@zesoi.fer.hr>
3471
3472         * url.h (URL_UNSAFE): Change default under Windows.
3473
3474         * retr.c (retrieve_from_file): Respect opt.delete_after.
3475
3476         * main.c (main): Call ws_help on Windows.
3477
3478         * winjunk.c (windows_main_junk): New function.
3479
3480         * main.c (main): Junk-process argv[0].
3481
3482         * http.c (mktime_from_utc): Return -1 if mktime failed.
3483
3484         * http.c (http_loop): Ditto.
3485
3486         * ftp.c (ftp_loop_internal): Change title on Windows when using a
3487         new URL.
3488
3489         * winjunk.c (getdomainname): Lots of functions.
3490
3491 1997-06-12  Hrvoje Niksic  <hniksic@srce.hr>
3492
3493         * cmpt.c (strptime_internal): Handle years more correctly for
3494         `%y'.
3495
3496 1997-06-09  Mike Thomas <mthomas@reality.ctron.com>
3497
3498         * http.c (gethttp): Allocate enough space for
3499         `Proxy-Authorization' header.
3500
3501 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
3502
3503         * version.c: Wget/1.4.5 is released.
3504
3505 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
3506
3507         * retr.c (get_contents): Check return value of fwrite more
3508         carefully.
3509
3510 1997-03-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3511
3512         * cmpt.c (strptime_internal) [case 'Y']: Always subtract 1900 from
3513         year, regardless of century.
3514
3515 1997-03-30  Hrvoje Niksic  <hniksic@srce.hr>
3516
3517         * utils.c (isfile): Use `lstat' instead of `stat'.
3518
3519 1997-03-29  Hrvoje Niksic  <hniksic@srce.hr>
3520
3521         * utils.c (numdigit): Use explicit test.
3522
3523 1997-03-21  Hrvoje Niksic  <hniksic@srce.hr>
3524
3525         * http.c (http_loop): Always use `url_filename' to get u->local.
3526
3527 1997-03-20  Hrvoje Niksic  <hniksic@srce.hr>
3528
3529         * url.c: Recognize https.
3530
3531 1997-03-13  Hrvoje Niksic  <hniksic@srce.hr>
3532
3533         * recur.c (recursive_retrieve): Lowercase just the host name.
3534
3535 1997-03-09  Hrvoje Niksic  <hniksic@srce.hr>
3536
3537         * url.c (get_urls_file): Use the correct test.
3538         (get_urls_html): Ditto.
3539
3540 1997-03-07  Hrvoje Niksic  <hniksic@srce.hr>
3541
3542         * connect.c: Reverted addrlen to int.
3543
3544         * init.c (parse_line): Check for -1 instead of NONE.
3545
3546         * version.c: Changed version to 1.4.5.
3547
3548 1997-02-17  Hrvoje Niksic  <hniksic@srce.hr>
3549
3550         * init.c: New option netrc.
3551         (initialize): Don't parse .netrc.
3552
3553         * cmpt.c (recursive): Return rp.
3554         (strptime_internal): Match the long strings first, the abbreviated
3555         second.
3556
3557 1997-02-16  Hrvoje Niksic  <hniksic@srce.hr>
3558
3559         * http.c (check_end): New function.
3560         (http_atotm): Use it.
3561  
3562 1997-02-13  gilles Cedoc  <gilles@cedocar.fr>
3563
3564         * http.c (gethttp): Use them.
3565
3566         * init.c: New options proxy_user and proxy_passwd.
3567
3568 1997-02-14  Hrvoje Niksic  <hniksic@srce.hr>
3569
3570         * ftp.c (ftp_retrieve_list): Create links even if not relative.
3571
3572 1997-02-10  Hrvoje Niksic  <hniksic@srce.hr>
3573
3574         * recur.c (recursive_retrieve): Lowercase the host name, if the
3575         URL is not "optimized".
3576
3577         * host.c (realhost): Return l->hostname, even if it matches with
3578         host.
3579
3580 1997-02-10  Marin Purgar  <pmc@asgard.hr>
3581
3582         * connect.c: Make addrlen size_t instead of int.
3583         (conaddr): Ditto.
3584
3585 1997-02-09  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
3586
3587         * systhings.h: Define S_ISLNK on NeXT too.
3588
3589 1997-02-09  Hrvoje Niksic  <hniksic@srce.hr>
3590
3591         * version.c: Released 1.4.3.
3592
3593         * url.c: Futher update to list of protostrings.
3594         (skip_proto): Skip `//' correctly for FTP and HTTP.
3595
3596         * url.c (get_urls_html): Handle bogus `http:' things a little
3597         different.
3598
3599         * main.c (main): Removed `follow-ftp' from `f'.
3600         (main): Dumped the `prefix-files' and `file-prefix' options and
3601         features; old and bogus.
3602         (main): Exit on failed setval() in `-e'.
3603
3604         * http.c (fetch_next_header): Use it to detect header continuation
3605         correctly.
3606
3607         * retr.c (buf_peek): New function.
3608
3609 1997-02-08  Hrvoje Niksic  <hniksic@srce.hr>
3610
3611         * wget.h: Include time.h and stuff.
3612
3613 1997-02-08  Roger Beeman  <beeman@cisco.com>
3614
3615         * ftp.c: Include <time.h>
3616
3617 1997-02-07  Hrvoje Niksic  <hniksic@srce.hr>
3618
3619         * url.c (findurl): Would read over buffer limits.
3620
3621 1997-02-06  Hrvoje Niksic  <hniksic@srce.hr>
3622
3623         * ftp-ls.c (ftp_parse_unix_ls): Allow spaces in file names.
3624
3625 1997-02-05  Hrvoje Niksic  <hniksic@srce.hr>
3626
3627         * http.c (http_atotm): Initialize tm.is_dst.
3628
3629 1997-02-02  Hrvoje Niksic  <hniksic@srce.hr>
3630
3631         * http.c (gethttp): Don't print the number of retrieved headers.
3632
3633         * main.c (main): New option `--no-clobber', alias for `-nc'.
3634
3635         * url.c: Recognize `https://'.
3636
3637 1997-02-01  Hrvoje Niksic  <hniksic@srce.hr>
3638
3639         * host.c (herrmsg): Don't use h_errno.
3640
3641 1997-01-30  Hrvoje Niksic  <hniksic@srce.hr>
3642
3643         * host.c (accept_domain): Use it.
3644
3645         * main.c (main): New option `--exclude-domains'.
3646
3647         * retr.c (retrieve_url): Use it.
3648         (retrieve_url): Bail out when an URL is redirecting to itself.
3649
3650         * url.c (url_equal): New function.
3651
3652 1997-01-29  Hrvoje Niksic  <hniksic@srce.hr>
3653
3654         * connect.c: Include arpa/inet.h instead of arpa/nameser.h.
3655
3656         * http.c (mk_utc_time): New function.
3657         (http_atotm): Use it; handle time zones correctly.
3658
3659 1997-01-28  Hrvoje Niksic  <hniksic@srce.hr>
3660
3661         * http.c: Ditto.
3662
3663         * ftp-basic.c: Use it instead of WRITE.
3664
3665         * connect.c (iwrite): New function.
3666
3667 1997-01-27  Hrvoje Niksic  <hniksic@srce.hr>
3668
3669         * cmpt.c (mktime): New function.
3670
3671         * netrc.c: Include <sys/types.h>.
3672
3673         * main.c (main): Wouldn't recognize --spider.
3674
3675         * retr.c (rate): Use `B', `KB' and `MB'.
3676         (reset_timer,elapsed_time): Moved from utils.c.
3677
3678         * ftp.c (ftp_retrieve_list): Ditto.
3679
3680         * http.c (http_loop): Don't touch the file if opt.dfp.
3681
3682 1997-01-24  Hrvoje Niksic  <hniksic@srce.hr>
3683
3684         * cmpt.c: New file.
3685
3686         * ftp.c (ftp_retrieve_glob): New argument semantics.
3687         (ftp_retrieve_dirs): Use it.
3688         (ftp_loop): Ditto.
3689
3690         * html.c (htmlfindurl): Recognize `'' as the quote char.
3691
3692 1997-01-23  Hrvoje Niksic  <hniksic@srce.hr>
3693
3694         * ftp.c (ftp_loop_internal): Use it.
3695
3696         * utils.c (remove_link): New function.
3697
3698 1997-01-22  Hrvoje Niksic  <hniksic@srce.hr>
3699
3700         * retr.c (retrieve_url): Require STRICT redirection URL.
3701
3702         * url.c (parseurl): New argument STRICT.
3703
3704         * http.c (hparsestatline): Be a little-bit less strict about
3705         status line format.
3706
3707 1997-01-21  Hrvoje Niksic  <hniksic@srce.hr>
3708
3709         * http.c (gethttp): Use it.
3710
3711         * main.c (main): Don't use '<digit>' as options.
3712
3713         * init.c: New option ignore_length.
3714
3715         * http.c (gethttp): Ditto.
3716         (http_loop): Check for redirection without Location:.
3717         (gethttp): Don't print Length unless RETROKF.
3718
3719         * ftp.c (getftp): Use it.
3720
3721         * url.c (mkalldirs): New function.
3722
3723         * utils.c (mymkdir): Don't check for existing non-directory.
3724
3725         * url.c (mkstruct): Don't create the directory.
3726
3727 1997-01-20  Hrvoje Niksic  <hniksic@srce.hr>
3728
3729         * init.c (setval): Removed NO_RECURSION checks.
3730
3731 1997-01-19  Hrvoje Niksic  <hniksic@srce.hr>
3732
3733         * version.c: "Released" 1.4.3-pre2.
3734
3735         * recur.c (recursive_retrieve): Bypass host checking only if URL
3736         is ftp AND parent URL is not ftp.
3737
3738         * ftp-basic.c (ftp_request): Print out Turtle Power.
3739
3740         * ftp.c (ftp_loop): Call ftp_retrieve_glob with 0 if there's no
3741         wildcard.
3742         (ftp_retrieve_glob): Call ftp_loop_internal even on empty list, if
3743         not glob.
3744
3745         * http.c (gethttp): Be a little bit smarter about status codes.
3746
3747         * recur.c (recursive_retrieve): Always reset opt.recursive when
3748         dealing with FTP.
3749
3750 1997-01-18  Hrvoje Niksic  <hniksic@srce.hr>
3751
3752         * retr.c (retrieve_url): New variable location_changed; use it for
3753         tests instead of mynewloc.
3754         (retrieve_url): Allow heuristic adding of html.
3755
3756         * url.c (url_filename): Don't use the `%' in Windows file names.
3757
3758         * http.c (http_loop): Always time-stamp the local file.
3759
3760         * http.c (http_loop): Ditto.
3761
3762         * ftp.c (ftp_retrieve_list): Use it.
3763
3764         * utils.c (my_touch): New function.
3765
3766         * ftp.c (ftp_retrieve_list): Use #ifdef HAVE_STRUCT_UTIMBUF
3767         instead of #ifndef NeXT.
3768
3769         * utils.c (strptime): New version, by Ulrich Drepper.
3770
3771 1997-01-17  Hrvoje Niksic  <hniksic@srce.hr>
3772
3773         * http.c (haccepts_none): Renamed from `haccepts_bytes'.
3774         (gethttp): If haccepts_none(), disable ACCEPTRANGES.
3775         (http_loop): Would remove ACCEPTRANGES.
3776
3777         * ftp.c (getftp): Call ftp_list with NULL.
3778
3779 1997-01-15  Hrvoje Niksic  <hniksic@srce.hr>
3780
3781         * html.c (ftp_index): Don't print minutes and seconds if we don't
3782         know them; beautify the output.
3783
3784         * ftp.c (getftp): Don't close the socket on FTPNSFOD.
3785
3786 1997-01-14  Hrvoje Niksic  <hniksic@srce.hr>
3787
3788         * utils.c (strptime): New function.
3789         (strptime): Don't use get_alt_number.
3790         (strptime): Don't use locale.
3791         (match_string): Made it a function.
3792
3793 1997-01-12  Hrvoje Niksic  <hniksic@srce.hr>
3794
3795         * http.c (http_atotm): New function.
3796         (http_loop): Use it.
3797
3798         * atotm.c: Removed from the distribution.
3799
3800         * http.c (base64_encode_line): Rewrite.
3801
3802 1997-01-09  Hrvoje Niksic  <hniksic@srce.hr>
3803
3804         * ftp.c (getftp): Use ftp_expected_bytes; print size.
3805
3806         * ftp-basic.c (ftp_response): Use ftp_last_respline.
3807         (ftp_expected_bytes): New function.
3808
3809         * ftp.c (getftp): Print the unauthoritative file length.
3810
3811         * ftp-ls.c: Renamed from ftp-unix.c.
3812         (ftp_parse_ls): Moved from ftp.c.
3813         (ftp_parse_unix_ls): Recognize seconds in time spec.
3814         (ftp_parse_unix_ls): Recognize year-less dates of the previous
3815         year.
3816
3817 1997-01-08  Hrvoje Niksic  <hniksic@srce.hr>
3818
3819         * ftp-basic.c: Don't declare errno if #defined.
3820
3821         * host.c (ftp_getaddress): Check for sysinfo legally.
3822
3823 1997-01-08  Darko Budor  <dbudor@diana.zems.fer.hr>
3824
3825         * connect.c (iread): Use READ.
3826
3827 1996-12-23  Hrvoje Niksic  <hniksic@srce.hr>
3828
3829         * url.c: Recognize finger, rlogin, tn3270, mid and cid as valid
3830         schemes.
3831
3832 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
3833
3834         * host.c (ftp_getaddress): Allow `.' in hostname.
3835
3836 1996-12-26  Darko Budor <dbudor@zems.fer.hr>
3837
3838         * wget.h: READ and WRITE macros for use instead of read and write
3839         on sockets, grep READ *.c, grep WRITE *.c
3840
3841         * wsstartup.c: new file - startup for winsock
3842
3843         * wsstartup.h: new file
3844
3845         * win32decl.h: new file - fixup for <errno.h> and winsock trouble
3846
3847         * configure.bat: Configure utility for MSVC
3848
3849         * src/Makefile.ms,config.h.ms: new files for use with MSVC 4.x
3850
3851 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
3852
3853         * version.c: Released 1.4.3-pre.
3854
3855         * utils.c (prnum): Accept long.
3856         (legible): Use prnum().
3857
3858         * connect.c (make_connection): Accept port as short.
3859         (bindport): Ditto.
3860
3861         * http.c (gethttp): Use search_netrc.
3862
3863 1996-12-21  Hrvoje Niksic  <hniksic@srce.hr>
3864
3865         * ftp.c (getftp): Use search_netrc.
3866
3867         * netrc.c (free_netrc): New function.
3868
3869         * init.c (home_dir): New function.
3870
3871         * url.c (convert_links): Allow REL2ABS changes.
3872
3873 1996-12-21  Gordon Matzigkeit  <gord@gnu.ai.mit.edu>
3874
3875         * netrc.c: New file.
3876         (parse_netrc, maybe_add_to_list): New functions.
3877
3878 1996-12-17  Hrvoje Niksic  <hniksic@srce.hr>
3879
3880         * retr.c (retrieve_url): Reset opt.recursion before calling
3881         ftp_loop if it is reached through newloc.
3882
3883         * init.c (run_wgetrc): Print the wgetrc path too, when reporting
3884         error; don't use "Syntax error", since we don't know if it is
3885         really a syntax error.
3886
3887 1996-12-16  Hrvoje Niksic  <hniksic@srce.hr>
3888
3889         * utils.c (acceptable): Extract the filename part of the path.
3890
3891         * recur.c (recursive_retrieve): Call acceptable() with the right
3892         argument; would bug out on wildcards.
3893
3894         * init.c (parse_line): Likewise.
3895
3896         * html.c (htmlfindurl): Cast to char * when calling stuff.
3897
3898 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
3899
3900         * ftp.c (getftp): Use ftp_pasv.
3901
3902         * ftp-basic.c (ftp_request): Accept NULL value.
3903         (ftp_pasv): New function.
3904
3905         * options.h (struct options): Add passive FTP option.
3906
3907 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
3908
3909         * url.c (parseurl): Debug output.
3910
3911         * utils.c (path_simplify): New one, adapted from bash's
3912         canonicalize_pathname().
3913
3914 1996-12-14  Hrvoje Niksic  <hniksic@srce.hr>
3915
3916         * ftp.c (getftp): Don't discard the buffer.
3917
3918         * retr.c (get_contents): New parameter nobuf.
3919
3920 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
3921
3922         * html.c (htmlfindurl): Recognize <meta contents="d; URL=...".
3923
3924         * init.c (setval): Strip the trailing slashes on CVECDIR.
3925
3926 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
3927
3928         * init.c: Make excludes and includes under CVECDIR instead of
3929         CVEC.
3930
3931 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
3932
3933         * url.c (get_urls_html): Skip "http:".
3934
3935 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
3936
3937         * utils.c (strcasecmp): From glibc.
3938         (strncasecmp): Also.
3939         (strstr): Also.
3940
3941         * url.c: Added javascript: to the list of URLs prefixes.
3942
3943 1996-12-12  Shawn McHorse  <riffraff@txdirect.net>
3944
3945         * recur.c (retrieve_robots): Print the warning message only if
3946         verbose.
3947
3948 1996-12-12  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
3949
3950         * ftp.c (ftp_retrieve_list): Use NeXT old utime interface.
3951
3952 1996-12-12  Hrvoje Niksic  <hniksic@srce.hr>
3953
3954         * systhings.h: New file.
3955
3956         * ../configure.in: Check for utime.h
3957
3958         * ftp.c: Check whether we have unistd.h.
3959
3960 1996-11-27  Hrvoje Niksic  <hniksic@srce.hr>
3961
3962         * recur.c (recursive_retrieve): Send the canonical URL as referer.
3963         (recursive_retrieve): Call get_urls_html with the canonical URL.
3964
3965 1996-12-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3966
3967         * (configure.in, config.h.in, src/Makefile.in, src/*.[ch]): Add
3968         ansi2knr support for compilers which don't support ANSI style
3969         function prototypes and signatures.
3970
3971         * (aclocal.m4, src/ansi2knr.c, src/ansi2knr.1): New files.
3972
3973 1996-11-26  Hrvoje Niksic  <hniksic@srce.hr>
3974
3975         * url.c: Use it; Recognize paths ending with "." and ".." as
3976         directories.
3977         (url_filename): Append .n whenever file exists and could be a
3978         directory.
3979
3980         * url.h (ISDDOT): New macro.
3981
3982         * init.c (parse_line): Use unsigned char.
3983
3984         * url.c (get_urls_html): Cast to unsigned char * when calling
3985         htmlfindurl.
3986
3987         * html.c (htmlfindurl): Use unsigned char.
3988
3989         * version.c: Changed version to 1.4.3.
3990
3991 1996-11-25  Hrvoje Niksic  <hniksic@srce.hr>
3992
3993         * version.c: Released 1.4.2.
3994
3995         * ftp.c (getftp): Simplified assertion.
3996         (ftp_loop_internal): Remove symlink before downloading.
3997         (ftp_retrieve_list): Unlink the symlink name before attempting to
3998         create a symlink!
3999
4000         * options.h (struct options): Renamed print_server_response to
4001         server_response.
4002
4003         * ftp.c (rel_constr): Removed.
4004         (ftp_retrieve_list): Don't use it.
4005         (ftp_retrieve_list): Use opt.retr_symlinks.
4006
4007 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
4008
4009         * main.c (main): New option retr_symlinks.
4010
4011         * url.c (convert_links): Print verbose message.
4012
4013 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
4014
4015         * http.c (http_loop): Reset newloc in the beginning of function;
4016         would cause FMR in retrieve_url.
4017
4018 1996-11-23  Hrvoje Niksic  <hniksic@srce.hr>
4019
4020         * recur.c (convert_all_links): Find the URL of each HTML document,
4021         and feed it to get_urls_html; would bug out.
4022         (convert_all_links): Check for l2 instead of dl; removed dl.
4023
4024         * url.c (convert_links): Don't refer to freed newname.
4025
4026         * recur.c (recursive_retrieve): Add this_url to urls_downloaded.
4027
4028         * main.c (main): Print the OS_TYPE in the debug output, too.
4029
4030         * recur.c (recursive_retrieve): Check for opt.delete_after.
4031
4032         * main.c (main): New option delete-after.
4033
4034         * init.c (setval): Cleaned up.
4035
4036 1996-11-21  Hrvoje Niksic  <hniksic@srce.hr>
4037
4038         * Makefile.in (wget): Make `wget' the default target.
4039
4040         * ftp.c (ftp_loop_internal): Move noclobber checking out of the
4041         loop.
4042         (ftp_retrieve_list): Warn about non-matching sizes.
4043
4044         * http.c (http_loop): Made -nc non-dependent on opt.recursive.
4045
4046         * init.c (setnum): Renamed from setnuminf; New argument flags.
4047         (setval): Use it.
4048
4049         * main.c (main): Sorted the options.
4050         (main): New option --wait.
4051
4052 1996-11-21  Shawn McHorse  <riffraff@txdirect.net>
4053
4054         * html.c (htmlfindurl): Reset s->in_quote after getting out of
4055         quotes.
4056
4057 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
4058
4059         * version.c: Changed version to 1.4.2.
4060
4061 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
4062
4063         * version.c: Released 1.4.1.
4064
4065         * html.c (html_quote_string): New function.
4066         (ftp_index): Use it.
4067         (htmlfindurl): A more gentle ending debug message.
4068
4069         * ftp.c (ftp_loop): Check for opt.htmlify.
4070
4071         * init.c: New command htmlify.
4072
4073         * ftp.c (getftp): Nicer error messages, with `'-encapsulated
4074         strings.
4075         (ftp_loop): Print size of index.html.
4076
4077         * init.c (setval): Implement "styles".
4078
4079         * main.c (main): New option dotstyle.
4080
4081 1996-11-19  Hrvoje Niksic  <hniksic@srce.hr>
4082
4083         * ftp.c (getftp): Close the master socket in case of errors, after
4084         bindport().
4085
4086         * connect.c (bindport): Initialize msock to -1.
4087
4088         * ftp.c (getftp): Initialize dtsock to -1.
4089
4090         * connect.c (closeport): Don't close sock if sock == -1.
4091
4092 1996-11-18  Hrvoje Niksic  <hniksic@srce.hr>
4093
4094         * init.c (setnuminf): Nuked default value -- just leave unchanged.
4095         (setval): Don't send default values.
4096         (defaults): Use DEFAULT_TIMEOUT -- aaargh.
4097
4098         * options.h (struct options): Use long for dot_bytes.
4099
4100         * init.c (setquota): Renamed to setbytes.
4101         (setval): Use setbytes on DOTBYTES.
4102
4103 1996-11-17  Hrvoje Niksic  <hniksic@srce.hr>
4104
4105         * ftp.c (getftp): Initialize con->dltime.
4106
4107         * recur.c (recursive_retrieve): Use same_host instead of
4108         try_robots; simply load robots_txt whenever the host is changed.
4109         (recursive_retrieve): Free forbidden before calling parse_robots.
4110
4111 1996-11-16  Hrvoje Niksic  <hniksic@srce.hr>
4112
4113         * retr.c (show_progress): Use them.
4114
4115         * options.h (struct options): New options dot_bytes, dots_on_line
4116         and dot_spacing.
4117
4118 1996-11-16  Mark Boyns  <boyns@sdsu.edu>
4119
4120         * recur.c (recursive_retrieve): Retrieve directories regardless of
4121         acc/rej rules; check for empty u->file.
4122
4123 1996-11-14  Hrvoje Niksic  <hniksic@srce.hr>
4124
4125         * init.c (setval): Use it.
4126
4127         * utils.c (merge_vecs): New function.
4128
4129         * init.c (setval): Reset the list-type functions when encountering
4130         "".
4131
4132 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
4133
4134         * recur.c (recursive_retrieve): Use base_url instead of this_url
4135         for no_parent.
4136
4137 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
4138
4139         * html.c (htmlfindurl): Reset s->in_quote after exiting the quote.
4140
4141 1996-11-13  Hrvoje Niksic  <hniksic@srce.hr>
4142
4143         * utils.c (sepstring): Rewrote; don't use strtok.
4144
4145         * recur.c (recursive_retrieve): Enter assorted this_url to slist
4146         when running the first time.
4147         (retrieve_robots): Warn to ignore errors when robots are loaded.
4148
4149         * utils.c (load_file): Moved from url.c.
4150
4151         * http.c: Made static variables const too in h* functions.
4152
4153         * main.c (main): Renamed --continue-ftp to --continue.
4154
4155         * recur.c (recursive_retrieve): Use it.
4156
4157         * utils.c (frontcmp): New function.
4158
4159         * url.c (accdir): New function.
4160
4161         * html.c (htmlfindurl): Recognize <area href=...>.
4162
4163         * ftp.c (ftp_retrieve_dirs): Implemented opt.includes.
4164
4165         * init.c (setval): Free the existing opt.excludes and
4166         opt.includes, if available.
4167
4168         * main.c (main): New option -I.
4169
4170 1996-11-12  Hrvoje Niksic  <hniksic@srce.hr>
4171
4172         * ftp.c (ftp_retrieve_glob): Do not weed out directories.
4173
4174         * version.c: Changed version to 1.4.1.
4175
4176 1996-11-11  Hrvoje Niksic  <hniksic@srce.hr>
4177
4178         * version.c: Released 1.4.0.
4179
4180 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
4181
4182         * main.c (main): Free com and val after parse_line.
4183         (printhelp): Reorder the listing.
4184
4185         * http.c: More robust header parsing.
4186
4187         * http.c: Allow any number of spaces, or no spaces, precede ':'.
4188         (hskip_lws): New function.
4189         (haccepts_bytes): New function.
4190         (gethttp): Use it.
4191
4192         * init.c (setval): Check header sanity.
4193         (setval): Allow resetting of headers.
4194
4195 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
4196
4197         * http.c (http_loop): Don't use has_wildcards.
4198
4199         * http.c (gethttp): Free all_headers -- would leak.
4200
4201         * recur.c (recursive_retrieve): Initialize depth to 1 instead of
4202         0 -- this fixes a long-standing bug in -rl.
4203
4204 1996-11-09  Hrvoje Niksic  <hniksic@srce.hr>
4205
4206         * ftp.c: Use -1 as "impossible" value for con->fd.
4207
4208         * url.h (URL_SEPARATOR): Don't treat `*' and `+' as separators.
4209
4210         * init.c (parse_line): Use isalpha.
4211
4212         * ftp-unix.c: Use HAVE_UNISTD_H.
4213
4214         * mtch.c (has_wildcards): Don't match \.
4215
4216         * http.c (http_loop): Warn on HTTP wildcard usage.
4217
4218 1996-11-08  Hrvoje Niksic  <hniksic@srce.hr>
4219
4220         * url.c (url_filename): Do not create numbered suffixes if
4221         opt.noclobber -- would bug out on -nc.
4222
4223 1996-11-07  Hrvoje Niksic  <hniksic@srce.hr>
4224
4225         * recur.c (parse_robots): Don't chuck out the commands without
4226         arguments (`Disallow:<empty>' didn't work).
4227         (parse_robots): Compare versions lowercase.
4228         (parse_robots): Match on base_version, not version_string!
4229         (parse_robots): Handle comments properly.
4230         (parse_robots): Match versions in a sane way.
4231
4232         * init.c: Print nicer error messages.
4233
4234         * version.c: Changed version to 1.4.0.
4235
4236 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
4237
4238         * version.c: Released 1.4.0-test2.
4239
4240         * init.c (run_wgetrc): Close fp.
4241
4242         * ftp.c (ftp_retrieve_dirs): Allocate the correct length for
4243         u->dir.
4244
4245 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
4246
4247         * init.c (setquota): Allow inf as quota specification.
4248
4249 1996-11-05  Hrvoje Niksic  <hniksic@srce.hr>
4250
4251         * ftp.c (ftp_retrieve_dirs): Return QUOTEXC if quota exceeded.
4252         (ftp_retrieve_glob): Return QUOTEXC on quota exceeded.
4253
4254         * main.c (main): Check for quota by comparison with downloaded
4255         stuff, not from status.
4256
4257         * connect.c (select_fd): Should compile on HPUX without warnings now.
4258
4259         * ftp.c (ftp_get_listing): Check whether ftp_loop_internal
4260         returned RETROK.
4261
4262 1996-11-04  Hrvoje Niksic  <hniksic@srce.hr>
4263
4264         * ftp.c (ftp_retrieve_glob): Print the pattern nicely.
4265         (getftp): Return FTPRETRINT on control connection error.
4266
4267         * html.c (htmlfindurl): Recognize <embed src=...> and
4268         <bgsound src=...>.
4269         (ftp_index): Handle username and password correctly.
4270
4271         * main.c (main): Made `-np' a synonim for --no-parent.
4272
4273 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
4274
4275         * ftp.c (ftp_loop): Check for opt.ftp_glob too before calling
4276         ftp_retrieve_glob.
4277
4278         * version.c: Changed version to 1.4.0-test2.
4279
4280 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
4281
4282         * version.c: Released 1.4.0-test1.
4283
4284         * url.c (str_url): Don't use sprintf when creating %2F-prefixed
4285         directory.
4286         (convert_links): Removed definition of make_backup.
4287
4288         * http.h: Removed definition of MAX_ERROR_LENGTH.
4289
4290         * host.c (ftp_getaddress): Check for "(none)" domains.
4291
4292         * ftp.c (ftp_retrieve_dirs): Docfix.
4293
4294         * http.c (gethttp): Use ou->referer instead of u->referer.
4295
4296         * retr.c (retrieve_url): Reset u to avoid freeing pointers twice;
4297         this was known to cause coredumps on Linux.
4298
4299         * html.c (ftp_index): Cast the argument to local_time to time_t *.
4300
4301 1996-11-01  Hrvoje Niksic  <hniksic@srce.hr>
4302
4303         * connect.c (select_fd): Use exceptfds -- once and for all.
4304
4305         * retr.c (retrieve_from_file): Free filename after
4306         recursive_retrieve.
4307         (retrieve_from_file): Send RFIRST_TIME to recursive_retrieve on
4308         first-time retrieval.
4309         (retrieve_from_file): Return uerr_t; new argument, count.
4310         (retrieve_from_file): Break on QUOTEXC.
4311
4312         * init.c (setquota): Fixed a bug that caused rejection of
4313         non-postfixed values..
4314
4315 1996-10-30  Hrvoje Niksic  <hniksic@srce.hr>
4316
4317         * version.c: Changed name to wget.
4318
4319         * connect.c (iread): Smarter use of select.
4320         (select_fd): Set errno on timeout.  If not timeout, return 1
4321         instead of 0.
4322
4323 1996-10-29  Hrvoje Niksic  <hniksic@srce.hr>
4324
4325         * ftp.c (ftp_loop_internal): Don't use con->cmd before
4326         establishing it.
4327
4328 1996-10-26  Hrvoje Niksic  <hniksic@srce.hr>
4329
4330         * http.c (gethttp): Send correct referer when using proxy.
4331         (gethttp): Use struct urlinfo ou to access the relevant data; send
4332         correct authorization in all cases.
4333
4334         * host.c (same_host): Use skip_uname to skip username and
4335         password.
4336
4337         * url.c (skip_uname): New function.
4338         (parseurl): Use it.
4339
4340         * host.c (same_host): Do not assume HTTP -- same_host should now
4341         be totally foolproof.
4342
4343         * url.c (skip_proto): New function.
4344         (parse_uname): Use it.
4345
4346         * http.c (gethttp): Create local user and passwd from what is
4347         given.
4348
4349         * url.c (parseurl): Check for HTTP username and password too.
4350
4351 1996-10-25  Hrvoje Niksic  <hniksic@srce.hr>
4352
4353         * config.h.in: Removed #define gethostbyname R...
4354
4355 1996-10-22  Hrvoje Niksic  <hniksic@srce.hr>
4356
4357         * version.c: Changed version to 1.4.0-test1.
4358
4359 1996-10-21  Hrvoje Niksic  <hniksic@srce.hr>
4360
4361         * version.c: "Released" 1.4b29.
4362
4363         * recur.c (recursive_retrieve): Check for no_parent.
4364
4365         * init.c (setval): Option update.
4366
4367         * main.c (main): New option no-parent.
4368
4369         * options.h (struct options): New variable no_parent.
4370
4371         * recur.c (recursive_retrieve): Only files are checked for
4372         opt.accepts and opt.rejects.
4373         (recursive_retrieve): Check directories for opt.excludes.
4374         (recursive_retrieve): Make the dir absolute when checking
4375         opt.excludes.
4376
4377         * html.c (htmlfindurl): Recognize <applet code=...> and <script
4378         src=...>
4379
4380 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
4381
4382         * ftp.c (getftp): Do not line-break assert entries at all.
4383         (ftp_retrieve_dirs): docfix.
4384
4385         * connect.c (select_fd): Use fd + 1 as nfds.
4386
4387         * version.c: Changed version to 1.4b29.
4388
4389 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
4390
4391         * version.c: "Released" 1.4b28.
4392
4393         * ftp.c (ftp_loop_internal): Check whether f->size == len and
4394         don't continue the loop if it is.
4395         (ftp_get_listing): Remove list_filename on unsuccesful loop.
4396
4397 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
4398
4399         * ftp.c (ftp_loop_internal): Use strcpy to initialize tmp.
4400         (getftp): Do not use multiline assert.
4401
4402         * http.c (hparsestatline): Use mjr and mnr instead of major and
4403         minor, which don't compile on Ultrix.
4404         (http_loop): Use strcpy() to initialize tmp.
4405
4406         * all: Geturl -> Fetch
4407
4408 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
4409
4410         * recur.c (parse_robots): Fixed an off-by-one bug when looking for
4411         ':'.
4412
4413         * html.c (htmlfindurl): Fixed several possible off-by-one bugs by
4414         moving `bufsize &&' to the beginning of each check in for-loops.
4415
4416         * recur.c (parse_robots): Close fp on exit.
4417
4418         * url.c (mymkdir): Check for each directory before creating.
4419
4420 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
4421
4422         * version.c: Changed version to 1.4b28.
4423
4424 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
4425
4426         * version.c: "Released" 1.4b27.
4427
4428         * init.c (parse_line): Use isspace.
4429         (parse_line): Free *com on all errors.
4430
4431         * ftp.c (ftp_loop): Change FTPOK to RETROK before exiting.
4432         (delelement): Use next instead of f->next and prev instead of
4433         f->prev.
4434         (delelement): Free the members of the deleted element.
4435
4436         * http.c (http_loop): Do not return RETROK on code != 20x.
4437
4438         * init.c (cleanup): Free opt.user_header.
4439         (cleanup): Free opt.domains.
4440
4441         * url.c (freelists): Moved to cleanup().
4442
4443         * http.c (hparsestatline): Docfix.
4444
4445         * main.c (main): Return with error status on unsuccesful
4446         retrieval.
4447
4448         * init.c (setval): Do not remove listing when mirroring.
4449
4450         * url.c (url_filename): Use opt.fileprefix.
4451
4452         * ftp.c (ftp_get_listing): Use url_filename to get filename for
4453         .listing.
4454
4455         * main.c (main): New option: -rn.
4456
4457 1996-10-15  Hrvoje Niksic  <hniksic@srce.hr>
4458
4459         * Makefile.in (RM): Added RM = rm -f.
4460
4461         * host.c (clean_hosts): New function.
4462         (free_hlist): Just free the list, no reset.
4463
4464         * version.c: Changed version to 1.4b27.
4465
4466 1996-10-13  Hrvoje Niksic  <hniksic@srce.hr>
4467
4468         * version.c: "Released" 1.4b26.
4469
4470         * retr.c (retrieve_from_file): If call get_urls_html with
4471         opt.spider to make it silent in spider mode.
4472
4473         * url.c (str_url): Use CLEANDUP instead of URL_CLEANSE.
4474
4475         * url.h (CLEANDUP): New macro.
4476
4477         * http.c (gethttp): Fixed a bug that freed location only when it
4478         was NULL.
4479
4480         * retr.c (retrieve_url): Free url if it will not be stored,
4481         i.e. newloc is NULL.
4482
4483         * html.c (htmlfindurl): Handle exiting from quotes correctly; the
4484         old version would bug out on <a href="x#a"href="y">.
4485
4486         * html.h (state_t): New member in_quote.
4487
4488         * html.c (htmlfindurl): Free s->attr at the beginning of
4489         attr-loop.
4490
4491         * recur.c (recursive_retrieve): Recognize RCLEANUP.
4492         (tried_robots): Make hosts a global variable.
4493         (recursive_retrieve): Free constr after URL host optimization.
4494         (tried_robots): Free urlinfo before exiting.
4495
4496         * utils.c (free_slist): New function.
4497
4498         * recur.c (recursive_retrieve): Use flags to add cleanup
4499         possibility.
4500
4501         * main.c (main): Free filename after recursive_retrieve.
4502
4503         * http.c (gethttp): Store successful responses too.
4504
4505 1996-10-12  Hrvoje Niksic  <hniksic@srce.hr>
4506
4507         * all: Constified the whole source.  This required some minor
4508         changes in many functions in url.c, possibly introducing bugs -- I
4509         hope not.
4510
4511         * ftp-basic.c: Removed last_respline.
4512
4513         * http.c (gethttp): Free type.
4514
4515         * host.c (same_host): Free real1 and real2.
4516
4517         * main.c (main): New option --spider.
4518
4519         * retr.c (get_contents): Don't reset errno.
4520
4521         * main.c (main): Sorted the options.
4522
4523         * connect.c (iread): Set errno to ETIMEDOUT only if it was left
4524         uninitialized by select().
4525
4526         * http.c (http_loop): Print the time when the connection is
4527         closed.
4528         (gethttp): Debug-print the HTTP request.
4529
4530 1996-10-11  Hrvoje Niksic  <hniksic@srce.hr>
4531
4532         * connect.c (iread): Do not try reading after timeout.
4533
4534         * main.c (main): Would bug out on -T.
4535
4536         * connect.c (select_fd): Do not use exceptfds.
4537         (iread): Set ETIMEDOUT on select_fd <= 0.
4538
4539         * version.c: Changed version to 1.4b26.
4540
4541 1996-10-10  Hrvoje Niksic  <hniksic@srce.hr>
4542
4543         * version.c: "Released" 1.4b25.
4544
4545         * ftp-unix.c (ftp_parse_unix_ls): Ignore lines without file name
4546         or link name.
4547
4548         * http.c (gethttp): Add errcode to struct hstat.
4549         (http_loop): Use it.
4550
4551         * url.c (no_proxy_match): Simplify using char** for no_proxy.
4552
4553         * options.h (struct options): Make opt.no_proxy a vector.
4554
4555         * utils.c (sepstring): Use !*s instead of !strlen(s).
4556
4557         * init.c (setval): Set opt.maxreclevel to 0 on --mirror.
4558         (getperms): Use ISODIGIT instead of isdigit.
4559
4560         * ftp.c (getftp): Print time.
4561
4562         * main.c (main): Use legible output of downloaded quantity.
4563
4564         * ftp.c (getftp): Use elapsed_time().
4565         (ftp_loop_internal): Use rate().
4566
4567         * http.c (http_loop): Add download ratio output; Use rate().
4568
4569         * utils.c (rate): New function.
4570
4571 1996-10-09  Hrvoje Niksic  <hniksic@srce.hr>
4572
4573         * http.c (http_loop): Use timer.
4574
4575         * ftp.c: Split to ftp-basic.c and ftp.c
4576
4577         * utils.c (reset_timer): New function.
4578         (elapsed_time): New function.
4579
4580         * retr.c (show_progress): Make bytes_in_line and offs long; should
4581         work on 16-bit machines.
4582
4583 1996-10-08  Hrvoje Niksic  <hniksic@srce.hr>
4584
4585         * url.c (in_acclist): New argument backward.
4586
4587         * ftp.c (ftp_retrieve_glob): Use acceptable() to determine whether
4588         a file should be retrieved according to suffix.
4589         (ftp_get_listing): Check the return value of unlink; Do not call
4590         ftp_retrieve_dirs if depth reached maxreclevel.
4591         (ftp_retrieve_dirs): Check whether the directory is in
4592         exclude-list.
4593
4594         * main.c (main): Print the version number at the beginning of
4595         DEBUG output.
4596         (main): Use strrchr when creating exec_name.
4597
4598         * ftp.c (ftp_retrieve_glob): Do not close control connection.
4599
4600         * version.c: Changed version to 1.4b25.
4601
4602 1996-10-07  Hrvoje Niksic  <hniksic@srce.hr>
4603
4604         * version.c: "Released" 1.4b24.
4605
4606         * Makefile.in: Rewrite.
4607
4608         * ftp.c (ftp_loop_internal): Likewise.
4609
4610         * retr.c (time_str): Check for failed time().
4611
4612         * html.c (htmlfindurl): Recognize <fig src> and <overlay src> from
4613         HTML3.0.
4614
4615         * retr.c (time_str): Return time_t *.
4616
4617         * connect.c (bindport): Close msock on unsuccesful bind.
4618         (bindport): The same for getsockname and listen.
4619
4620         * retr.c (retrieve_url): Allow any number of retries on
4621         proxy.
4622
4623         * http.c (gethttp): Do not treat errno == 0 as timeout.
4624         (http_loop): Likewise.
4625         (http_loop): Cosmetic changes.
4626
4627         * connect.c (iread): Set errno to ETIMEDOUT in case of timeout.
4628
4629         * retr.c (get_contents): Reset errno.
4630
4631         * ftp.c (getftp): Minor fixes.
4632
4633 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
4634
4635         * http.c: Do not use backups.
4636
4637         * geturl.1 (WARNING): Warn that man-page could be obsolete.
4638
4639         * getopt.c (getopt_long): Moved to getopt.c
4640
4641         * geturl.texi: Enhanced.
4642
4643         * main.c (main): Use it.
4644
4645         * recur.c (convert_all_links): New function.
4646
4647         * utils.c (add_slist): New argument flags.
4648
4649         * recur.c (recursive_retrieve): Update a list of downloaded URLs.
4650         (parse_robots): Do not chuck out empty value fields.
4651         (parse_robots): Make yourself welcome on empty Disallow.
4652
4653         * version.c: Changed version to 1.4b24.
4654
4655 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
4656
4657         * version.c: "Released" 1.4b23.
4658
4659         * ftp.c (ftp_loop_internal): Get the time after getftp.
4660
4661         * Makefile.in (install.info): New target.
4662         (install): Use it.
4663
4664         * http.c (http_loop): Fix output when doing -O.
4665
4666 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
4667
4668         * geturl.texi: New file.
4669
4670         * main.c (main): Do not print the warnings and download summary if
4671         opt.quiet is set.
4672
4673         * version.c: Changed version to 1.4b23.
4674
4675 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
4676
4677         * "Released" 1.4b22.
4678
4679         * atotm.c (atotm): Use True and False instead of TRUE and FALSE,
4680         to avoid redefinition warnings.
4681
4682         * host.c (store_hostaddress): Use memcpy() to copy the address
4683         returned by inet_addr.
4684
4685         * version.c: Changed version to 1.4b22.
4686
4687 1996-10-04  Hrvoje Niksic  <hniksic@srce.hr>
4688
4689         * version.c: "Released" 1.4b21.
4690
4691         * ftp-unix.c (ftp_parse_ls): Renamed to ftp_parse_unix_ls.
4692
4693         * ftp.c (ftp_port): Use conaddr.
4694         (getftp): Print the file length.
4695         (ftp_retrieve_list): Check the stamps of plain files only.
4696
4697         * connect.c (closeport): Do not call shutdown().
4698         (conaddr): New function.
4699
4700         * html.c (ftp_index): Made it dfp-aware.
4701
4702         * init.c (cleanup): New name of freemem. Close opt.dfp.
4703
4704         * ftp.c (getftp): Use opt.dfp if it is set.
4705
4706         * ftp-unix.c (ftp_parse_ls): Recognize time in h:mm format.
4707
4708         * ftp.c (ftp_retrieve_dirs): Fixed a bug that caused incorrect
4709         CWDs to be sent with recursive FTP retrievals.
4710
4711 1996-10-03  Hrvoje Niksic  <hniksic@srce.hr>
4712
4713         * recur.c (parse_robots): Made it more compliant with "official"
4714         specifications.
4715
4716         * http.c: New function.
4717
4718         * ftp-unix.c (ftp_parse_ls): Added better debug output.
4719
4720         * ftp.c (getftp): Print out the LIST in case of
4721         opt.print_server_response.
4722
4723         * version.c: Changed version to 1.4b21.
4724
4725 1996-10-01  Hrvoje Niksic  <hniksic@srce.hr>
4726
4727         * version.c: "Released" 1.4b20.
4728
4729         * README: Update.
4730
4731         * http.c (gethttp): Preset lengths of various headers instead of
4732         calculating them dynamically.
4733         (gethttp): Check for 206 partial contents.
4734
4735 1996-09-30  Hrvoje Niksic  <hniksic@srce.hr>
4736
4737         * configure.in: Set SYSTEM_GETURLRC to $libdir/geturlrc
4738
4739         * http.c (gethttp): Send the port number in the Host: header.
4740
4741 1996-09-29  Hrvoje Niksic  <hniksic@srce.hr>
4742
4743         * http.c (gethttp): Send host: header.
4744         (gethttp): Add the possibility of user-defined headers.
4745         (gethttp): Move decision about pragma: no-cache to http_loop,
4746         where it belongs.
4747         (gethttp): Pass a struct instead of enormous argument list.
4748         (http_loop): Use a new, fancier display format.
4749         (ftp_loop): Likewise.
4750
4751         * main.c: (hangup): Turn off buffering of the new log file.
4752
4753         * install-sh: Likewise.
4754
4755         * config.sub: Replace with the one in autoconf-2.10
4756
4757         * geturl.1: Update.
4758
4759         * init.c: New options httpuser and httppasswd.
4760
4761         * http.c: (base64_encode_line): New function.
4762         (gethttp): Send authentication.
4763
4764         * connect.c (make_connection): Use store_hostaddress.
4765
4766 1996-09-28  Hrvoje Niksic  <hniksic@srce.hr>
4767
4768         * host.c (store_hostaddress): New function.
4769
4770         * NEWS: Update.
4771
4772         * http.c (hgetrange): New function.
4773         (gethttp): Use ranges.
4774
4775         * utils.c (numdigit): Accept long instead of int.
4776
4777         * http.c (http_loop): Add restart capabilities.
4778
4779         * ftp.c (ftp_retrieve_glob): Fixed a bug that could cause matchres
4780         being used uninitialized.
4781         (ftp_retrieve_list): Similar fix.
4782
4783         * host.c (add_hlist): Fixed a bug that could cause cmp being used
4784         uninitialized.
4785
4786         * url.c (construct_relative): New function.
4787
4788         * recur.c (recursive_retrieve): Use it.
4789
4790         * retr.c (convert_links): New function.
4791
4792 1996-09-27  Hrvoje Niksic  <hniksic@srce.hr>
4793
4794         * url.c (free_urlpos): New function.
4795
4796         * recur.c (recursive_retrieve): Adapt.
4797
4798         * url.c (get_urls_html): Return a linked list instead of a vector.
4799
4800         * url.c (get_urls_file): Return a linked list instead of a vector.
4801
4802         * geturl.1: Update.
4803
4804         * http.c (gethttp): Implement it.
4805
4806         * init.c (setval): New option: SAVEHEADERS
4807
4808         * ftp.c (ftp_loop_internal): Do not set restval if listing is to
4809         be retrieved. Lack of this test caused bugs when the connection
4810         was lost during listing.
4811
4812         * retr.c (retrieve_url): Fixed a bug that caused
4813         coredumps. *newloc is now reset by default.
4814         (retrieve_url): Lift the twenty-tries limit on proxies.
4815
4816         * version.c: Changed version to 1.4b20.
4817
4818 1996-09-20  Hrvoje Niksic  <hniksic@srce.hr>
4819
4820         * version.c: "Released" 1.4b19.
4821
4822 1996-09-19  Hrvoje Niksic  <hniksic@srce.hr>
4823
4824         * ftp.c (ftp_loop_internal): Renamed from ftp_1fl_loop.
4825         (getftp): Changed prototype to accept ccon *.
4826
4827 1996-09-17  Hrvoje Niksic  <hniksic@srce.hr>
4828
4829         * ftp.c (ftp_retrieve_list): Fixed a bug that caused setting
4830         incorrect values to files pointed to by symbolic links.
4831         (ftp_1fl_loop): Do not count listings among the downloaded URL-s.
4832
4833 1996-09-16  Hrvoje Niksic  <hniksic@srce.hr>
4834
4835         * url.c (mkstruct): Do not prepend "./" in front of a pathname.
4836
4837         * main.c (main): New option: --user-agent.
4838
4839         * geturl.1: Ditto.
4840
4841         * init.h: Ditto.
4842
4843         * init.c (setval): Ditto.
4844
4845         * main.c (main): Rename "server-headers" to "server-response".
4846
4847         * ftp-unix.c (ftp_parse_ls): Check for asterisks at the end of
4848         executables in 'ls -F' listings.
4849
4850 1996-09-15  Hrvoje Niksic  <hniksic@srce.hr>
4851
4852         * url.c (parseurl): Remove realloc() and sprintf().
4853         (str_url): Get rid of sprintf().
4854
4855         * recur.c (recursive_retrieve): Enable FTP recursion through proxy
4856         servers.
4857
4858         * url.h (URL_CLEANSE): Made it else-resistant.
4859         (USE_PROXY): New macro.
4860
4861 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
4862
4863         * NEWS: Update.
4864
4865         * version.c: Changed version to 1.4b19.
4866
4867 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
4868
4869         * version.c: "Released" 1.4b18.
4870
4871         * url.c: Made it reallocate space exponentially.
4872
4873 1996-09-14  Drazen Kacar  <dave@fly.cc.fer.hr>
4874
4875         * html.c (htmlfindurl): Added <frame src> and <iframe src> among
4876         the list of stuff to fetch.
4877
4878 1996-09-13  Hrvoje Niksic  <hniksic@srce.hr>
4879
4880         * url.c (get_urls_html): Fixed a bug that caused SIGSEGV's with
4881         -Fi.
4882
4883         * html.c (htmlfindurl): Rewrite.
4884
4885         * http.c (gethttp): Use opt.proxy_cache.
4886
4887         * main.c (main): Added --cache option.
4888
4889         * ftp.c (ftp_response): Print server response if opt.print_server
4890         response is set.
4891         (getftp): Print newlines after each request if the server response
4892         is to be printed.
4893         (ftp_response): Copy the last response line to last_respline.
4894
4895         * http.c (gethttp): Add Pragma: nocache for retried
4896         proxy-retrievals.
4897
4898         * ftp.c (getftp): Use it.
4899
4900         * retr.c (buf_discard): New function.
4901
4902         * ftp.c (ftp_response): Use buf_readchar().
4903         (getftp): Flush the control connection buffer before calling
4904         get_contents().
4905
4906         * retr.c (buf_readchar): New function.
4907         (buf_flush): New function.
4908         (get_contents): Use buf_readchar() instead of read(x, x, 1).
4909         (get_contents): Use buf_flush.
4910
4911 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
4912
4913         * ftp.c: Incorporate changes to ftp_response.
4914
4915         * ftp.c (ftp_response): Allocate the server response dynamically,
4916         as in read_whole_line and fetch_next_header.
4917
4918         * utils.c (read_whole_line): Fixed a bug that prevented reading
4919         the last line if it is not \n-terminated. Also fixed a possible
4920         memory overflow.
4921
4922         * http.c (fetch_next_header): Return malloc-ed string as large as
4923         needed.
4924         (gethttp): Use new fetch_next_header.
4925
4926 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
4927
4928         * http.c (hgetlen): Compute the header length the first time only.
4929         (hgettype): Ditto.
4930         (hgetlocation): Ditto.
4931         (hgetmodified): Ditto.
4932
4933 1996-09-11  Hrvoje Niksic  <hniksic@srce.hr>
4934
4935         * sample.geturlrc: Update.
4936
4937 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
4938
4939         * http.c (http_loop): Ditto.
4940
4941         * ftp.c (getftp): Open the output file as binary.
4942
4943         * version.c: Changed version to 1.4b18.
4944
4945 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
4946
4947         * version.c: "Released" 1.4b17.
4948
4949         * ftp-unix.c (ftp_parse_ls): If unable to open file, return NULL
4950         instead of failed assertion.
4951
4952 1996-09-09  Hrvoje Niksic  <hniksic@srce.hr>
4953
4954         * ftp.c (ftp_get_listing): Add a numbered suffix to LIST_FILENAME
4955         if a file of that name already exists.
4956
4957 1996-09-05  Hrvoje Niksic  <hniksic@srce.hr>
4958
4959         * ftp.c (ftp_1fl_loop): Handler FTPPORTERR and FOPENERR correctly.
4960
4961         * config.h.in: Define gethostbyname as Rgethostbyname when using
4962         Socks.
4963
4964         * configure.in: Check for -lresolv if using Socks.
4965
4966         * version.c: Changed version to 1.4b17.
4967
4968 1996-07-15  Hrvoje Niksic  <hniksic@srce.hr>
4969
4970         * version.c: "Released" 1.4b16.
4971
4972         * http.c (gethttp): More intelligent check for first line of HTTP
4973         response.
4974         (gethttp): Would bug out on time-stamping.
4975
4976         * version.c: Changed version to 1.4b16.
4977
4978 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
4979
4980         * version.c: Released 1.4b15.
4981
4982         * http.c (http_loop): Print \n after the loop entry, not before.
4983
4984         * url.c (url_filename): Use ISDOT.
4985
4986         * url.h (ISDOT): New macro.
4987
4988         * recur.c (recursive_retrieve): Change only opt.recursive for
4989         following FTP.
4990
4991 1996-07-11  Antonio Rosella <antonio.rosella@agip.it>
4992
4993         * socks/geturl.cgi: Fixed version No.
4994
4995         * socks/download-netscape.html: Ditto.
4996
4997         * socks/download.html: Changed socks.html to download.html.
4998
4999 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
5000
5001         * url.c (url_filename): Check for opt.dirstruct instead for
5002         opt.recursive && opt.dirstruct.
5003
5004         * init.c (defaults): Ditto.
5005         (defaults): Reset dirstruct by default.
5006         (setval): Set opt.dirstruct whenever setting recursive.
5007
5008         * init.h: Removed FORCEDIRHIER.
5009
5010         * INSTALL: Added -L to socks-description.
5011
5012         * version.c: Changed version to 1.4b15.
5013
5014 1996-07-10  Hrvoje Niksic  <hniksic@srce.hr>
5015
5016         * version.c: "Released" 1.4b14.
5017
5018         * geturl.1: Update AUTHOR to include Rosella as contributor.
5019
5020         * NEWS: Update.
5021
5022         * socks/geturl.cgi: Simplified command creation, nuked <blink>.
5023
5024         * socks/geturl.cgi: Wrap nutscape extensions within if $netscape.
5025         (cal_time): Fix == to eq.
5026
5027         * socks/geturl.cgi: GPL-ized with permission of A. Rosella.
5028
5029         * geturl.1 (hostname): Moved URL CONVENTIONS to the beginning.
5030
5031         * Makefile.in: Use @VERSION@.
5032
5033         * configure.in: Check version from version.c.
5034
5035         * socks/geturl.cgi: Changed /pub/bin/perl to /usr/bin/perl.
5036
5037         * socks/download.html: Created from download-netscape.html, made
5038         HTML-2.0 compliant.
5039
5040         * recur.c (recursive_retrieve): Set opt.force_dir_hier when
5041         following FTP links from recursions.
5042
5043 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
5044
5045         * url.c (mymkdir): Fixed a bug that prevented mymkdir() to create
5046         absolute directories correctly.
5047
5048         * version.c: Changed version to 1.4b14.
5049
5050 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
5051
5052         * version.c: "Released" 1.4b13.
5053
5054         * url.c (make_backup): New function.
5055
5056         * http.c (http_loop): Make a backup copy of the local file (using
5057         rename(2)) before opening it.
5058
5059         * main.c (main): Added --backups.
5060
5061         * host.c (ftp_getaddress): Bail out on failed mycuserid().
5062         (ftp_getaddress): Check for leading dot on MY_DOMAIN.
5063         (ftp_getaddress): Check for empty, null or (null) domain.
5064
5065         * url.c (get_urls_html): If this_url is NULL, the base must have a
5066         protocol.
5067         (parseurl): Use has_proto.
5068
5069         * retr.c (retrieve_url): Warn when proxy is used with more than 20
5070         retries.
5071
5072         * url.c (mkstruct): Create the directory (calling mymkdir()) only
5073         if it is not already there.
5074         (has_proto): New function.
5075         (get_urls_html): Eliminate the remaining call to findurl -- use
5076         has_proto.
5077
5078         * geturl.1: Ditto.
5079
5080         * main.c: Change -X to -x.
5081
5082         * url.c (url_filename): Simplify creation of filename if
5083         prefix_files is set.
5084         (url_filename): Simplify everything. And I do mean *everything*.
5085         (mkstruct): Add dir_prefix before hostname.
5086         (path_simplify): Fixed a bug that caused writing outside the path
5087         string in case of "." and ".." path strings.
5088
5089 1996-07-06  Hrvoje Niksic  <hniksic@srce.hr>
5090
5091         * init.c: Added --mirror.
5092
5093         * main.c (main): Added -X to force saving of directory hierarchy.
5094
5095         * ftp.c (ftp_retrieve_list): Added recursion depth counter.
5096         (ftp_retrieve_list): Check whether quota is exceeded.
5097
5098         * url.c (get_urls_html): Skip leading blanks for absolute URIs.
5099
5100         * http.c (gethttp): Use referer if present.
5101
5102         * recur.c (recursive_retrieve): Set u->referer before calling
5103         retrieve_url.
5104
5105         * url.c (newurl): Use memset to nullify the struct members.
5106         (freeurl): Free the referer field too.
5107
5108         * url.h: Added referer to urlinfo.
5109
5110         * geturl.1: Updated the manual to document some of the new features.
5111
5112         * utils.c (numdigit): Moved from url.c.
5113
5114         * README: Rewritten.
5115
5116         * config.h.in: Add the support for socks.
5117
5118         * configure.in: Add the support for socks.
5119
5120         * url.c (url_filename): If the dir_prefix is ".", work with just
5121         the file name.
5122         (url_filename): Do not look for .n extensions if timestamping if
5123         turned on.
5124
5125         * retr.c (show_progress): Skip the over-abundant restval data, and
5126         print the rest of it with ',' instead of '.'.
5127
5128 1996-07-05  Hrvoje Niksic  <hniksic@srce.hr>
5129
5130         * retr.c (show_progress): Changed second arg. to long (as it
5131         should be).
5132         (show_progress): Moved to retr.c.
5133         (get_contents): Moved to retr.c.
5134
5135         * version.c: Change version to 1.4b13.
5136
5137 1996-07-05  Hrvoje Lacko <hlacko@fly.cc.fer.hr>
5138
5139         * url.c (in_acclist): Would return after the first suffix.
5140
5141 1996-07-04  Hrvoje Niksic  <hniksic@srce.hr>
5142
5143         * version.c: "Released" 1.4b12.
5144
5145         * url.c (path_simplify): More kludgifications.
5146         (get_urls_html): Use new parameters for htmlfindurl.
5147
5148         * html.c: Removed memorizing "parser states", since the new
5149         organization does not require them.
5150
5151         * init.c (run_geturlrc): Use read_whole_line.
5152
5153         * ftp-unix.c (ftp_parse_ls): Use read_whole_line.
5154
5155         * recur.c (parse_robots): Use read_whole_line.
5156
5157         * utils.c (read_whole_line): New function.
5158
5159         * recur.c (tried_robots): Use add_slist/in_slist, *much* cleaner.
5160
5161         * host.c (ngethostbyname): Call inet_addr just once. Yet to be
5162         tested on OSF and Ultrix.
5163         (add_hlist): New function.
5164         (free_hlist): New function.
5165         (search_host): New function.
5166         (search_address): New function.
5167         (realhost): Use search_host, search_address and add_hlist.
5168         (same_host): Replaced realloc() with strdupdelim(), made
5169         case-insensitive, fixed a memory leak.
5170
5171         * html.c (ftp_index): Fixed tm_min and tm_sec to be tm_hour and
5172         tm_min, like intended.
5173
5174         * version.c: Change user agent information to
5175         Geturl/version.
5176
5177 1996-07-03  Hrvoje Niksic  <hniksic@srce.hr>
5178
5179         * utils.c: Renamed nmalloc.c to utils.c, .h likewise.
5180
5181         * url.c (acceptable): Always accept directories.
5182
5183         * ftp-unix.c (ftp_parse_ls): Support brain-damaged "ls -F"-loving
5184         servers by stripping trailing @ from symlinks and trailing / from
5185         directories.
5186
5187         * ftp.c (ftp_loop): Debugged the "enhanced" heuristics. :-)
5188
5189         * url.c (skip_url): Use toupper instead of UCASE.
5190
5191         * host.c (sufmatch): Made it case-insensitive.
5192
5193         * url.c (match_backwards_or_pattern): Fixed i == -1 to j == -1.
5194         (match_backwards): New function, instead of
5195         match_backwards_or_pattern.
5196
5197         * recur.c (recursive_retrieve): Increased performance by
5198         introducing inl, which reduces number of calls to in_slist to only
5199         one.
5200
5201         * ftp.c (ftp_loop): Enhanced the heuristics that decides which
5202         routine to use.
5203
5204         * main.c (printhelp): Removed the warranty stuff.
5205
5206 1996-07-02  Hrvoje Niksic  <hniksic@srce.hr>
5207
5208         * url.c (add_slist): Simplify.
5209         (match_backwards_or_pattern): New function.
5210         (in_acclist): Use match_backwards_or_pattern.
5211         (matches): Remove.
5212
5213 1996-06-30  Hrvoje Niksic  <hniksic@srce.hr>
5214
5215         * ftp.c (ftp_loop): Call ftp_index on empty file names, if not
5216         recursive.
5217
5218         * html.c (ftp_index): Fixed to work. Beautified the output.
5219
5220         * ftp.c (ftp_retrieve_glob): Another argument to control whether
5221         globbing is to be used.
5222         (ftp_retrieve_list): Compare the time-stamps of local and remote
5223         files to determine whether to download.
5224
5225 1996-06-29  Hrvoje Niksic  <hniksic@srce.hr>
5226
5227         * ftp.c (rel_constr): New function.
5228
5229         * retr.c (retrieve_from_file): Check for text/html before
5230         retrieving recursively.
5231
5232         * main.c (main): Check whether the file is HTML before going into
5233         recursive HTML retrieving.
5234
5235         * ftp.c (ftp_retrieve_list): Manage directories.
5236         (ftp_retrieve_glob): Pass all the file-types to ftp_retrieve_list.
5237         (ftp_1fl_loop): Fixed a bug that caused con->com to be incorrectly
5238         initialized, causing bugchecks in getftp to fail.
5239
5240         * configure.in: Check for symlink.
5241
5242         * ftp.c (ftp_retrieve_list): Added support for symlinks.
5243
5244         * version.c: "Released" 1.4b10.
5245
5246         * atotm.c (atotm): Redeclared as time_t.
5247
5248         * init.c: New variable "timestamping".
5249
5250         * main.c (main): New option 'N'.
5251
5252         * http.c (hgetlocation): Case-insensitive match.
5253         (hgetmodified): New function.
5254         (http_loop): Implement time-stamping.
5255
5256 1996-06-28  Hrvoje Niksic  <hniksic@srce.hr>
5257
5258         * version.c: Changed version to 1.4b10
5259
5260         * atotm.c: New file, from phttpd.
5261
5262         * options.h (struct options): New parameter timestamping.
5263
5264         * version.c: 1.4b9 "released".
5265
5266         * recur.c (recursive_retrieve): Used linked list (ulist) for
5267         faster storing of URLs.
5268
5269         * url.c (get_urls_html): Removed the old kludge with comparing the
5270         outputs of htmlfindurl and findurl.
5271         (get_urls_html): Added better protocol support here.
5272         (create_hash): Removed, as well as add_hash and in_hash.
5273         (addslist): New function.
5274         (in_slist): ditto
5275
5276         * version.c: Released 1.4b8, changed version to b9.
5277
5278 1996-06-27  Hrvoje Niksic  <hniksic@srce.hr>
5279
5280         * ftp.c (freefileinfo): New function.
5281         (delelement): New function.
5282
5283         * everywhere: GPL!
5284
5285         * ftp.c (ftp_loop): Use ccon.
5286         (ftp_retrieve_glob): Likewise.
5287
5288         * ftp.h: Define ccon, to define status of control connection.
5289
5290         * ftp.c (ftp_get_listing): New function.
5291         (ftp_retrieve_more): New function.
5292         (ftp_retrieve_glob): New function.
5293
5294 1996-06-25  Hrvoje Niksic  <hniksic@srce.hr>
5295
5296         * configure.in: Removed the search for cuserid().
5297
5298         * init.c (getmode): Renamed to getperms.
5299
5300 1996-06-24  Hrvoje Niksic  <hniksic@srce.hr>
5301
5302         * version.c: New version.
5303
5304         * main.c (hangup): New function, that handles hangup. Hangup
5305         signal now causes geturl to stop writing on stdout, and to write
5306         to a log file.
5307
5308         * ftp.c (getftp): "Released" 1.4b7.
5309
5310         * html.c (htmlfindurl): Ignore everything inside <head>...</head>.
5311         (ftp_index): Use fileinfo/urlinfo.
5312
5313         * ftp-unix.c (ftp_parse_ls): New function.
5314         (symperms): New function.
5315
5316         * ftp.c (ftp_1fl_loop): New function, to handle 1-file loops.
5317
5318         * retr.c (retrieve_url): Added FTP support.
5319
5320 1996-06-23  Hrvoje Niksic  <hniksic@srce.hr>
5321
5322         * geturl.h: Removed NOTFTP2HTML enum.
5323         Added DO_LOGIN, DO_CWD and DO_LIST. LIST_ONLY is obsolete.
5324
5325         * ftp.c (getftp): Resynched with urlinfo.
5326         (getftp): Removed HMTL-ization of index.html from getftp.
5327
5328         * version.c: 1.4b6 "released".
5329
5330         * options.h (options): New struct, to keep options in.
5331
5332         * http.c (http_loop,gethttp): Synched with proxy.
5333
5334         * retr.c (retrieve_url): Implemented proxy retrieval.
5335
5336         * main.c (main): Use retrieve_from_file.
5337
5338 1996-06-22  Hrvoje Niksic  <hniksic@srce.hr>
5339
5340         * retr.c (retrieve_from_file): New function.
5341
5342         * url.c (parseurl): Modified to return URLOK if all OK. Protocol
5343         can be found in u->proto.
5344
5345         * ftp.c (ftp_response): Fixed to accept multi-line responses as
5346         per RFC 959.
5347
5348         * recr.c (recursive_retrieve): Take newloc from retrieve_url.
5349
5350         * url.c (mymkdir): Removed the file of the same name, if one
5351         exists.
5352         (isfile): New function.
5353         (mkstruct): Fixed the '/' glitches.
5354         (path_simplify): Hacked to treat something/.. correctly.
5355
5356 1996-06-21  Hrvoje Niksic  <hniksic@srce.hr>
5357
5358         * http.c (gethttp): Close the socket after error in headers.
5359         (http_loop): HEOF no longer a fatal header.
5360
5361         * loop.c (retrieve_url): When dt is NULL, do not modify it. This
5362         simplifies the syntax of calling retrieve_url.
5363
5364         * recr.c (recursive_retrieve): Modified to use get_urls_html.
5365
5366         * url.c (get_urls_file): New function.
5367         (get_urls_html): New function.
5368
5369         * recr.c (recursive_retrieve): Patched up to conform to the
5370         standards.
5371
5372         * http.c (gethttp): Synched with the rest...
5373         (gethttp): Treat only CONREFUSED specially, with connection
5374         errors.
5375
5376         * init.c,geturl.1,http.c (http_loop): Removed kill_error.
5377
5378 1996-06-20  Hrvoje Niksic  <hniksic@srce.hr>
5379
5380         * http.c (http_loop): New function.
5381
5382         * loop.c: Removed *lots* of stuff from retrieve_url.
5383
5384         * url.c (parseurl): Changed to work with urlinfo. Integrated
5385         username finding and path parsing.
5386         (newurl): New function.
5387         (freeurl): New function.
5388         (mkstruct): Removed the old bogosities, made it urlinfo-compliant.
5389         (url_filename): Likewise.
5390         (path_simplify): Accept relative paths too.
5391         (opt_url): Made urlinfo-compliant, removed bogosities.
5392         (path_simplify): Expanded to accept relative paths.
5393         (str_url): A replacement for hide_url
5394         (decode_string): Fixed a bug that caused malfunctioning when
5395         encountering an illegal %.. combination.
5396         (opt_url): Removed the argument. Dot-optimizations are now default.
5397
5398         * nmalloc.c (strdupdelim): New function.
5399
5400         * url.h: Added the urlinfo structure
5401
5402 1996-06-19  Hrvoje Niksic  <hniksic@srce.hr>
5403
5404         * url.c (hide_url): Thrown out the protocol assertion. Do not
5405         change the URL if the protocol if not recognized.
5406         (findurl): Put continue instead of break.
5407
5408 1996-06-18  Hrvoje Niksic  <hniksic@srce.hr>
5409
5410         * sample.geturlrc: Changed the defaults to be commented out and
5411         harmless (previous defaults caused pains if copied to
5412         ~/.geturlrc).
5413
5414         * http.c (gethttp): Print the HTTP request in debug mode.
5415
5416         * connect.c (iread): Added EINTR check loop to select-ing
5417         too. EINTR is now correctly handled with select().
5418
5419         * TODO: new file
5420
5421 1996-05-07  Hrvoje Niksic  <hniksic@srce.hr>
5422
5423         * host.c (same_host): Made the function a little bit more
5424         intelligent regarding diversified URL syntaxes.
5425
5426         * url.c (skip_url): Spaces are now skipped after URL:
5427
5428         * Released 1.3.1 with the patch to prevent crashing when sending
5429         NULL to robot* functions and the patch to compile "out of the box"
5430         on AIX.
5431
5432         * recr.c (recursive_retrieve): Added checking whether this_url is
5433         NULL when calling the robot functions.
5434
5435         * ChangeLog: New file.