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