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