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