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