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