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