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