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