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