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