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