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