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