]> sjero.net Git - wget/blob - src/ChangeLog
1584017096894fc4c7af52052aa5a376040543af
[wget] / src / ChangeLog
1 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
2
3         * ftp.c (ftp_retrieve_list): Ditto.
4
5         * http.c (http_loop): Touch output_document if that is used for
6         output.
7
8 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
9
10         * http.c: Include gen_sslfunc.h after including Wget's headers.
11         (persistent_available_p): Needed coma before `int ssl'.
12
13 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
14
15         * ftp.c (ftp_loop_internal): Ditto.
16
17         * http.c (http_loop): Use it.
18
19         * retr.c (sleep_between_retrievals): New function that handles the
20         logic of opt.wait and opt.waitretry.
21
22 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
23
24         * rbuf.h: Implement only a single version of RBUF_READCHAR, using
25         rbuf_read_bufferful when the buffer is depleted.
26
27         * rbuf.c (rbuf_read_bufferful): New function.
28
29 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
30
31         * gen_sslfunc.h: Use ansi2knr style function declarations.
32
33         * gen_sslfunc.c: Reformat according to the GNU coding standards.
34         More should be done.
35
36         * http.c (persistent_available_p): Place the cheap SSL test nearer
37         the top of the function.
38         (CLOSE_FINISH, CLOSE_INVALIDATE): Define only one version of each.
39
40 2000-12-03  Christian Fraenkel <christian.fraenkel@gmx.net>
41
42         * Makefile.in: added gen_sslfunc object
43         * config.h.in: added HAVE_SSL define
44         * connect.c: changed select_fd from static int to int
45         * connect.h: ditto
46         * gen_sslfunc.h: New file
47         * gen_sslfunc.c: ditto
48         * http.c: added HTTPS fuctionality
49         * retrc.c: ditto
50         * url.c: ditto
51         * init.c: added opt.httpsproxy
52         * options.h: ditto
53         * rbuf.h: added alternate rbuf struct
54         * wget.h: added CONSSLERR
55         * rbuf.c: ditto
56
57 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
58
59         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
60         "ignore_perms" to ignore file and directory permissions for
61         Windows NT FTP server listings.
62         (ftp_parse_winnt_ls): New function.
63         (ftp_parse_ls): Parses UNIX and Windows NT listings
64         separately. Simple heuristics for distinguishing between UNIX
65         and MS-DOS-like FTP listing provided by Windows NT FTP service.
66
67 2000-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
68
69         * url.c (init_unsafe_char_table): Reinstate space as an unsafe
70         char.
71
72 2000-11-29  John Summerfield  <summer@OS2.ami.com.au>
73
74         * netrc.c (parse_netrc): Get rid of line ending.
75
76 2000-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
77
78         * ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by
79         Dan.
80
81 2000-11-24  Karl Eichwalder  <ke@suse.de>
82
83         * main.c (print_help): Untabify.
84
85 2000-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
86
87         * utils.c (xrealloc_debug): Do the unregister/register thing only
88         if the pointer has actually changed.
89         (xmalloc_real): Declare `static' in DEBUG_MALLOC builds.
90         (xfree_real): Ditto.
91         (xrealloc_real): Ditto.
92         (xstrdup_real): Ditto.
93
94 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
95
96         * ftp.c (getftp): ftp_getaddress() returns a malloc'ed copy of the
97         string; no need to strdup() it.
98         (getftp): Make pwd_len a local variable.
99         (ftp_loop): Free PWD before returning.
100
101         * init.c (cleanup): Free opt.ftp_pass only if it's non-NULL.
102
103 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
104
105         * all: Use xfree() instead of free.
106
107         * utils.c (xfree): New function.
108
109 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
110
111         * url.c (convert_links): HTML-quote the converted string.
112
113         * utils.c (html_quote_string): Move here from ftp-ls.c
114         (html_quote_string): Make non-static; declare in utils.h.
115         (html_quote_string): Convert SP to &#32;.
116
117 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
118
119         * ftp.c (getftp): Reformat Jan's code according to GNU coding
120         standards; remove (debugging?) printf's; use '\0' for the ASCII
121         zero character.  Use alloca() instead of malloc() for
122         inter-function temporary allocations.
123
124 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
125
126         * ftpparse.c, ftpparse.h: New files.
127
128         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
129         only. Use ftp_parse_nonunix_ls otherwise.
130         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
131         exotic FTP servers.
132
133         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
134         FTP servers.
135
136         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
137         (getftp): Support for VMS. Support for FTP servers that do not
138         place you in the root directory after login.
139         (ftp_retrieve_list): VMS is silent about the real file size, issue
140         a more appropriate message.
141         (ftp_get_listing): Pass host_type to ftp_parse_ls.
142
143         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
144
145 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
146
147         * hash.c (hash_table_put): Don't overwrite deleted mappings.
148
149 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
150
151         * hash.c (find_mapping): New function.
152         (hash_table_get): Use it.
153         (hash_table_get_pair): Ditto.
154         (hash_table_exists): Ditto.
155         (hash_table_remove): Ditto.
156         (hash_table_remove): Really delete the entry if the mapping
157         following LOCATION is empty.
158
159         * utils.c (string_set_add): Check whether the element has existed
160         before.
161
162         * hash.c (hash_table_get_pair): New function.
163
164 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
165
166         * http.c (http_process_type): Ignore trailing whitespace; use
167         strdupdelim().
168
169         * recur.c (recursive_retrieve): Use the new `convert' field.
170         (convert_all_links): Ditto.
171         (convert_all_links): Don't respect meta_disallow_follow.
172
173         * html-url.c (handle_link): Fill out link_relative_p and
174         link_complete_p.
175
176         * url.h (struct _urlpos): Make elements more readable.
177
178         * recur.c (recursive_retrieve): Call slist_prepend instead of
179         slist_append.
180         (convert_all_links): Call slist_nreverse before iterating through
181         urls_html.
182
183         * utils.c (slist_prepend): New function.
184         (slist_nreverse): Ditto.
185
186 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
187
188         * http.c (check_end): Constify.
189
190 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
191
192         * http.c (http_loop): If username and password are known, try the
193         `Basic' authentication scheme by default.
194
195         * connect.h: Declare test_socket_open.
196
197 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
198
199         * version.c: Bump version to 1.7-dev.
200
201 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
202
203         * http.c (gethttp): Don't use the return value of sprintf().
204         (gethttp): Inhibit keep-alive if opt.http_keep_alive is 0.
205
206 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
207
208         * recur.c (recursive_retrieve): Print the "so we don't load"
209         debugging message only if we really don't load.
210
211         * http.c (gethttp): Inhibit keep-alive if proxy is being used.
212         (gethttp): Don't request keep-alive if keep-alive is inhibited.
213
214 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
215
216         * http.c (gethttp): Make the HTTP persistent connections more
217         robust.
218
219 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
220
221         * retr.c (get_contents): If use_expected, make sure that the
222         appropriate amount of data is being read.
223
224         * http.c (gethttp): Check for both `Keep-Alive: ...' and
225         `Connection: Keep-Alive'.
226
227         * wget.h (DEBUGP): Call debug_logprintf only if opt.debug is
228         turned on.
229
230 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
231
232         * http.c (connection_available_p): Use it.
233
234         * connect.c (test_socket_open): New function.
235
236         * http.c (gethttp): Support persistent connections.  Based on the
237         ideas, and partly on code, by Sam Horrocks <sam@daemoninc.com>.
238         (register_persistent): New function.
239         (connection_available_p): Ditto.
240         (invalidate_connection): Ditto.
241
242 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
243
244         * url.c (convert_links): Handle UREL2ABS case.
245
246         * recur.c (recursive_retrieve): Instead of the list
247         urls_downloaded, use hash tables dl_file_url_map and
248         dl_url_file_map.
249         (convert_all_links): Use them to retrieve data.
250
251         * host.c (clean_hosts): Free the hash tables.
252
253         * main.c (private_initialize): Call host_init().
254
255         * host.c (store_hostaddress): Use a saner, hash table-based data
256         model.
257         (realhost): Ditto.
258         (host_init): Initialize the hash tables.
259
260 2000-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
261
262         * utils.c (slist_append): Eviscerate NOSORT.  Hash tables are now
263         used for what the sorted slists used to be used for.
264         (slist_contains): Don't rely on the list being sorted.
265         (slist_append): Simplify the code.
266
267         * recur.c (recursive_cleanup): Use free_string_set.
268
269         * utils.c (string_set_add, string_set_exists, string_set_free):
270         New functions for easier freeing of hash tables whose keys are
271         strdup'ed strings.
272
273         * recur.c (recursive_retrieve): Use the hash table functions for
274         storing undesirable URLs.
275
276         * hash.c: New file.
277
278 2000-11-17  Hrvoje Niksic  <hniksic@arsdigita.com>
279
280         * main.c (private_initialize): Call url_init.
281         (main): Call private_initialize.
282
283         * url.c (unsafe_char_table): New table.
284         (UNSAFE_CHAR): Use it.
285         (init_unsafe_char_table): New function.
286         (url_init): New function; call init_unsafe_char_table.
287
288 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
289
290         * html-url.c (handle_link): Handle HTML fragment identifiers.
291
292         * recur.c (recursive_retrieve): If norobot info is respected and
293         the file is specified not to be followed by robots, respect that.
294
295         * html-url.c (collect_tags_mapper): Handle <meta name=robots
296         content=X>.  For us the important cases are where X is NONE or
297         where X contains NOFOLLOW.
298         (get_urls_html): Propagate that information to the caller.
299
300 2000-11-13  Hrvoje Niksic  <hniksic@arsdigita.com>
301
302         * url.c (convert_links): Unlink the file we might be reading from
303         before writing to it.
304         (convert_links): Use alloca instead of malloc for
305         filename_plus_orig_suffix.
306
307 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
308
309         * url.c (get_urls_file): Ditto.
310         (convert_links): Ditto.
311
312         * html-url.c (get_urls_html): Use read_file() instead of
313         load_file().
314
315         * utils.c (read_file): New function, instead of the old
316         load_file().
317         (read_file_free): Ditto.
318
319         * url.c (findurl): Search only for the supported protocols.
320         (convert_links): Use fwrite() when writing out a region of
321         characters.
322
323 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
324
325         * ftp-ls.c: Move html_quote_string and ftp_index here.
326
327         * url.c: Remove get_urls_html, since that's now in html-url.c.
328
329         * html-url.c: New file.
330
331         * html-parse.c: New file.
332
333 2000-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
334
335         * mswindows.h: Define snprintf and vsnprintf to _snprintf and
336         _vsnprintf respectively.
337
338 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
339
340         * config.h.in: Do the _XOPEN_SOURCE and _SVID_SOURCE things only
341         on Linux.
342
343 2000-11-12  Hrvoje Niksic  <hniksic@arsdigita.com>
344
345         * host.c (realhost): Add HOST to the list with quality==0 only if
346         it wasn't already there.
347         Based on analysis by Lu Guohan <feng@public.bjnet.edu.cn>.
348
349 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
350
351         * init.c (run_wgetrc): Don't bother killing off '\r' since
352         pars_line() skips whitespace at end of line anyway.
353         (parse_line): Oops, it didn't.  Now it does.
354
355         * recur.c (parse_robots): Ditto here.
356
357         * ftp-ls.c (ftp_parse_unix_ls): Kill off the newline character
358         manually because read_whole_line no longer does.
359
360         * utils.c (read_whole_line): Rewrite to: a) use less memory
361         (reallocates to needed size after work), b) work faster -->
362         fgets() instead of getc, c) be more correct --> doesn't kill the
363         newline character at the end of line.
364
365 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
366
367         * init.c (comind): Initialize MAX to array size - 1.
368
369 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
370
371         * url.c (construct): Changed last_slash[-1] to *(last_slash - 1).
372         Suggested by Edward J. Sabol.
373
374 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
375
376         * url.c (construct): Handle the case where host name is not
377         followed by a slash.
378
379 2000-11-06  Hrvoje Niksic  <hniksic@arsdigita.com>
380
381         * init.c: commands[] need to be sorted!  ("base" wasn't.)
382
383 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
384
385         * wget.h (DO_REALLOC_FROM_ALLOCA): Use braces to disambiguate
386         `if'.
387
388 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
389
390         * url.c (construct): Insert unneeded initialization for the
391         compiler to shut up.
392
393         * config.h.in: Define _XOPEN_SOURCE to 500 to get the prototype
394         for strptime() (*duh*).  Define _SVID_SOURCE to get S_IFLNK which
395         otherwise gets lost when you define _XOPEN_SOURCE.
396
397         * utils.c (touch): Include the file name in the error message.
398         From Debian.
399
400 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
401
402         * log.c (logvprintf): Use vsnprintf() in all cases.  If necessary,
403         resize the buffer to fit the formated message.  That way, messages
404         of arbitrary size may be printed.
405         (logvprintf): Use saved_append() to optionally log the last
406         several lines of output.
407         (logputs): Ditto.
408         (log_close): Adapt to new data structures.
409         (log_dump): Ditto.
410         (redirect_output): Print messages to stderr, not to stdout.
411
412         * log.c (saved_append_1): New function.  Replaces the old logging
413         system ("log all output until 10M characters") with a new, much
414         more reasonable one ("log last screenful of text").
415         (saved_append): New function; call saved_append_1.
416         (free_log_line): New function.
417
418 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
419
420         * url.c (construct): Fix comment.
421         (find_last_char): Document.
422
423 2000-11-04  Hrvoje Niksic  <hniksic@arsdigita.com>
424
425         * snprintf.c: New file.
426
427 2000-11-03  Hrvoje Niksic  <hniksic@arsdigita.com>
428
429         * wget.h: If HAVE_STDARG_H is not defined, don't declare argument
430         types to logprintf() and debug_logprintf().
431
432 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
433
434         * ftp.c (ftp_loop_internal): Hide the password from the URL when
435         printing non-verbose.  Problem spotted by Dariusz Mlynarczyk
436         <darekm@bydg.lomac.com.pl>.
437
438 2000-11-02  Junio Hamano  <junio@twinsun.com>
439
440         * ftp-basic.c (ftp_login): Make comparison case-insensitive.
441
442 2000-11-02  Tyler Riddle  <triddle@liquidmarket.com>
443
444         * http.c (known_authentication_scheme_p): Recognize NTML
445         authentication.
446         (create_authorization_line): Treat NTML the same as `Basic'.
447
448 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
449
450         * retr.c (retrieve_url): Free url before returning.
451         (retrieve_url): Free mynewloc before returning.
452         Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
453
454 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
455
456         * url.c (parseurl): Remove possible reading past the end of
457         sup_protos[].  Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
458
459 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
460
461         * main.c (main): In case of opt.downloaded overflowing, print
462         <overflow> instead of a totally bogus random value.
463
464         * retr.c (retrieve_from_file): Ditto.
465
466         * recur.c (recursive_retrieve): Ditto.
467
468         * main.c (main): Ditto.
469
470         * http.c (http_loop): Ditto.
471
472         * ftp.c (ftp_loop_internal): Use downloaded_increase() instead of
473         `+=', and downloaded_exceeds_quota() instead of the simple-minded
474         check.
475         (ftp_retrieve_list): Ditto.
476         (ftp_retrieve_dirs): Ditto.
477         (ftp_retrieve_glob): Ditto.
478
479         * retr.c (downloaded_increase): New function.  Notice overflows of
480         opt.downloaded.
481         (downloaded_exceeds_quota): Make sure that opt.downloaded is not
482         used if it overflowed.
483
484         * options.h (struct options): New member downloaded_overflow.
485
486 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
487
488         * wget.h (enum): Remove extra space after last enumeration.
489
490 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
491
492         * main.c (main): Use legible_very_long() for printing
493         opt.downloaded.
494
495         * utils.c (legible_1): New function that operates on strings and
496         does the brunt of legible()'s work.
497         (legible): Use legible_1().
498         (legible_very_long): New function; dump the argument with
499         sprintf(), and call legible_1().
500
501         * options.h (struct options): Use VERY_LONG_TYPE for
502         opt.downloaded.
503
504         * sysdep.h (VERY_LONG_TYPE): Define it to have a 64-bit or greater
505         type.
506
507         * config.h.in: Make sure that SIZEOF_LONG and SIZEOF_LONG_LONG get
508         defined.  Define HAVE_LONG_LONG if long long is available.
509
510 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
511
512         * utils.c (long_to_string): Update with a later, better version.
513
514 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
515
516         * url.c (path_simplify_with_kludge): New function.
517         (path_simplify_with_kludge): Disable it.  Instead...
518         (parse_dir): ...make sure that at this point the right thing is
519         done, i.e. that "query" part of the URL (?...) is always assigned
520         to the file, never to the directory portion of the path.
521
522 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
523
524         * retr.c (retrieve_url): Detect redirection cycles.
525
526 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
527
528         * url.c (get_urls_html): Decode HTML entities using
529         html_decode_entities.
530
531         * html.c (htmlfindurl): Don't count the `#' in numeric entities
532         (&#NNN;) as an HTML fragemnt.
533         (html_decode_entities): New function.
534
535 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
536
537         * html.c (htmlfindurl): Fix recognition of # HTML fragments.
538
539 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
540
541         * url.c (construct): Rewritten for clarity.  Avoids the
542         unnecessary copying and stack-allocation the old version
543         performed.
544
545 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
546
547         * ftp.c (getftp): Ditto.
548
549         * http.c (gethttp): Rewind the stream when retrying from scratch.
550
551 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
552
553         * retr.c (retrieve_url): Use url_concat() to handle relative
554         redirections instead of /ad hoc/ code.
555
556         * url.c (url_concat): New function encapsulating weird
557         construct().
558         (urllen_http_hack): New function.
559         (construct): When constructing new URLs, recognize that `?' does
560         not form part of the file name in HTTP.
561
562 2000-10-13  Adrian Aichner  <adrian@xemacs.org>
563
564         * retr.c: Add msec timing support for WINDOWS.
565         * retr.c (reset_timer): GetSystemTime() on WINDOWS.
566         * retr.c (elapsed_time): Calculate delta time to msec on WINDOWS.
567
568 2000-10-27  Dan Harkless  <dan-wget@dilvish.speed.net>
569
570         * retr.c (retrieve_url): Manually applied T. Bharath
571         <TBharath@responsenetworks.com>'s patch to get wget to grok
572         illegal relative URL redirects.  Reformatted and re-commented it.
573
574 2000-10-23  Dan Harkless  <dan-wget@dilvish.speed.net>
575
576         * connect.c (make_connection and bindport): Manually applied Rob
577         Mayoff <mayoff@dqd.com>'s 1.5.3 patch to add --bind-address,
578         changing coding style to GNU's.
579
580         * ftp.c (ftp_loop_internal): --delete-after wasn't implemented for
581         files downloaded via FTP.  Per a comment, .listing files were not
582         counted towards number of bytes and files downloaded because they're 
583         deleted anyway.  Well, they aren't under -nr, so count them then.
584
585         * init.c: Manually applied Rob Mayoff's 1.5.3 patch to add
586         --bind-address, alphabetizing, changing coding style to GNU's,
587         commenting, and renaming cmd_ip_address() to cmd_address() to
588         imply hostnames also okay.
589                 
590         * main.c (main): --delete-after didn't delete the root of the
591         tree.  Ignore --convert-links if --delete-after was specified.
592         Manually applied Rob Mayoff's 1.5.3 patch to add --bind-address,
593         fixing duplicate use of added-since-1.5.3 case value.
594         (print_help): Clarified that --delete-after deletes local files.
595         Rob forgot to add a line for his new --bind-address option.
596                 
597         * options.h (struct options): Manually applied Rob Mayoff's patch
598         to add --bind-address (bind_address structure member).
599                 
600         * recur.c (recursive_retrieve): Improved comment; added DEBUGP().
601         Ignore --convert-links if --delete-after was specified.
602                 
603         * retr.c (retrieve_from_file): Just added a DEBUGP().
604                 
605 2000-10-19  Dan Harkless  <dan-wget@dilvish.speed.net>
606
607         * ftp.c (ftp_loop_internal): downloaded_file() enumerators changed.
608         (getftp): Applied Piotr Sulecki <Piotr.Sulecki@ios.krakow.pl>'s
609         patch to work around FTP servers that incorrectly respond to the
610         "REST" command with the remaining size rather than the total file size.
611                 
612         * http.c (gethttp): Improved a comment and added code to tack on
613         ".html" to text/html files without that extension when -E specified.
614         (http_loop): Use new downloaded_file() enumerators and deal with
615         the case of gethttp() called xrealloc() on u->local.
616
617         * init.c (commands): Added new "htmlextension" command.
618         Also renamed John Daily's cmd_quad() to the more descriptive
619         cmd_lockable_boolean(), alpha-sorted the CMD_DECLARE()s and
620         removed duplicate cmd_boolean() declaration.
621
622         * main.c (print_help): Added my new -E / --html-extension option.
623         (main): Undocumented --email-address option previously used -E synonym.
624         Stole it away for the much more deserving --html-extension's use.
625
626         * options.h (struct options): Added html_extension field.
627
628         * url.c (convert_links): URL X that we saved as X.html locally due
629         to -E needs to be backed up as X.orig, not X.html.orig.  Added comments.
630         (downloaded_file): Now remembers if we added .html extension to a file.
631
632         * url.h (downloaded_file_t): Added extra enumerators to support above.
633         (downloaded_file): Now takes and returns a downloaded_file_t.
634
635         * wget.h (unnamed "dt" enum): Added ADDED_HTML_EXTENSION enumerator.
636         
637 2000-10-09  Dan Harkless  <dan-wget@dilvish.speed.net>
638
639         * html.c (htmlfindurl): Added unneeded initialization to quiet warning.
640                 
641         * main.c (print_help): Clarified what --retr-symlinks does.
642         
643 2000-09-15  John Daily  <jdaily@cyberdude.com>
644
645         * init.c: Add support for "always" and "never" values to allow
646         .wgetrc to override commandline (useful e.g. with .pm files
647         calling `wget --passive-ftp' when your firewall doesn't allow that).
648
649         * ftp.c (getftp): passive_ftp is first option to support always/never.
650
651 2000-08-30  Dan Harkless  <dan-wget@dilvish.speed.net>
652
653         * ftp.c (ftp_retrieve_list): Use new INFINITE_RECURSION #define.
654         
655         * html.c: htmlfindurl() now takes final `dash_p_leaf_HTML' parameter.
656         Wrapped some > 80-column lines.  When -p is specified and we're at a 
657         leaf node, do not traverse <A>, <AREA>, or <LINK> tags other than 
658         <LINK REL="stylesheet">.
659         
660         * html.h (htmlfindurl): Now takes final `dash_p_leaf_HTML' parameter.
661         
662         * init.c: Added new -p / --page-requisites / page_requisites option.
663
664         * main.c (print_help): Clarified that -l inf and -l 0 both allow
665         infinite recursion.  Changed the unhelpful --mirrior description
666         to simply give the options it's equivalent to.  Added new -p option.
667         (main): Added some comments; handle new -p / --page-requisites.
668         
669         * options.h (struct options): Added new page_requisites field.
670
671         * recur.c: Changed "URL-s" to "URLs" and "HTML-s" to "HTMLs".
672         Calculate and pass down new `dash_p_leaf_HTML' parameter to
673         get_urls_html().  Use new INFINITE_RECURSION #define.
674
675         * retr.c: Changed "URL-s" to "URLs".  get_urls_html() now takes
676         final `dash_p_leaf_HTML' parameter.
677
678         * url.c: get_urls_html() and htmlfindurl() now take final
679         `dash_p_leaf_HTML' parameter.
680
681         * url.h (get_urls_html): Now takes final `dash_p_leaf_HTML' parameter.
682
683         * wget.h: Added some comments and new INFINITE_RECURSION #define.
684         
685 2000-08-23  Dan Harkless  <dan-wget@dilvish.speed.net>
686
687         * main.c (print_help): -B / --base was not mentioned.
688
689 2000-08-22  Dan Harkless  <dan-wget@dilvish.speed.net>
690
691         * main.c (print_help): Modified -nc description to mention that it
692         also prevents the creation of multiple versions of the same file
693         with ".<number>" suffixes.
694
695 2000-07-14  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
696
697         * retr.c (retrieve_url): Consistently strdup opt.referer when
698         setting u->referer.
699
700 2000-06-09  Dan Harkless  <dan-wget@dilvish.speed.net>
701
702         * main.c (print_help): --help output for --waitretry was over 80 cols.
703
704 2000-06-09  Hrvoje Niksic  <hniksic@iskon.hr>
705
706         * url.c (encode_string): Fix comment.
707         Suggested by Herold Heiko <Heiko.Herold@previnet.it>.
708
709 2000-06-01  Const Kaplinsky  <const@ce.cctpu.edu.ru>
710
711         * ftp.c (ftp_retrieve_list): Change permissions only on plain
712         files.
713
714 2000-06-01  Hrvoje Niksic  <hniksic@iskon.hr>
715
716         * url.c (str_url): Print the port number only if it's different
717         from the default port number for that protocol.
718
719 2000-05-22  Dan Harkless  <dan-wget@dilvish.speed.net>
720
721         * main.c (print_help): Added --help line for Damir Dzeko
722         <ddzeko@zesoi.fer.hr>'s until-now-undocumented --referer option.
723         Removed comments that --referer and --waitretry were undocumented.
724         Changed "`.wgetrc' command" to "`.wgetrc'-style command" on --help
725         line for --execute.
726
727 2000-05-18  Hrvoje Niksic  <hniksic@iskon.hr>
728
729         * ftp.c (getftp): Ditto.
730
731         * http.c (gethttp): Check for return value of fclose/fflush.
732
733 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
734
735         * host.c (store_hostaddress): Instead of shifting ADDR, start
736         copying from the correct address.
737
738 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
739
740         * http.c (gethttp): Don't free REQUEST -- it was allocated with
741         alloca().
742         Pointed out by Gisle Vanem <gvanem@eunet.no>.
743
744 2000-04-04  Dan Harkless  <dan-wget@dilvish.speed.net>
745
746         * host.c (store_hostaddress): R. K. Owen's patch introduces a
747         "left shift count >= width of type" warning on 32-bit
748         architectures.  Got rid of it by tricking the compiler w/ a variable.
749         
750         * url.c (UNSAFE_CHAR): The macro didn't include all the illegal
751         characters per RFC1738, namely everything above '~'.  It also
752         generated a warning on OSes where char =~ unsigned char.  Fixed.
753         
754 1998-10-17  Hrvoje Niksic  <hniksic@srce.hr>
755
756         * http.c (http_process_type): Removed needless strdup(), a memory
757         leak.
758
759 1998-09-25  Hrvoje Niksic  <hniksic@srce.hr>
760
761         * html.c (htmlfindurl): Set PH to the first occurrence of `#'.
762
763 1998-09-25  Simon Munton  <simonm@m4data.co.uk>
764
765         * init.c (wgetrc_file_name): Don't free HOME under Windows.
766
767 1998-12-01  "R. K. Owen"  <rkowen@Nersc.GOV>
768
769         * host.c (store_hostaddress): Fix for big endian 64-bit machines.
770
771 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
772
773         * url.c (UNSAFE_CHAR): New macro.
774         (contains_unsafe): Use it.
775         (encode_string): Ditto.
776
777 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
778
779         * main.c (i18n_initialize): Use LC_MESSAGES only if available.
780
781 2000-03-31  Hrvoje Niksic  <hniksic@srce.hr>
782
783         * Use TOUPPER/TOLOWER.
784
785 1998-12-22  Alexander V. Lukyanov  <lav@yars.free.net>
786
787         * ftp-opie.c (btoe): Zero-terminate OSTORE.
788
789 2000-03-21  Hrvoje Niksic  <hniksic@iskon.hr>
790
791         * wget.h (DO_REALLOC_FROM_ALLOCA): Ditto.
792
793         * sysdep.h (ISALNUM): New macro.
794         (TOLOWER): Ditto.
795         (TOUPPER): Ditto.
796
797 2000-03-10  Dan Harkless  <dan-wget@dilvish.speed.net>
798
799         * html.c (idmatch): Implemented checking of my new --follow-tags
800         and --ignore-tags options.
801         
802         * init.c (commands): Added comment reminding people adding new
803         entries doing allocation to add corresponding freeing in cleanup().
804         (commands): Added new followtags and ignoretags commands.
805         (cleanup): Free storage for new followtags and ignoretags.
806         
807         * main.c: Use of "comma-separated list" was random -- normalized
808         it.  Did some alphabetization.  Added comments pointing out
809         "Options without arguments" and "Options accepting an argument"
810         sections of long_options[].  Added new options --follow-tags and
811         -G / --ignore-tags.  Added comment that Damir's --referer is
812         currently undocumented.  Added comment that Heiko's --waitretry is
813         partially undocumented (mentioned in --help but not in
814         wget.texi).  Moved improperly sorted 24, 129, and 'G' cases.
815         
816         * options.h (struct options): Added new fields follow_tags and
817         ignore_tags. 
818         
819         * wget.h: Added "#define EQ 0" so we can say "strcmp(a, b) == EQ".
820         
821 2000-03-02  Dan Harkless  <dan-wget@dilvish.speed.net>
822
823         * ftp.c (ftp_loop_internal): Heiko introduced "suggest explicit
824         braces to avoid ambiguous `else'" warnings.  Eliminated them.
825         
826         * http.c (gethttp): Dan Berger's query string patch is totally
827         bogus.  If you have two different URLs, gen_page.cgi?page1 and
828         get_page.cgi?page2, they'll both be saved as get_page.cgi and the
829         second will overwrite the first.  Also, parameters to implicit
830         CGIs, like "http://www.host.com/db/?2000-03-02" cause the URLs to
831         be printed with trailing garbage characters, and could seg fault.
832         Backing out the patch, which Dan B. informed me by email was just
833         a kludge to download StarOffice from Sun made necessary due to
834         wget's unconditional escaping of certain characters (room for an
835         option there?).
836         (http_loop): Heiko introduced "suggest explicit braces to avoid
837         ambiguous `else'" warnings.  Eliminated them.
838         
839         * main.c: Heiko's --wait / --waitretry backwards compatibility
840         code looks to have been totally untested -- automatic variable
841         'wr' was used without being initialized, and a long int was passed
842         into setval()'s char* val parameter.
843         
844         * recur.c (parse_robots): Applied Edward J. Sabol
845         <sabol@alderaan.gsfc.nasa.gov>'s patch for Guan Yang's reported
846         problem with "User-agent:<space>*<space>" lines in robots.txt.
847         
848         * url.c (parseurl, str_url): Removing Dan Berger's code (see
849         http.c above for explanation).
850         
851 1999-08-25  Heiko Herold  <Heiko.Herold@previnet.it>
852
853         * ftp.c: Respect new option waitretry.
854
855 2000-01-30  Damir Dzeko  <ddzeko@zesoi.fer.hr>
856
857         * http.c (gethttp): Send custom Referer, if required.
858
859 1999-09-24  Charles G Waldman  <cgw@fnal.gov>
860
861         * netrc.c (parse_netrc): Allow passwords to contain spaces.
862
863         * netrc.c (parse_netrc): New function.
864
865 1999-09-17  Dan Berger  <dberger@ix.netcom.com>
866
867         * http.c (gethttp): Send it.
868
869         * url.c (parseurl): Detect query string in HTTP URL-s.
870         (str_url): Print it.
871
872 2000-03-02  HIROSE Masaaki  <hirose31@t3.rim.or.jp>
873
874         * html.c (html_allow): Add <link href=...> and <script src=...>.
875
876 1999-05-02  andrew deryabin  <djsf@softhome.net>
877
878         * http.c (gethttp): Specify port in `Host' header only if it's
879         different from 80.
880
881 1998-11-03  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
882
883         * recur.c (recursive_retrieve): If a finite maximum depth is
884         specified, and we're are already at that depth, don't download the
885         HTML file for parsing.
886
887 2000-03-01  Dan Harkless  <dan-wget@dilvish.speed.net>
888
889         * ftp.c (ftp_loop_internal): Call new downloaded_file() function,
890         even though we don't do conversion on HTML files retrieved via
891         FTP, so _current_ usage of downloaded_file() makes this call unneeded. 
892         (ftp_retrieve_list): Added a comment saying where we need to
893         stat() a .orig file if FTP'd HTML file conversion is ever implemented.
894         (ftp_retrieve_list): "Local file '%s' is more recent," is sometimes
895         a lie -- reworded as "Server file no newer than local file '%s' --".
896         
897         * http.c (http_loop): Fixed a typo and clarified a comment.
898         (http_loop): When -K and -N are specified together, compare size
899         and timestamp of server file X against local file X.orig (if
900         extant) rather than converted local file X.
901         (http_loop): "Local file '%s' is more recent," is sometimes a lie
902         -- reworded as "Server file no newer than local file '%s' --".
903         (http_loop): Call new downloaded_file() function to prevent
904         wrongful overwriting of .orig file when -N is specified.
905         
906         * url.c (convert_links): When -K specified, only rename X to
907         X.orig if downloaded_file() returns TRUE.  Otherwise when we skip
908         file X due to -N, we clobber an X.orig from a previous invocation.
909         (convert_links): Call the failsafe xstrdup(), not the real strdup().
910         (convert_links): Added a note asking anyone who understands how
911         multiple URLs can correspond to a single file to comment it.
912         (downloaded_file): Added this new function.
913         
914         * url.h (downloaded_file): Added prototype for this new function
915         as well as its downloaded_file_t enum type.
916
917         * wget.h (boolean): Added this new typedef and TRUE and FALSE #defines.
918
919 2000-02-29  Dan Harkless  <dan-wget@dilvish.speed.net>
920
921         * version.c: Upped version to developer-only "1.5.3+dev".
922
923 2000-02-18  Dan Harkless  <dan-wget@dilvish.speed.net>
924
925         * init.c (backup_converted): Added this new option.
926
927         * main.c (-K / --backup-converted): Added this new option.
928
929         * options.h (backup_converted): Added this new option.
930
931         * url.c (convert_links): When backup_converted is specified, save
932         file X as X.orig before converting.
933
934         * url.h (urlpos): Fixed typo -- said "Rekative" instead of "Relative".
935
936 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
937
938         * version.c: Wget 1.5.3 is released.
939
940 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
941
942         * host.c (ftp_getaddress): Don't warn when reverse-lookup of local 
943         address doesn't yield FQDN.
944
945 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
946
947         * cmpt.c (strerror): Fix declaration of sys_errlist.
948
949 1998-09-11  Hrvoje Niksic  <hniksic@srce.hr>
950
951         * main.c (main): Don't use an array subscript as the first
952         argument to STRDUP_ALLOCA.
953         From Kaveh R. Ghazi.
954
955 1998-09-11  Szakacsits Szabolcs  <szaka@sienet.hu>
956
957         * html.c (htmlfindurl): Download table background.
958
959 1998-09-11  Hans Grobler  <grobh@conde.ee.sun.ac.za>
960
961         * init.c (parse_line): Would free *com before allocating it.
962         (parse_line): Would free com instead of *com.
963
964 1998-09-10  Howard Gayle  <howard@fjst.com>
965
966         * url.c (get_urls_html): Would drop the last character of the
967         link.
968
969 1998-09-10  Hrvoje Niksic  <hniksic@srce.hr>
970
971         * http.c (http_loop): Don't print status code if quiet.
972
973 1998-09-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
974
975         * log.c: Use <stdarg.h> only when __STDC__.
976
977 1998-09-10  Adam D. Moss  <adam@foxbox.org>
978
979         * html.c (htmlfindurl): Download <layer src=...>.
980
981 1998-09-10  Howard Gayle  <howard@fjst.com>
982
983         * ftp.c (ftp_retrieve_list): Don't update the time stamp of a file 
984         not retrieved.
985
986 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
987
988         * utils.c: Include <libc.h> on NeXT.
989
990 1998-06-26  Heinz Salzmann  <heinz.salzmann@intermetall.de>
991
992         * url.c (get_urls_html): Fix calculation of URL position.
993
994 1998-06-23  Hrvoje Niksic  <hniksic@srce.hr>
995
996         * version.c: Wget 1.5.2 is released.
997
998 1998-06-23  Dave Love  <d.love@dl.ac.uk>
999
1000         * ftp.c, init.c, netrc.c: Include errno.h.
1001
1002         * http.c: Include errno.h and time header.
1003
1004         * Makefile.in (exext): Define.
1005         (install.bin, uninstall.bin): Use it.
1006
1007 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
1008
1009         * http.c (http_loop): Don't attempt to compare local and remote
1010         sizes if the remote size is unknown.
1011
1012 1998-06-16  Hrvoje Niksic  <hniksic@srce.hr>
1013
1014         * url.c (get_urls_html): Use malloc() instead of alloca in the
1015         loop.
1016
1017 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
1018
1019         * version.c: Wget 1.5.2-b4 is released.
1020
1021 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
1022
1023         * url.c (get_urls_html): Ignore spaces before and after the URI.
1024
1025 1998-06-08  Wanderlei Antonio Cavassin  <cavassin@conectiva.com.br>
1026
1027         * ftp.c (getftp): Translate `done'.
1028
1029 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
1030
1031         * version.c: Wget 1.5.2-b3 is released.
1032
1033 1998-06-06  Alexander Kourakos  <awk@bnt.com>
1034
1035         * init.c (cleanup): Close dfp, don't free it.
1036
1037 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
1038
1039         * utils.c (make_directory): Twiddle.
1040
1041         * config.h.in: Added template for access().
1042
1043 1998-06-05  Mathieu Guillaume  <mat@cythere.com>
1044
1045         * html.c (htmlfindurl): Download <input src=...>
1046
1047 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
1048
1049         * utils.c (file_exists_p): Use access() with two arguments.
1050
1051 1998-05-27  Martin Kraemer  <Martin.Kraemer@mch.sni.de>
1052
1053         * netrc.c (parse_netrc): Correct logic.
1054
1055 1998-05-27  Hrvoje Niksic  <hniksic@srce.hr>
1056
1057         * ftp.c (getftp): Added `break'; suggested by Lin Zhe Min
1058         <ljm@ljm.wownet.net>.
1059
1060 1998-05-24  Hrvoje Niksic  <hniksic@srce.hr>
1061
1062         * version.c: Wget 1.5.2-b2 is released.
1063
1064 1998-05-18  Juan Jose Rodriguez  <jcnsoft@jal1.telmex.net.mx>
1065
1066         * mswindows.h: Don't translate mkdir to _mkdir under Borland.
1067
1068 1998-05-17  Hrvoje Niksic  <hniksic@srce.hr>
1069
1070         * retr.c (elapsed_time): Return correct value when
1071         HAVE_GETTIMEOFDAY is undefined.
1072
1073 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
1074
1075         * version.c: Wget 1.5.2-b1 is released.
1076
1077 1998-05-08  Hrvoje Niksic  <hniksic@srce.hr>
1078
1079         * getopt.c (_getopt_internal): Use exec_name instead of argv[0].
1080         (_getopt_internal): Don't translate `#if 0'-ed strings.
1081
1082 1998-05-06  Douglas E. Wegscheid  <wegscd@whirlpool.com>
1083
1084         * mswindows.c (ws_handler): Use fork_to_background().
1085
1086 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
1087
1088         * version.c: Wget 1.5.1 is released.
1089
1090 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
1091
1092         * http.c (parse_http_status_line): Avoid `minor' and `major'
1093         names.
1094
1095 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
1096
1097         * utils.c (mkdirhier): Renamed to make_directory.
1098
1099 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
1100
1101         * mswindows.c (fork_to_background): Define under Windows.
1102
1103         * utils.c (fork_to_background): New function.
1104
1105         * html.c (htmlfindurl): Removed rerdundant casts.
1106
1107 1998-05-01  Douglas E. Wegscheid  <wegscd@whirlpool.com>
1108
1109         * mswindows.c (ws_mypath): Cache the path.
1110
1111 1998-04-30  Douglas E. Wegscheid  <wegscd@whirlpool.com>
1112
1113         * ftp.h: Prefix enum ftype members with FT_.
1114
1115         * ftp-ls.c, ftp.c, html.h: Adjust accordingly.
1116
1117         * mswindows.h: Use stat under Borland, _stat under MSVC.
1118
1119 1998-04-28  Hrvoje Niksic  <hniksic@srce.hr>
1120
1121         * http.c (known_authentication_scheme_p): New function.
1122         (gethttp): Handle authorization more correctly.
1123
1124         * ftp-basic.h: Removed.
1125
1126         * cmpt.h: Removed.
1127
1128         * utils.c: Include <unistd.h> before <pwd.h>; needed under SunOS
1129         with gcc 2.8.
1130         (numdigit): Use `while' loop.
1131
1132         * http.c (create_authorization_line): Detect authentication
1133         schemes case-insensitively.
1134
1135         * http.c (extract_header_attr): Use strdupdelim().
1136         (digest_authentication_encode): Move declaration of local
1137         variables to smaller scope.
1138         (digest_authentication_encode): Reset REALM, OPAQUE and NONCE.
1139         (create_authorization_line): Detect authentication schemes
1140         case-insensitively.
1141
1142         * utils.c (touch): Constify.
1143
1144         * http.c (gethttp): Report a nicer error when no data is received.
1145
1146         * rbuf.h (RBUF_READCHAR): Ditto.
1147
1148         * ftp-basic.c (ftp_response): Use sizeof.
1149
1150 1998-04-27  Hrvoje Niksic  <hniksic@srce.hr>
1151
1152         * retr.c (print_percentage): EXPECTED is long, not int.
1153         (print_percentage): Use floating-point arithmetic to avoid
1154         overflow with large files' sizes multiplied with 100.
1155
1156 1998-04-27  Gregor Hoffleit  <flight@mathi.uni-heidelberg.de>
1157
1158         * config.h.in: Added pid_t stub.
1159
1160         * sysdep.h (S_ISREG): Moved here from mswindows.h (NeXT doesn't
1161         define it).
1162
1163 1998-04-20  Hrvoje Niksic  <hniksic@srce.hr>
1164
1165         * version.c: Wget 1.5.0 is released.
1166
1167 1998-04-18  Hrvoje Niksic  <hniksic@srce.hr>
1168
1169         * url.c (str_url): Ditto.
1170
1171         * ftp-basic.c (ftp_rest): Use new name.
1172
1173         * utils.c (long_to_string): Renamed from prnum().
1174
1175 1998-04-16  Hrvoje Niksic  <hniksic@srce.hr>
1176
1177         * version.c: Wget 1.5-b17 is released.
1178
1179 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
1180
1181         * headers.c (header_get): New argument FLAGS.
1182
1183         * http.c (gethttp): If request is malformed, bail out of the
1184         header loop.
1185         (gethttp): Check for empty header *after* the status line checks.
1186         (gethttp): Disallow continuations for status line.
1187
1188 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
1189
1190         * version.c: Wget 1.5-b16 is released.
1191
1192 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
1193
1194         * init.c (commands): Renamed `always_rest' to `continue'.
1195
1196 1998-04-05  Hrvoje Niksic  <hniksic@srce.hr>
1197
1198         * all: Use it.
1199
1200         * log.c (logputs): New argument.
1201         (logvprintf): Ditto.
1202         (logprintf): Ditto.
1203
1204 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
1205
1206         * http.c (http_atotm): Update comment.
1207
1208         * main.c (i18n_initialize): Set LC_MESSAGES, not LC_ALL.
1209
1210         * wget.h: Renamed ENABLED_NLS to HAVE_NLS.
1211
1212         * main.c (i18n_initialize): New function.
1213         (main): Use it.
1214
1215         * log.c: Include <unistd.h>.
1216
1217         * retr.c (show_progress): Cast alloca to char *.
1218
1219 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
1220
1221         * version.c: Wget 1.5-b15 is released.
1222
1223 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
1224
1225         * utils.h: Declare file_non_directory_p().
1226
1227 1998-04-03  Hrvoje Niksic  <hniksic@srce.hr>
1228
1229         * main.c (main): It's `tries', not `numtries' now.
1230
1231 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
1232
1233         * init.c (getperms): Removed.
1234
1235 1998-04-01  Tim Charron  <tcharron@interlog.com>
1236
1237         * log.c (logvprintf): Don't use ARGS twice.
1238
1239 1998-04-01  John  <john@futuresguide.com>
1240
1241         * mswindows.c: Cleaned up.
1242
1243 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
1244
1245         * version.c: Wget 1.5-b14 is released.
1246
1247 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
1248
1249         * ftp-opie.c (STRLEN4): New macro.
1250         (btoe): Use it.
1251
1252 1998-04-01  Junio Hamano  <junio@twinsun.com>
1253
1254         * http.c: Document all the Digest functions.
1255
1256 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
1257
1258         * utils.c (file_non_directory_p): Renamed from isfile().
1259
1260         * mswindows.h (S_ISREG): New macro, suggested by Tim Adam.
1261
1262 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
1263
1264         * utils.c (mkdirhier): Use 0777 instead of opt.dirmode.
1265
1266         * init.c (cmd_spec_dotstyle): Use 48 dots per line for binary
1267         style.
1268         (cmd_permissions): Removed.
1269
1270         * config.h.in: Add template for WORDS_BIGENDIAN.
1271
1272 1998-03-31  Junio Hamano  <junio@twinsun.com>
1273
1274         * http.c (HEXD2asc): New macro.
1275         (dump_hash): Use it.
1276
1277 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
1278
1279         * version.c: Wget 1.5-b13 is released.
1280
1281 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
1282
1283         * main.c (main): Don't try to use `com'.
1284
1285 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
1286
1287         * init.c (cmd_permissions): New function.
1288
1289 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
1290
1291         * version.c: Wget 1.5-b12 is released.
1292
1293 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
1294
1295         * init.c (commands): Renamed `numtries' to `tries'.
1296         (cmd_spec_debug): Removed.
1297         (home_dir): Under Windows, return `C:\' if HOME is undefined.
1298
1299 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
1300
1301         * config.h.in: Define _XOPEN_SOURCE.
1302
1303         * init.c (check_user_specified_header): New function.
1304         (cmd_spec_header): Use it.
1305         (cmd_spec_useragent): New function.
1306
1307 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
1308
1309         * version.c: Wget 1.5-b11 is released.
1310
1311 1998-03-28  Hrvoje Niksic  <hniksic@srce.hr>
1312
1313         * wget.h: Include <libintl.h> only if NLS is enabled.
1314
1315 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
1316
1317         * options.h (struct options): Made `wait' a long.
1318         (struct options): Ditto for `timeout'.
1319
1320 1998-03-19  Hrvoje Niksic  <hniksic@srce.hr>
1321
1322         * utils.c (exists): Renamed to file_exists_p.
1323         (file_exists_p): Use access() if available.
1324
1325 1998-03-17  Hrvoje Niksic  <hniksic@srce.hr>
1326
1327         * utils.c (memfatal): Set save_log_p to 0 to avoid potential
1328         infloop.
1329
1330         * log.c: do_logging -> save_log_p.
1331
1332         * config.h.in: Added template for HAVE_VSNPRINTF.
1333
1334 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
1335
1336         * init.c: Ditto.
1337
1338         * http.c: Protect declaration against non-ANSI compiler.
1339
1340         * log.c (logvprintf): Use vsnprintf() if available.
1341
1342         * getopt.c (main): Don't translate test stuff.
1343
1344 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
1345
1346         * version.c: Wget 1.5-b10 is released.
1347
1348 1998-03-11  Hrvoje Niksic  <hniksic@srce.hr>
1349
1350         * ftp.c (getftp): Don't translate "CWD %s".
1351
1352         * wget.h (GCC_FORMAT_ATTR): Renamed from FORMAT_ATTR.
1353
1354 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
1355
1356         * ftp-opie.c (btoe): Use memcpy() instead of strncat().
1357
1358         * log.c (logputs): New function.
1359         (logvprintf): Renamed from vlogmsg; use logputs().
1360
1361         * retr.c (show_progress): Print `[100%]' when the retrieval is
1362         finished.
1363
1364         * init.c (run_wgetrc): Use FILE, not PATH.
1365         (wgetrc_file_name): Ditto.
1366
1367 1998-03-07  Tim Adam  <tma@osa.com.au>
1368
1369         * recur.c (parse_robots): Correctly reset `entries' on empty
1370         disallow.
1371
1372 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
1373
1374         * init.c (cmd_spec_debug): Use cmd_boolean().
1375
1376 1998-02-23  Hrvoje Niksic  <hniksic@srce.hr>
1377
1378         * http.c (gethttp): Create proxy-authorization correctly.
1379
1380 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
1381
1382         * md5.c: Ditto.
1383
1384         * getopt.c: Use ANSI function definitions.
1385
1386         * ftp-opie.c: New file.
1387
1388         * options.h: Don't redefine EXTERN.
1389
1390         * init.c: Sort it correctly.
1391
1392 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
1393
1394         * version.c: Wget 1.5-b9 is released.
1395
1396 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
1397
1398         * recur.c (recursive_retrieve): Reset `first_time'.
1399
1400         * ftp.c (getftp): Added `default' clause to switches of uerr_t.
1401
1402         * rbuf.c (rbuf_peek): Simplified.
1403         (rbuf_flush): Use MINVAL.
1404
1405         * wget.h (MINVAL): Moved from url.h.
1406
1407         * rbuf.h (RBUF_FD): New macro.
1408
1409         * url.c (add_url): Add to the head of the list.
1410
1411         * ftp.c (ftp_retrieve_list): Set the permissions to downloaded
1412         file.
1413         (getftp): Set the default permissions to 0600.
1414
1415 1998-02-21  Hrvoje Niksic  <hniksic@srce.hr>
1416
1417         * url.c (get_urls_html): Ditto.
1418         (convert_links): Ditto.
1419
1420         * recur.c (parse_robots): Ditto.
1421
1422         * html.c (ftp_index): Ditto.
1423
1424         * ftp-ls.c (ftp_parse_unix_ls): Open file as binary.
1425
1426         * init.c (defaults): Initialize `opt' to zero via memset.
1427
1428         * http.c (digest_authentication_encode): goto considered harmful.
1429
1430 1998-02-19  Hrvoje Niksic  <hniksic@srce.hr>
1431
1432         * ftp.c (delelement): Simplify and fix leak.
1433
1434 1998-02-18  Hrvoje Niksic  <hniksic@srce.hr>
1435
1436         * http.c (dump_hash): Use HEXD2ASC instead of home-grown stuff.
1437
1438         * url.h (HEXD2ASC): Removed warning.
1439
1440         * init.c (comind): Use binary search.
1441         (commands): Reorganized.
1442         (setval): Ditto.
1443         (cmd_boolean): New function.
1444         (cmd_number): Ditto.
1445         (cmd_number_inf): Ditto.
1446         (cmd_string): Ditto.
1447         (cmd_vector): Ditto.
1448         (cmd_directory_vector): Ditto.
1449         (cmd_bytes): Ditto.
1450         (cmd_time): Ditto.
1451         (cmd_spec_debug): Ditto.
1452         (cmd_spec_dirmode): Ditto.
1453         (cmd_spec_dirstruct): Ditto.
1454         (cmd_spec_dotstyle): Ditto.
1455         (cmd_spec_header): Ditto.
1456         (cmd_spec_htmlify): Ditto.
1457         (cmd_spec_mirror): Ditto.
1458         (cmd_spec_outputdocument): Ditto.
1459         (cmd_spec_recursive): Ditto.
1460         (settime): Merged with cmd_time().
1461         (setbytes): Merged with cmd_bytes().
1462         (setonoff): Merged with cmd_boolean().
1463         (onoff): Ditto.
1464
1465 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
1466
1467         * Makefile.in (distclean): Remove `config.h'.
1468
1469 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
1470
1471         * version.c: Wget 1.5-b8 is released.
1472
1473 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
1474
1475         * http.c (digest_authentication_encode): New function.
1476         (create_authorization_line): Use it.
1477         (dump_hash): New function.
1478         (digest_authentication_encode): Use it.
1479
1480         * fnmatch.c: Renamed from `mtch.c'.
1481
1482 1998-02-15  Karl Eichwalder  <ke@suse.de>
1483
1484         * main.c (main): Tag "Written by..." string as translatable.
1485
1486 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
1487
1488         * wget.h (FREE_MAYBE): New macro.
1489
1490         * http.c (create_authorization_line): Don't use ANSI C string
1491         concatenation feature.
1492         (basic_authentication_encode): Use alloca() for temporary
1493         variables.
1494
1495         * recur.h: Ditto.
1496
1497         * http.c: Ditto.
1498
1499         * headers.h: Ditto.
1500
1501         * ftp-basic.c: Protect declaration against non-ANSI compiler.
1502
1503         * http.c (create_authorization_line): Cast `unsigned char *' to
1504         `char *' for sprintf, to shut up the noisy Digital Unix cc.
1505
1506 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
1507
1508         * version.c: Wget 1.5-b7 is released.
1509
1510 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
1511
1512         * cmpt.c (strstr): Synched with glibc-2.0.6.
1513
1514         * ftp-basic.c (calculate_skey_response): Ditto.
1515         (calculate_skey_response): Use alloca().
1516
1517         * http.c (create_authorization_line): Work with FSF's version of
1518         md5.c.
1519
1520         * md5.c: New file, from GNU libc.
1521
1522 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
1523
1524         * url.h (URL_CLEANSE): Name the temporary variable more carefully.
1525
1526 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
1527
1528         * http.c (basic_authentication_encode): New function, instead of
1529         the macro.
1530
1531 1998-02-13  Junio Hamano  <junio@twinsun.com>
1532
1533         * http.c: Add HTTP-DA support.
1534         * ftp-basic.c: Add Opie/S-key support.
1535         * config.h.in, Makefile.in: Add HTTP-DA and Opie/S-key support.
1536         * md5.c, md5.h: New files.
1537
1538 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
1539
1540         * http.c (http_process_range): Renamed from hprocrange().
1541         (http_process_range): Parse the whole header.
1542
1543         * headers.c: New file.
1544         (header_process): New function.
1545         (header_get): Renamed from fetch_next_header.
1546
1547         * all: Include utils.h only where necessary.
1548
1549         * wget.h: Declare xmalloc(), xrealloc() and xstrdup() here.
1550
1551         * wget.h: Add provisions for dmalloc.
1552
1553 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
1554
1555         * version.c: Wget 1.5-b6 is released.
1556
1557 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
1558
1559         * ftp.c (ftp_loop): Determine `filename' more precisely.
1560
1561         * init.c (setval): Don't set `opt.quiet' if output-document is
1562         `-'.
1563
1564         * log.c (log_init): Print to STDERR instead of STDOUT.
1565         (vlogmsg): Use STDERR by default.
1566         (logflush): Ditto.
1567
1568 1998-02-11  Simon Josefsson  <jas@pdc.kth.se>
1569
1570         * host.c: Use addr_in again.
1571
1572 1998-02-08  Karl Eichwalder  <karl@suse.de>
1573
1574         * http.c (gethttp): Fixed typo.
1575
1576 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
1577
1578         * version.c: Wget 1.5-b5 is released.
1579
1580 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
1581
1582         * retr.c (show_progress): Use it.
1583
1584         * log.c (logflush): New function.
1585
1586         * wget.h: Utilize __attribute__ if on gcc.
1587
1588 1998-02-07  Hrvoje Niksic  <hniksic@srce.hr>
1589
1590         * http.c (base64_encode_line): New argument LENGTH.
1591         (BASIC_AUTHENTICATION_ENCODE): Use it.
1592         (BASIC_AUTHENTICATION_ENCODE): Take length of HEADER into account.
1593
1594         * main.c (main): Fixed fprintf() format mismatch.
1595
1596 1998-02-06  Hrvoje Niksic  <hniksic@srce.hr>
1597
1598         * version.c: Wget 1.5-b4 is released.
1599
1600 1998-02-03  Simon Josefsson  <jas@pdc.kth.se>
1601
1602         * host.c: use sockaddr_in instead of addr_in.
1603
1604 1998-02-04  Hrvoje Niksic  <hniksic@srce.hr>
1605
1606         * init.c (cleanup): Use it.
1607
1608         * recur.c (recursive_cleanup): New function.
1609
1610         * retr.c (retrieve_from_file): Ditto.
1611
1612         * main.c (main): Use it.
1613
1614         * recur.c (recursive_reset): New function.
1615
1616         * retr.c (retrieve_from_file): Ditto.
1617
1618         * main.c (main): Simplify call to recursive_retrieve().
1619
1620         * recur.c (recursive_retrieve): Removed FLAGS argument.
1621
1622         * http.c (gethttp): Changed call to iwrite().
1623
1624 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
1625
1626         * url.c (get_urls_html): Ditto.
1627         (free_urlpos): Ditto.
1628         (mkstruct): Ditto.
1629         (construct): Ditto.
1630
1631         * retr.c (retrieve_url): Move declaration of local variables to
1632         smaller scope.
1633
1634         * url.c (urlproto): Use it.
1635         (parseurl): Ditto.
1636         (str_url): Ditto.
1637         (get_urls_html): Ditto.
1638
1639         * utils.h (ARRAY_SIZE): New macro.
1640
1641         * url.c (proto): Moved from url.h.
1642
1643         * url.h (URL_CLEANSE): Reformatted.
1644         (USE_PROXY_P): Renamed from USE_PROXY.
1645
1646         * ftp-basic.c: Adjust to the new interface of iwrite().
1647
1648         * ftp-basic.c (ftp_port): Use alloca().
1649
1650 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
1651
1652         * version.c: Wget 1.5-b3 is released.
1653
1654         * host.c (ftp_getaddress): Don't print to stderr directly.
1655
1656         * init.c (setbytes): Support `g' for gigabytes.
1657         (cmdtype): New specification CTIME.
1658         (setval): Use it with settime().
1659         (commands): Use it for WAIT and TIMEOUT.
1660
1661 1998-02-02  Hrvoje Niksic  <hniksic@srce.hr>
1662
1663         * http.c (BASIC_AUTHENTICATION_ENCODE): New macro.
1664         (gethttp): Use it.
1665
1666         * utils.c (unique_name_1): Moved from url.c.
1667         (unique_name): Ditto.
1668
1669         * url.c (url_filename): Ditto.
1670
1671         * log.c (redirect_output): Changed call to unique_name().
1672
1673         * url.c (unique_name_1): Renamed from unique_name().
1674         (unique_name): Changed interface.
1675
1676         * init.c (enum cmdid): Moved from init.h.
1677         (cmdtype): Ditto.
1678         (struct cmd): Ditto.
1679
1680         * main.c (main): Use it.
1681         (main): Moved `--backups' to not have a short option.
1682
1683         * options.h (struct options): New member BACKGROUND.
1684
1685         * main.c (print_help): Rearranged.
1686         (main): New long options for -n* short options: --no-directories,
1687         --no-host-directories, --non-verbose, --no-host-lookup and
1688         --dont-remove-listing.
1689
1690 1998-02-01  Hrvoje Niksic  <hniksic@srce.hr>
1691
1692         * main.c (main): Use log_close().
1693
1694         * log.c: New variable LOGFP.
1695         (vlogmsg): Use it.
1696         (redirect_output): Don't open /dev/null; set LOGFP to stdin
1697         instead.
1698         (log_close): New function.
1699
1700         * options.h (struct options): Removed LFILE.
1701
1702         * log.c (log_enable): Removed.
1703
1704         * main.c (main): Use it.
1705
1706         * log.c (log_init): New function.
1707
1708         * url.c (get_urls_html): Removed needless assignment to BASE.
1709
1710         * host.c (add_hlist): Don't set CMP needlessly.
1711
1712         * utils.c (match_backwards): Ditto.
1713         (in_acclist): Ditto.
1714
1715         * url.c (findurl): Ditto.
1716
1717         * netrc.c (parse_netrc): Ditto.
1718
1719         * log.c (log_dump): Ditto.
1720
1721         * html.c (html_quote_string): Ditto.
1722
1723         * ftp-basic.c (ftp_request): Made static.
1724
1725         * connect.c: Made global variables static.
1726
1727         * url.c (construct): Ditto.
1728
1729         * init.c (init_path): Avoid assignment inside `if'-condition.
1730
1731         * ftp.c: Don't include in.h or winsock.h.
1732
1733         * ftp.c (ftp_loop): Use SZ.
1734
1735         * connect.c (bindport): Cast &addrlen to int *.
1736         (conaddr): Ditto.
1737
1738         * init.c (initialize): Don't use SYSTEM_WGETRC unconditionally.
1739
1740 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
1741
1742         * ftp.c (getftp): Initialize opt.ftp_pass here.
1743         (ftp_retrieve_dirs): Use alloca().
1744
1745         * init.c (defaults): Don't initialize opt.ftp_pass.
1746
1747         * sysdep.h (S_ISLNK): Declare for OS/2; ditto for lstat.
1748         From Ivan F. Martinez <ivanfm@ecodigit.com.br>.
1749
1750 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
1751
1752         * recur.c (parse_robots): Check for comments more correctly.
1753
1754         * host.c (ftp_getaddress): Use STRDUP_ALLOCA.
1755         (ftp_getaddress): Add diagnostics when reverse-lookup yields only
1756         hostname.
1757
1758 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
1759
1760         * version.c: Wget 1.5-b2 is released.
1761
1762         * netrc.c (NETRC_FILE_NAME): Moved from netrc.h.
1763
1764         * utils.c (proclist): Pass FNM_PATHNAME to fnmatch().
1765
1766         * ftp-basic.c (ftp_pasv): Avoid unnecessary casting to unsigned
1767         char.
1768
1769         * log.c: Don't attempt to hide arguments from ansi2knr.
1770
1771         * cmpt.c: Synched strptime() and mktime() with glibc-2.0.6.
1772
1773         * ansi2knr.c: Use a later version, from fileutils-3.16l alpha.
1774
1775         * ftp.c (getftp): Ditto.
1776
1777         * http.c (gethttp): Use it.
1778
1779         * retr.c (get_contents): New argument EXPECTED; pass it to
1780         show_progress().
1781         (show_progress): New argument EXPECTED; use it to display
1782         percentages.
1783
1784         * init.c (setval): Ditto.
1785
1786         * http.c (gethttp): Ditto.
1787         (http_loop): Ditto.
1788
1789         * ftp.c (getftp): Ditto.
1790         (ftp_loop_internal): Ditto.
1791
1792         * ftp-ls.c (ftp_parse_unix_ls): Use abort() instead of assert(0).
1793
1794         * sysdep.h (CLOSE): Simplify; use DEBUGP.
1795
1796         * netrc.c (search_netrc): Use alloca().
1797
1798         * init.c (defaults): Initialize no_flush.
1799
1800         * log.c (vlogmsg): Don't flush if no_flush.
1801
1802         * options.h (struct options): New variable no_flush.
1803
1804         * main.c (main): Don't play games with buffering.
1805
1806         * log.c (vlogmsg): Flush the output after every message.
1807
1808 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
1809
1810         * init.c (parse_line): Ditto.
1811
1812         * url.c (get_urls_html): Ditto.
1813
1814         * main.c (main): Don't cast to unsigned char.
1815
1816         * init.c (run_wgetrc): Don't cast to unsigned char.
1817         (parse_line): Accept char instead of unsigned char.
1818
1819         * html.c (htmlfindurl): Use char instead of unsigned char.
1820
1821         * all: Use them.
1822
1823         * sysdep.h: Add wrappers to ctype macros to make them
1824         eight-bit-clean:
1825
1826 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
1827
1828         * html.c (htmlfindurl): Download <img lowsrc=...>
1829
1830         * main.c (main): Ignore SIGPIPE.
1831
1832         * connect.c (select_fd): New argument WRITEP.
1833         (iwrite): Call select_fd().
1834
1835 1997-02-27  Fila Kolodny <fila@ibi.com>
1836
1837         * ftp.c (ftp_retrieve_list): If retrieving symlink and the proper
1838         one already exists, just skip it.
1839
1840 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
1841
1842         * http.c (gethttp): Cosmetic changes.
1843
1844         * http.c (check_end): Allow `+D...' instead of `GMT'.
1845         From Fabrizio Pollastri <pollastri@cstv.to.cnr.it>.
1846
1847         * url.c (process_ftp_type): New function.
1848         (parseurl): Use it.
1849
1850         * connect.c (iwrite): Allow writing in a few chunks.
1851         (bindport): Made SRV static, so addr can point to it.
1852         (select_fd): Removed HPUX kludge.
1853
1854         * host.c (free_hlist): Incorporated into clean_hosts().
1855
1856 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
1857
1858         * host.c (hlist): Made static.
1859         (search_address): Cosmetic change.
1860
1861 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
1862
1863         * version.c: Wget v1.5-b1 is released.
1864
1865         * http.c (hgetlen): Use sizeof() to get the header length.
1866         (hgetrange): Ditto.
1867         (hgettype): Ditto.
1868         (hgetlocation): Ditto.
1869         (hgetmodified): Ditto.
1870         (haccepts_none): Ditto.
1871
1872         * main.c (main): Updated `--version' and `--help' output, as per
1873         Francois Pinard's suggestions.
1874
1875         * main.c: Include locale.h; call setlocale(), bindtextdomain() and 
1876         textdomain().
1877
1878         * config.h.in: Define stubs for I18N3.
1879
1880         * wget.h: Include libintl.h.
1881
1882 1998-01-28  Hrvoje Niksic  <hniksic@srce.hr>
1883
1884         * url.c (mkstruct): Check for opt.cut_dirs.
1885         (mkstruct): alloca()-te more, xmalloc() less.
1886
1887         * utils.c (load_file): Check for ferror().
1888
1889         * url.c (get_urls_file): Close only the files we opened.
1890         (get_urls_html): Ditto.
1891         (count_slashes): New function.
1892
1893         * http.h: Removed.
1894
1895         * http.c (gethttp): Respect username and password provided by
1896         proxy URL.
1897         (base64_encode_line): Write into an existing buffer instead of
1898         malloc-ing a new one.
1899         (struct http_stat): Moved from http.h
1900
1901         * retr.c (retrieve_url): Free SUF.
1902
1903         * all: Removed lots of unnecessary .h dependencies.
1904
1905         * html.c (global_state): Made static.
1906
1907         * utils.h (ALLOCA_ARRAY): New macro.
1908
1909         * main.c (main): New option `--cut-dirs'.
1910
1911         * url.c (construct): Use alloca() for T.
1912
1913         * utils.c (mkdirhier): Use STRDUP_ALLOCA.
1914
1915         * host.c (_host_t): Moved from host.h.
1916         (struct host): Renamed from _host_t.
1917         (store_hostaddress): Use STRDUP_ALLOCA for INET_S.
1918         (realhost): Ditto.
1919
1920         * host.h: Don't include url.h.
1921
1922         * ftp.c (LIST_FILENAME): Moved from ftp.h.
1923
1924         * init.c (DEFAULT_FTP_ACCT): Moved from ftp.h.
1925
1926         * main.c (main): Enable log if the output goes to a TTY.
1927
1928         * connect.h: Removed unused constant `BACKLOG'.
1929
1930         * config.h.in: Check for isatty().
1931
1932         * Makefile.in (LINK): Use CFLAGS when linking.
1933
1934 1998-01-27  Hrvoje Niksic  <hniksic@srce.hr>
1935
1936         * mswindows.c (ws_hangup): Use redirect_output().
1937
1938         * main.c (redirect_output_signal): New function; use
1939         redirect_output().
1940
1941         * log.c (redirect_output): New function, based on hangup(), which
1942         is deleted.
1943
1944         * log.c (vlogmsg): New function.
1945
1946         * wget.h (DEBUGP): Use debug_logmsg().
1947
1948         * main.c (hangup): Use it.
1949
1950         * log.c (log_dump): New function.
1951
1952         * utils.h (DO_REALLOC): Use `long' for various sizes.
1953
1954         * http.c (hskip_lws): Use `while', for clarity.
1955         (HTTP_DYNAMIC_LINE_BUFFER): New constant.
1956         (fetch_next_header): Use it instead of DYNAMIC_LINE_BUFFER.
1957
1958         * ftp-basic.c (FTP_DYNAMIC_LINE_BUFFER): New constant.
1959         (ftp_response): Use it instead of DYNAMIC_LINE_BUFFER.
1960
1961         * utils.c (DYNAMIC_LINE_BUFFER): Moved from utils.c.
1962         (LEGIBLE_SEPARATOR): Ditto.
1963         (FILE_BUFFER_SIZE): Ditto.
1964
1965         * retr.c (BUFFER_SIZE): Moved from retr.h.
1966
1967         * log.c: New file.
1968         (logmsg): Moved from utils.c.
1969         (debug_logmsg): New function.
1970
1971         * mswindows.h: Include it here.
1972
1973         * init.c: Ditto.
1974
1975         * utils.c: Don't include <windows.h>.
1976
1977 1998-01-25  Hrvoje Niksic  <hniksic@srce.hr>
1978
1979         * host.c (ftp_getaddress): Ditto.
1980
1981         * main.c (main): Use it.
1982
1983         * utils.h (STRDUP_ALLOCA): New macro.
1984
1985         * init.c: Prepend `wget: ' to error messages printed on stderr.
1986
1987         * utils.c (mkdirhier): Renamed from mymkdir.
1988         (touch): Renamed from my_touch.
1989         (pwd_cuserid): Renamed from my_cuserid().
1990
1991 1998-01-24  Andy Eskilsson  <andy.eskilsson@telelogic.se>
1992
1993         * utils.c (accdir): Process wildcards.
1994         (proclist): New function.
1995         (accdir): Use it to avoid code repetition.
1996
1997 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
1998
1999         * recur.c (parse_robots): Respect opt.useragent; use alloca().
2000
2001         * http.c (gethttp): Construct useragent accordingly.
2002
2003         * version.c: Changed version string to numbers-only.
2004
2005         * main.c (print_help): List all the options.
2006
2007         * mswindows.c (windows_main_junk): Initialize argv0 here.
2008
2009 1998-01-24  Karl Heuer  <kwzh@gnu.org>
2010
2011         * netrc.c (search_netrc): Initialize `l' only after processing
2012         netrc.
2013
2014         * main.c (main): Don't trap SIGHUP if it's being ignored.
2015
2016 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
2017
2018         * all: Use logmsg().
2019
2020         * utils.c (time_str): Moved from retr.c.
2021         (logmsg): New function.
2022         (logmsg_noflush): Ditto.
2023
2024         * rbuf.c: New file, moved buf_* functions here.
2025
2026         * ftp.c (ftp_expected_bytes): Moved from ftp-basic.c.
2027
2028         * ftp-basic.c (ftp_rest): Use prnum().
2029
2030         * ftp-basic.c: Ditto.
2031
2032         * ftp.c: Use the new reading functions and macros.
2033
2034         * retr.c (buf_initialize): New function.
2035         (buf_initialized_p): Ditto.
2036         (buf_uninitialize): Ditto.
2037         (buf_fd): Ditto.
2038
2039         * http.c (fetch_next_header): Use the BUF_READCHAR macro for
2040         efficiency.
2041         (gethttp): Use alloca() where appropriate.
2042
2043         * retr.c (buf_readchar): Use it.
2044         (buf_peek): Use rstreams.
2045
2046         * retr.h (BUF_READCHAR): New macro.
2047
2048         * init.c (home_dir): Rewritten for clarity.
2049         (init_path): Ditto.
2050
2051         * mswindows.c (ws_backgnd): Made static.
2052         (read_registry): Ditto.
2053         (ws_cleanup): Ditto.
2054         (ws_handler): Ditto.
2055
2056 1998-01-23  Hrvoje Niksic  <hniksic@srce.hr>
2057
2058         * alloca.c: New file.
2059
2060         * Makefile.in (ALLOCA): Define.
2061
2062         * mswindows.c (ws_help): Constify.
2063         (ws_help): Use alloca.
2064
2065         * mswindows.c: Reformat.
2066
2067         * all: Added _(...) annotations for I18N snarfing and translation.
2068
2069         * host.c (ftp_getaddress): Nuke SYSINFO.
2070         (ftp_getaddress): Don't use getdomainname().
2071         (ftp_getaddress): Use uname(), where available.
2072
2073         * http.c (gethttp): Protect a stray fprintf().
2074
2075         * init.c (settime): New function.
2076         (setval): Treat WAIT specially, allowing suffixes like `m' for
2077         minutes, etc.
2078
2079 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
2080
2081         * url.c (get_urls_html): Use alloca() for TEMP.
2082
2083 1998-01-21  Jordan Mendelson  <jordy@wserv.com>
2084
2085         * url.c (rotate_backups): New function.
2086
2087         * http.c (gethttp): Ditto.
2088
2089         * ftp.c (getftp): Rotate backups.
2090
2091 1997-12-18  Hrvoje Niksic  <hniksic@srce.hr>
2092
2093         * all: Renamed nmalloc(), nrealloc() and nstrdup() to xmalloc(),
2094         xrealloc() and xstrdup().  Use the new functions.
2095
2096         * url.c (decode_string): Made static.
2097         (has_proto): Ditto.
2098         (parse_dir): Ditto.
2099         (parse_uname): Ditto.
2100         (mkstruct): Ditto.
2101         (construct): Ditto.
2102         (construct_relative): Ditto.
2103
2104         * retr.c (show_progress): Made static.
2105
2106         * recur.c (robots_url): Made static.
2107         (retrieve_robots): Ditto.
2108         (parse_robots): Ditto.
2109         (robots_match): Ditto.
2110
2111         * main.h: Removed.
2112
2113         * main.c (printhelp): Made static.
2114         (hangup): Ditto.
2115
2116         * init.c (comind): Made static.
2117         (defaults): Ditto.
2118         (init_path): Ditto.
2119         (run_wgetrc): Ditto.
2120         (onoff): Ditto.
2121         (setonoff): Ditto.
2122         (setnum): Ditto.
2123         (myatoi): Ditto.
2124         (getperms): Ditto.
2125         (setbytes): Ditto.
2126
2127         * http.c (fetch_next_header): Made static.
2128         (hparsestatline): Ditto.
2129         (hskip_lws): Ditto.
2130         (hgetlen): Ditto.
2131         (hgetrange): Ditto.
2132         (hgettype): Ditto.
2133         (hgetlocation): Ditto.
2134         (hgetmodified): Ditto.
2135         (haccepts_none): Ditto.
2136         (gethttp): Ditto.
2137         (base64_encode_line): Ditto.
2138         (mktime_from_utc): Ditto.
2139         (http_atotm): Ditto.
2140
2141         * html.c (idmatch): Made static.
2142
2143         * host.c (search_host): Made static.
2144         (search_address): Ditto.
2145         (free_hlist): Ditto.
2146
2147         * ftp.c (getftp): Made static.
2148         (ftp_loop_internal): Ditto.
2149         (ftp_get_listing): Ditto.
2150         (ftp_retrieve_list): Ditto.
2151         (ftp_retrieve_dirs): Ditto.
2152         (ftp_retrieve_glob): Ditto.
2153         (freefileinfo): Ditto.
2154         (delelement): Ditto.
2155
2156         * ftp-ls.c (symperms): Made static.
2157         (ftp_parse_unix_ls): Ditto.
2158
2159         * connect.c (select_fd): Made static.
2160
2161         * utils.c (xmalloc): Renamed from nmalloc.
2162         (xrealloc): Renamed from nrealloc.
2163         (xstrdup): Renamed from nstrdup.
2164
2165         * getopt.c (exchange): Use alloca.
2166
2167         * mswindows.c (mycuserid): Use strncpy.
2168
2169         * New files mswindows.c, mswindows.h, sysdep.h.  winjunk.c,
2170         systhings.h, windecl.h and winjunk.h removed.
2171
2172         * mswindows.c (sleep): New function.
2173
2174         * utils.c: Include <windows.h> under Windows.
2175
2176 1997-06-12  Darko Budor  <dbudor@zesoi.fer.hr>
2177
2178         * url.h (URL_UNSAFE): Change default under Windows.
2179
2180         * retr.c (retrieve_from_file): Respect opt.delete_after.
2181
2182         * main.c (main): Call ws_help on Windows.
2183
2184         * winjunk.c (windows_main_junk): New function.
2185
2186         * main.c (main): Junk-process argv[0].
2187
2188         * http.c (mktime_from_utc): Return -1 if mktime failed.
2189
2190         * http.c (http_loop): Ditto.
2191
2192         * ftp.c (ftp_loop_internal): Change title on Windows when using a
2193         new URL.
2194
2195         * winjunk.c (getdomainname): Lots of functions.
2196
2197 1997-06-12  Hrvoje Niksic  <hniksic@srce.hr>
2198
2199         * cmpt.c (strptime_internal): Handle years more correctly for
2200         `%y'.
2201
2202 1997-06-09  Mike Thomas <mthomas@reality.ctron.com>
2203
2204         * http.c (gethttp): Allocate enough space for
2205         `Proxy-Authorization' header.
2206
2207 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
2208
2209         * version.c: Wget/1.4.5 is released.
2210
2211 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
2212
2213         * retr.c (get_contents): Check return value of fwrite more
2214         carefully.
2215
2216 1997-03-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2217
2218         * cmpt.c (strptime_internal) [case 'Y']: Always subtract 1900 from
2219         year, regardless of century.
2220
2221 1997-03-30  Hrvoje Niksic  <hniksic@srce.hr>
2222
2223         * utils.c (isfile): Use `lstat' instead of `stat'.
2224
2225 1997-03-29  Hrvoje Niksic  <hniksic@srce.hr>
2226
2227         * utils.c (numdigit): Use explicit test.
2228
2229 1997-03-21  Hrvoje Niksic  <hniksic@srce.hr>
2230
2231         * http.c (http_loop): Always use `url_filename' to get u->local.
2232
2233 1997-03-20  Hrvoje Niksic  <hniksic@srce.hr>
2234
2235         * url.c: Recognize https.
2236
2237 1997-03-13  Hrvoje Niksic  <hniksic@srce.hr>
2238
2239         * recur.c (recursive_retrieve): Lowercase just the host name.
2240
2241 1997-03-09  Hrvoje Niksic  <hniksic@srce.hr>
2242
2243         * url.c (get_urls_file): Use the correct test.
2244         (get_urls_html): Ditto.
2245
2246 1997-03-07  Hrvoje Niksic  <hniksic@srce.hr>
2247
2248         * connect.c: Reverted addrlen to int.
2249
2250         * init.c (parse_line): Check for -1 instead of NONE.
2251
2252         * version.c: Changed version to 1.4.5.
2253
2254 1997-02-17  Hrvoje Niksic  <hniksic@srce.hr>
2255
2256         * init.c: New option netrc.
2257         (initialize): Don't parse .netrc.
2258
2259         * cmpt.c (recursive): Return rp.
2260         (strptime_internal): Match the long strings first, the abbreviated
2261         second.
2262
2263 1997-02-16  Hrvoje Niksic  <hniksic@srce.hr>
2264
2265         * http.c (check_end): New function.
2266         (http_atotm): Use it.
2267  
2268 1997-02-13  gilles Cedoc  <gilles@cedocar.fr>
2269
2270         * http.c (gethttp): Use them.
2271
2272         * init.c: New options proxy_user and proxy_passwd.
2273
2274 1997-02-14  Hrvoje Niksic  <hniksic@srce.hr>
2275
2276         * ftp.c (ftp_retrieve_list): Create links even if not relative.
2277
2278 1997-02-10  Hrvoje Niksic  <hniksic@srce.hr>
2279
2280         * recur.c (recursive_retrieve): Lowercase the host name, if the
2281         URL is not "optimized".
2282
2283         * host.c (realhost): Return l->hostname, even if it matches with
2284         host.
2285
2286 1997-02-10  Marin Purgar  <pmc@asgard.hr>
2287
2288         * connect.c: Make addrlen size_t instead of int.
2289         (conaddr): Ditto.
2290
2291 1997-02-09  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
2292
2293         * systhings.h: Define S_ISLNK on NeXT too.
2294
2295 1997-02-09  Hrvoje Niksic  <hniksic@srce.hr>
2296
2297         * version.c: Released 1.4.3.
2298
2299         * url.c: Futher update to list of protostrings.
2300         (skip_proto): Skip `//' correctly for FTP and HTTP.
2301
2302         * url.c (get_urls_html): Handle bogus `http:' things a little
2303         different.
2304
2305         * main.c (main): Removed `follow-ftp' from `f'.
2306         (main): Dumped the `prefix-files' and `file-prefix' options and
2307         features; old and bogus.
2308         (main): Exit on failed setval() in `-e'.
2309
2310         * http.c (fetch_next_header): Use it to detect header continuation
2311         correctly.
2312
2313         * retr.c (buf_peek): New function.
2314
2315 1997-02-08  Hrvoje Niksic  <hniksic@srce.hr>
2316
2317         * wget.h: Include time.h and stuff.
2318
2319 1997-02-08  Roger Beeman  <beeman@cisco.com>
2320
2321         * ftp.c: Include <time.h>
2322
2323 1997-02-07  Hrvoje Niksic  <hniksic@srce.hr>
2324
2325         * url.c (findurl): Would read over buffer limits.
2326
2327 1997-02-06  Hrvoje Niksic  <hniksic@srce.hr>
2328
2329         * ftp-ls.c (ftp_parse_unix_ls): Allow spaces in file names.
2330
2331 1997-02-05  Hrvoje Niksic  <hniksic@srce.hr>
2332
2333         * http.c (http_atotm): Initialize tm.is_dst.
2334
2335 1997-02-02  Hrvoje Niksic  <hniksic@srce.hr>
2336
2337         * http.c (gethttp): Don't print the number of retrieved headers.
2338
2339         * main.c (main): New option `--no-clobber', alias for `-nc'.
2340
2341         * url.c: Recognize `https://'.
2342
2343 1997-02-01  Hrvoje Niksic  <hniksic@srce.hr>
2344
2345         * host.c (herrmsg): Don't use h_errno.
2346
2347 1997-01-30  Hrvoje Niksic  <hniksic@srce.hr>
2348
2349         * host.c (accept_domain): Use it.
2350
2351         * main.c (main): New option `--exclude-domains'.
2352
2353         * retr.c (retrieve_url): Use it.
2354         (retrieve_url): Bail out when an URL is redirecting to itself.
2355
2356         * url.c (url_equal): New function.
2357
2358 1997-01-29  Hrvoje Niksic  <hniksic@srce.hr>
2359
2360         * connect.c: Include arpa/inet.h instead of arpa/nameser.h.
2361
2362         * http.c (mk_utc_time): New function.
2363         (http_atotm): Use it; handle time zones correctly.
2364
2365 1997-01-28  Hrvoje Niksic  <hniksic@srce.hr>
2366
2367         * http.c: Ditto.
2368
2369         * ftp-basic.c: Use it instead of WRITE.
2370
2371         * connect.c (iwrite): New function.
2372
2373 1997-01-27  Hrvoje Niksic  <hniksic@srce.hr>
2374
2375         * cmpt.c (mktime): New function.
2376
2377         * netrc.c: Include <sys/types.h>.
2378
2379         * main.c (main): Wouldn't recognize --spider.
2380
2381         * retr.c (rate): Use `B', `KB' and `MB'.
2382         (reset_timer,elapsed_time): Moved from utils.c.
2383
2384         * ftp.c (ftp_retrieve_list): Ditto.
2385
2386         * http.c (http_loop): Don't touch the file if opt.dfp.
2387
2388 1997-01-24  Hrvoje Niksic  <hniksic@srce.hr>
2389
2390         * cmpt.c: New file.
2391
2392         * ftp.c (ftp_retrieve_glob): New argument semantics.
2393         (ftp_retrieve_dirs): Use it.
2394         (ftp_loop): Ditto.
2395
2396         * html.c (htmlfindurl): Recognize `'' as the quote char.
2397
2398 1997-01-23  Hrvoje Niksic  <hniksic@srce.hr>
2399
2400         * ftp.c (ftp_loop_internal): Use it.
2401
2402         * utils.c (remove_link): New function.
2403
2404 1997-01-22  Hrvoje Niksic  <hniksic@srce.hr>
2405
2406         * retr.c (retrieve_url): Require STRICT redirection URL.
2407
2408         * url.c (parseurl): New argument STRICT.
2409
2410         * http.c (hparsestatline): Be a little-bit less strict about
2411         status line format.
2412
2413 1997-01-21  Hrvoje Niksic  <hniksic@srce.hr>
2414
2415         * http.c (gethttp): Use it.
2416
2417         * main.c (main): Don't use '<digit>' as options.
2418
2419         * init.c: New option ignore_length.
2420
2421         * http.c (gethttp): Ditto.
2422         (http_loop): Check for redirection without Location:.
2423         (gethttp): Don't print Length unless RETROKF.
2424
2425         * ftp.c (getftp): Use it.
2426
2427         * url.c (mkalldirs): New function.
2428
2429         * utils.c (mymkdir): Don't check for existing non-directory.
2430
2431         * url.c (mkstruct): Don't create the directory.
2432
2433 1997-01-20  Hrvoje Niksic  <hniksic@srce.hr>
2434
2435         * init.c (setval): Removed NO_RECURSION checks.
2436
2437 1997-01-19  Hrvoje Niksic  <hniksic@srce.hr>
2438
2439         * version.c: "Released" 1.4.3-pre2.
2440
2441         * recur.c (recursive_retrieve): Bypass host checking only if URL
2442         is ftp AND parent URL is not ftp.
2443
2444         * ftp-basic.c (ftp_request): Print out Turtle Power.
2445
2446         * ftp.c (ftp_loop): Call ftp_retrieve_glob with 0 if there's no
2447         wildcard.
2448         (ftp_retrieve_glob): Call ftp_loop_internal even on empty list, if
2449         not glob.
2450
2451         * http.c (gethttp): Be a little bit smarter about status codes.
2452
2453         * recur.c (recursive_retrieve): Always reset opt.recursive when
2454         dealing with FTP.
2455
2456 1997-01-18  Hrvoje Niksic  <hniksic@srce.hr>
2457
2458         * retr.c (retrieve_url): New variable location_changed; use it for
2459         tests instead of mynewloc.
2460         (retrieve_url): Allow heuristic adding of html.
2461
2462         * url.c (url_filename): Don't use the `%' in Windows file names.
2463
2464         * http.c (http_loop): Always time-stamp the local file.
2465
2466         * http.c (http_loop): Ditto.
2467
2468         * ftp.c (ftp_retrieve_list): Use it.
2469
2470         * utils.c (my_touch): New function.
2471
2472         * ftp.c (ftp_retrieve_list): Use #ifdef HAVE_STRUCT_UTIMBUF
2473         instead of #ifndef NeXT.
2474
2475         * utils.c (strptime): New version, by Ulrich Drepper.
2476
2477 1997-01-17  Hrvoje Niksic  <hniksic@srce.hr>
2478
2479         * http.c (haccepts_none): Renamed from `haccepts_bytes'.
2480         (gethttp): If haccepts_none(), disable ACCEPTRANGES.
2481         (http_loop): Would remove ACCEPTRANGES.
2482
2483         * ftp.c (getftp): Call ftp_list with NULL.
2484
2485 1997-01-15  Hrvoje Niksic  <hniksic@srce.hr>
2486
2487         * html.c (ftp_index): Don't print minutes and seconds if we don't
2488         know them; beautify the output.
2489
2490         * ftp.c (getftp): Don't close the socket on FTPNSFOD.
2491
2492 1997-01-14  Hrvoje Niksic  <hniksic@srce.hr>
2493
2494         * utils.c (strptime): New function.
2495         (strptime): Don't use get_alt_number.
2496         (strptime): Don't use locale.
2497         (match_string): Made it a function.
2498
2499 1997-01-12  Hrvoje Niksic  <hniksic@srce.hr>
2500
2501         * http.c (http_atotm): New function.
2502         (http_loop): Use it.
2503
2504         * atotm.c: Removed from the distribution.
2505
2506         * http.c (base64_encode_line): Rewrite.
2507
2508 1997-01-09  Hrvoje Niksic  <hniksic@srce.hr>
2509
2510         * ftp.c (getftp): Use ftp_expected_bytes; print size.
2511
2512         * ftp-basic.c (ftp_response): Use ftp_last_respline.
2513         (ftp_expected_bytes): New function.
2514
2515         * ftp.c (getftp): Print the unauthoritative file length.
2516
2517         * ftp-ls.c: Renamed from ftp-unix.c.
2518         (ftp_parse_ls): Moved from ftp.c.
2519         (ftp_parse_unix_ls): Recognize seconds in time spec.
2520         (ftp_parse_unix_ls): Recognize year-less dates of the previous
2521         year.
2522
2523 1997-01-08  Hrvoje Niksic  <hniksic@srce.hr>
2524
2525         * ftp-basic.c: Don't declare errno if #defined.
2526
2527         * host.c (ftp_getaddress): Check for sysinfo legally.
2528
2529 1997-01-08  Darko Budor  <dbudor@diana.zems.fer.hr>
2530
2531         * connect.c (iread): Use READ.
2532
2533 1996-12-23  Hrvoje Niksic  <hniksic@srce.hr>
2534
2535         * url.c: Recognize finger, rlogin, tn3270, mid and cid as valid
2536         schemes.
2537
2538 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
2539
2540         * host.c (ftp_getaddress): Allow `.' in hostname.
2541
2542 1996-12-26  Darko Budor <dbudor@zems.fer.hr>
2543
2544         * wget.h: READ and WRITE macros for use instead of read and write
2545         on sockets, grep READ *.c, grep WRITE *.c
2546
2547         * wsstartup.c: new file - startup for winsock
2548
2549         * wsstartup.h: new file
2550
2551         * win32decl.h: new file - fixup for <errno.h> and winsock trouble
2552
2553         * configure.bat: Configure utility for MSVC
2554
2555         * src/Makefile.ms,config.h.ms: new files for use with MSVC 4.x
2556
2557 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
2558
2559         * version.c: Released 1.4.3-pre.
2560
2561         * utils.c (prnum): Accept long.
2562         (legible): Use prnum().
2563
2564         * connect.c (make_connection): Accept port as short.
2565         (bindport): Ditto.
2566
2567         * http.c (gethttp): Use search_netrc.
2568
2569 1996-12-21  Hrvoje Niksic  <hniksic@srce.hr>
2570
2571         * ftp.c (getftp): Use search_netrc.
2572
2573         * netrc.c (free_netrc): New function.
2574
2575         * init.c (home_dir): New function.
2576
2577         * url.c (convert_links): Allow REL2ABS changes.
2578
2579 1996-12-21  Gordon Matzigkeit  <gord@gnu.ai.mit.edu>
2580
2581         * netrc.c: New file.
2582         (parse_netrc, maybe_add_to_list): New functions.
2583
2584 1996-12-17  Hrvoje Niksic  <hniksic@srce.hr>
2585
2586         * retr.c (retrieve_url): Reset opt.recursion before calling
2587         ftp_loop if it is reached through newloc.
2588
2589         * init.c (run_wgetrc): Print the wgetrc path too, when reporting
2590         error; don't use "Syntax error", since we don't know if it is
2591         really a syntax error.
2592
2593 1996-12-16  Hrvoje Niksic  <hniksic@srce.hr>
2594
2595         * utils.c (acceptable): Extract the filename part of the path.
2596
2597         * recur.c (recursive_retrieve): Call acceptable() with the right
2598         argument; would bug out on wildcards.
2599
2600         * init.c (parse_line): Likewise.
2601
2602         * html.c (htmlfindurl): Cast to char * when calling stuff.
2603
2604 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
2605
2606         * ftp.c (getftp): Use ftp_pasv.
2607
2608         * ftp-basic.c (ftp_request): Accept NULL value.
2609         (ftp_pasv): New function.
2610
2611         * options.h (struct options): Add passive FTP option.
2612
2613 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
2614
2615         * url.c (parseurl): Debug output.
2616
2617         * utils.c (path_simplify): New one, adapted from bash's
2618         canonicalize_pathname().
2619
2620 1996-12-14  Hrvoje Niksic  <hniksic@srce.hr>
2621
2622         * ftp.c (getftp): Don't discard the buffer.
2623
2624         * retr.c (get_contents): New parameter nobuf.
2625
2626 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
2627
2628         * html.c (htmlfindurl): Recognize <meta contents="d; URL=...".
2629
2630         * init.c (setval): Strip the trailing slashes on CVECDIR.
2631
2632 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
2633
2634         * init.c: Make excludes and includes under CVECDIR instead of
2635         CVEC.
2636
2637 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
2638
2639         * url.c (get_urls_html): Skip "http:".
2640
2641 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
2642
2643         * utils.c (strcasecmp): From glibc.
2644         (strncasecmp): Also.
2645         (strstr): Also.
2646
2647         * url.c: Added javascript: to the list of URLs prefixes.
2648
2649 1996-12-12  Shawn McHorse  <riffraff@txdirect.net>
2650
2651         * recur.c (retrieve_robots): Print the warning message only if
2652         verbose.
2653
2654 1996-12-12  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
2655
2656         * ftp.c (ftp_retrieve_list): Use NeXT old utime interface.
2657
2658 1996-12-12  Hrvoje Niksic  <hniksic@srce.hr>
2659
2660         * systhings.h: New file.
2661
2662         * ../configure.in: Check for utime.h
2663
2664         * ftp.c: Check whether we have unistd.h.
2665
2666 1996-11-27  Hrvoje Niksic  <hniksic@srce.hr>
2667
2668         * recur.c (recursive_retrieve): Send the canonical URL as referer.
2669         (recursive_retrieve): Call get_urls_html with the canonical URL.
2670
2671 1996-12-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2672
2673         * (configure.in, config.h.in, src/Makefile.in, src/*.[ch]): Add
2674         ansi2knr support for compilers which don't support ANSI style
2675         function prototypes and signatures.
2676
2677         * (aclocal.m4, src/ansi2knr.c, src/ansi2knr.1): New files.
2678
2679 1996-11-26  Hrvoje Niksic  <hniksic@srce.hr>
2680
2681         * url.c: Use it; Recognize paths ending with "." and ".." as
2682         directories.
2683         (url_filename): Append .n whenever file exists and could be a
2684         directory.
2685
2686         * url.h (ISDDOT): New macro.
2687
2688         * init.c (parse_line): Use unsigned char.
2689
2690         * url.c (get_urls_html): Cast to unsigned char * when calling
2691         htmlfindurl.
2692
2693         * html.c (htmlfindurl): Use unsigned char.
2694
2695         * version.c: Changed version to 1.4.3.
2696
2697 1996-11-25  Hrvoje Niksic  <hniksic@srce.hr>
2698
2699         * version.c: Released 1.4.2.
2700
2701         * ftp.c (getftp): Simplified assertion.
2702         (ftp_loop_internal): Remove symlink before downloading.
2703         (ftp_retrieve_list): Unlink the symlink name before attempting to
2704         create a symlink!
2705
2706         * options.h (struct options): Renamed print_server_response to
2707         server_response.
2708
2709         * ftp.c (rel_constr): Removed.
2710         (ftp_retrieve_list): Don't use it.
2711         (ftp_retrieve_list): Use opt.retr_symlinks.
2712
2713 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
2714
2715         * main.c (main): New option retr_symlinks.
2716
2717         * url.c (convert_links): Print verbose message.
2718
2719 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
2720
2721         * http.c (http_loop): Reset newloc in the beginning of function;
2722         would cause FMR in retrieve_url.
2723
2724 1996-11-23  Hrvoje Niksic  <hniksic@srce.hr>
2725
2726         * recur.c (convert_all_links): Find the URL of each HTML document,
2727         and feed it to get_urls_html; would bug out.
2728         (convert_all_links): Check for l2 instead of dl; removed dl.
2729
2730         * url.c (convert_links): Don't refer to freed newname.
2731
2732         * recur.c (recursive_retrieve): Add this_url to urls_downloaded.
2733
2734         * main.c (main): Print the OS_TYPE in the debug output, too.
2735
2736         * recur.c (recursive_retrieve): Check for opt.delete_after.
2737
2738         * main.c (main): New option delete-after.
2739
2740         * init.c (setval): Cleaned up.
2741
2742 1996-11-21  Hrvoje Niksic  <hniksic@srce.hr>
2743
2744         * Makefile.in (wget): Make `wget' the default target.
2745
2746         * ftp.c (ftp_loop_internal): Move noclobber checking out of the
2747         loop.
2748         (ftp_retrieve_list): Warn about non-matching sizes.
2749
2750         * http.c (http_loop): Made -nc non-dependent on opt.recursive.
2751
2752         * init.c (setnum): Renamed from setnuminf; New argument flags.
2753         (setval): Use it.
2754
2755         * main.c (main): Sorted the options.
2756         (main): New option --wait.
2757
2758 1996-11-21  Shawn McHorse  <riffraff@txdirect.net>
2759
2760         * html.c (htmlfindurl): Reset s->in_quote after getting out of
2761         quotes.
2762
2763 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
2764
2765         * version.c: Changed version to 1.4.2.
2766
2767 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
2768
2769         * version.c: Released 1.4.1.
2770
2771         * html.c (html_quote_string): New function.
2772         (ftp_index): Use it.
2773         (htmlfindurl): A more gentle ending debug message.
2774
2775         * ftp.c (ftp_loop): Check for opt.htmlify.
2776
2777         * init.c: New command htmlify.
2778
2779         * ftp.c (getftp): Nicer error messages, with `'-encapsulated
2780         strings.
2781         (ftp_loop): Print size of index.html.
2782
2783         * init.c (setval): Implement "styles".
2784
2785         * main.c (main): New option dotstyle.
2786
2787 1996-11-19  Hrvoje Niksic  <hniksic@srce.hr>
2788
2789         * ftp.c (getftp): Close the master socket in case of errors, after
2790         bindport().
2791
2792         * connect.c (bindport): Initialize msock to -1.
2793
2794         * ftp.c (getftp): Initialize dtsock to -1.
2795
2796         * connect.c (closeport): Don't close sock if sock == -1.
2797
2798 1996-11-18  Hrvoje Niksic  <hniksic@srce.hr>
2799
2800         * init.c (setnuminf): Nuked default value -- just leave unchanged.
2801         (setval): Don't send default values.
2802         (defaults): Use DEFAULT_TIMEOUT -- aaargh.
2803
2804         * options.h (struct options): Use long for dot_bytes.
2805
2806         * init.c (setquota): Renamed to setbytes.
2807         (setval): Use setbytes on DOTBYTES.
2808
2809 1996-11-17  Hrvoje Niksic  <hniksic@srce.hr>
2810
2811         * ftp.c (getftp): Initialize con->dltime.
2812
2813         * recur.c (recursive_retrieve): Use same_host instead of
2814         try_robots; simply load robots_txt whenever the host is changed.
2815         (recursive_retrieve): Free forbidden before calling parse_robots.
2816
2817 1996-11-16  Hrvoje Niksic  <hniksic@srce.hr>
2818
2819         * retr.c (show_progress): Use them.
2820
2821         * options.h (struct options): New options dot_bytes, dots_on_line
2822         and dot_spacing.
2823
2824 1996-11-16  Mark Boyns  <boyns@sdsu.edu>
2825
2826         * recur.c (recursive_retrieve): Retrieve directories regardless of
2827         acc/rej rules; check for empty u->file.
2828
2829 1996-11-14  Hrvoje Niksic  <hniksic@srce.hr>
2830
2831         * init.c (setval): Use it.
2832
2833         * utils.c (merge_vecs): New function.
2834
2835         * init.c (setval): Reset the list-type functions when encountering
2836         "".
2837
2838 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
2839
2840         * recur.c (recursive_retrieve): Use base_url instead of this_url
2841         for no_parent.
2842
2843 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
2844
2845         * html.c (htmlfindurl): Reset s->in_quote after exiting the quote.
2846
2847 1996-11-13  Hrvoje Niksic  <hniksic@srce.hr>
2848
2849         * utils.c (sepstring): Rewrote; don't use strtok.
2850
2851         * recur.c (recursive_retrieve): Enter assorted this_url to slist
2852         when running the first time.
2853         (retrieve_robots): Warn to ignore errors when robots are loaded.
2854
2855         * utils.c (load_file): Moved from url.c.
2856
2857         * http.c: Made static variables const too in h* functions.
2858
2859         * main.c (main): Renamed --continue-ftp to --continue.
2860
2861         * recur.c (recursive_retrieve): Use it.
2862
2863         * utils.c (frontcmp): New function.
2864
2865         * url.c (accdir): New function.
2866
2867         * html.c (htmlfindurl): Recognize <area href=...>.
2868
2869         * ftp.c (ftp_retrieve_dirs): Implemented opt.includes.
2870
2871         * init.c (setval): Free the existing opt.excludes and
2872         opt.includes, if available.
2873
2874         * main.c (main): New option -I.
2875
2876 1996-11-12  Hrvoje Niksic  <hniksic@srce.hr>
2877
2878         * ftp.c (ftp_retrieve_glob): Do not weed out directories.
2879
2880         * version.c: Changed version to 1.4.1.
2881
2882 1996-11-11  Hrvoje Niksic  <hniksic@srce.hr>
2883
2884         * version.c: Released 1.4.0.
2885
2886 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
2887
2888         * main.c (main): Free com and val after parse_line.
2889         (printhelp): Reorder the listing.
2890
2891         * http.c: More robust header parsing.
2892
2893         * http.c: Allow any number of spaces, or no spaces, precede ':'.
2894         (hskip_lws): New function.
2895         (haccepts_bytes): New function.
2896         (gethttp): Use it.
2897
2898         * init.c (setval): Check header sanity.
2899         (setval): Allow resetting of headers.
2900
2901 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
2902
2903         * http.c (http_loop): Don't use has_wildcards.
2904
2905         * http.c (gethttp): Free all_headers -- would leak.
2906
2907         * recur.c (recursive_retrieve): Initialize depth to 1 instead of
2908         0 -- this fixes a long-standing bug in -rl.
2909
2910 1996-11-09  Hrvoje Niksic  <hniksic@srce.hr>
2911
2912         * ftp.c: Use -1 as "impossible" value for con->fd.
2913
2914         * url.h (URL_SEPARATOR): Don't treat `*' and `+' as separators.
2915
2916         * init.c (parse_line): Use isalpha.
2917
2918         * ftp-unix.c: Use HAVE_UNISTD_H.
2919
2920         * mtch.c (has_wildcards): Don't match \.
2921
2922         * http.c (http_loop): Warn on HTTP wildcard usage.
2923
2924 1996-11-08  Hrvoje Niksic  <hniksic@srce.hr>
2925
2926         * url.c (url_filename): Do not create numbered suffixes if
2927         opt.noclobber -- would bug out on -nc.
2928
2929 1996-11-07  Hrvoje Niksic  <hniksic@srce.hr>
2930
2931         * recur.c (parse_robots): Don't chuck out the commands without
2932         arguments (`Disallow:<empty>' didn't work).
2933         (parse_robots): Compare versions lowercase.
2934         (parse_robots): Match on base_version, not version_string!
2935         (parse_robots): Handle comments properly.
2936         (parse_robots): Match versions in a sane way.
2937
2938         * init.c: Print nicer error messages.
2939
2940         * version.c: Changed version to 1.4.0.
2941
2942 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
2943
2944         * version.c: Released 1.4.0-test2.
2945
2946         * init.c (run_wgetrc): Close fp.
2947
2948         * ftp.c (ftp_retrieve_dirs): Allocate the correct length for
2949         u->dir.
2950
2951 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
2952
2953         * init.c (setquota): Allow inf as quota specification.
2954
2955 1996-11-05  Hrvoje Niksic  <hniksic@srce.hr>
2956
2957         * ftp.c (ftp_retrieve_dirs): Return QUOTEXC if quota exceeded.
2958         (ftp_retrieve_glob): Return QUOTEXC on quota exceeded.
2959
2960         * main.c (main): Check for quota by comparison with downloaded
2961         stuff, not from status.
2962
2963         * connect.c (select_fd): Should compile on HPUX without warnings now.
2964
2965         * ftp.c (ftp_get_listing): Check whether ftp_loop_internal
2966         returned RETROK.
2967
2968 1996-11-04  Hrvoje Niksic  <hniksic@srce.hr>
2969
2970         * ftp.c (ftp_retrieve_glob): Print the pattern nicely.
2971         (getftp): Return FTPRETRINT on control connection error.
2972
2973         * html.c (htmlfindurl): Recognize <embed src=...> and
2974         <bgsound src=...>.
2975         (ftp_index): Handle username and password correctly.
2976
2977         * main.c (main): Made `-np' a synonim for --no-parent.
2978
2979 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
2980
2981         * ftp.c (ftp_loop): Check for opt.ftp_glob too before calling
2982         ftp_retrieve_glob.
2983
2984         * version.c: Changed version to 1.4.0-test2.
2985
2986 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
2987
2988         * version.c: Released 1.4.0-test1.
2989
2990         * url.c (str_url): Don't use sprintf when creating %2F-prefixed
2991         directory.
2992         (convert_links): Removed definition of make_backup.
2993
2994         * http.h: Removed definition of MAX_ERROR_LENGTH.
2995
2996         * host.c (ftp_getaddress): Check for "(none)" domains.
2997
2998         * ftp.c (ftp_retrieve_dirs): Docfix.
2999
3000         * http.c (gethttp): Use ou->referer instead of u->referer.
3001
3002         * retr.c (retrieve_url): Reset u to avoid freeing pointers twice;
3003         this was known to cause coredumps on Linux.
3004
3005         * html.c (ftp_index): Cast the argument to local_time to time_t *.
3006
3007 1996-11-01  Hrvoje Niksic  <hniksic@srce.hr>
3008
3009         * connect.c (select_fd): Use exceptfds -- once and for all.
3010
3011         * retr.c (retrieve_from_file): Free filename after
3012         recursive_retrieve.
3013         (retrieve_from_file): Send RFIRST_TIME to recursive_retrieve on
3014         first-time retrieval.
3015         (retrieve_from_file): Return uerr_t; new argument, count.
3016         (retrieve_from_file): Break on QUOTEXC.
3017
3018         * init.c (setquota): Fixed a bug that caused rejection of
3019         non-postfixed values..
3020
3021 1996-10-30  Hrvoje Niksic  <hniksic@srce.hr>
3022
3023         * version.c: Changed name to wget.
3024
3025         * connect.c (iread): Smarter use of select.
3026         (select_fd): Set errno on timeout.  If not timeout, return 1
3027         instead of 0.
3028
3029 1996-10-29  Hrvoje Niksic  <hniksic@srce.hr>
3030
3031         * ftp.c (ftp_loop_internal): Don't use con->cmd before
3032         establishing it.
3033
3034 1996-10-26  Hrvoje Niksic  <hniksic@srce.hr>
3035
3036         * http.c (gethttp): Send correct referer when using proxy.
3037         (gethttp): Use struct urlinfo ou to access the relevant data; send
3038         correct authorization in all cases.
3039
3040         * host.c (same_host): Use skip_uname to skip username and
3041         password.
3042
3043         * url.c (skip_uname): New function.
3044         (parseurl): Use it.
3045
3046         * host.c (same_host): Do not assume HTTP -- same_host should now
3047         be totally foolproof.
3048
3049         * url.c (skip_proto): New function.
3050         (parse_uname): Use it.
3051
3052         * http.c (gethttp): Create local user and passwd from what is
3053         given.
3054
3055         * url.c (parseurl): Check for HTTP username and password too.
3056
3057 1996-10-25  Hrvoje Niksic  <hniksic@srce.hr>
3058
3059         * config.h.in: Removed #define gethostbyname R...
3060
3061 1996-10-22  Hrvoje Niksic  <hniksic@srce.hr>
3062
3063         * version.c: Changed version to 1.4.0-test1.
3064
3065 1996-10-21  Hrvoje Niksic  <hniksic@srce.hr>
3066
3067         * version.c: "Released" 1.4b29.
3068
3069         * recur.c (recursive_retrieve): Check for no_parent.
3070
3071         * init.c (setval): Option update.
3072
3073         * main.c (main): New option no-parent.
3074
3075         * options.h (struct options): New variable no_parent.
3076
3077         * recur.c (recursive_retrieve): Only files are checked for
3078         opt.accepts and opt.rejects.
3079         (recursive_retrieve): Check directories for opt.excludes.
3080         (recursive_retrieve): Make the dir absolute when checking
3081         opt.excludes.
3082
3083         * html.c (htmlfindurl): Recognize <applet code=...> and <script
3084         src=...>
3085
3086 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
3087
3088         * ftp.c (getftp): Do not line-break assert entries at all.
3089         (ftp_retrieve_dirs): docfix.
3090
3091         * connect.c (select_fd): Use fd + 1 as nfds.
3092
3093         * version.c: Changed version to 1.4b29.
3094
3095 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
3096
3097         * version.c: "Released" 1.4b28.
3098
3099         * ftp.c (ftp_loop_internal): Check whether f->size == len and
3100         don't continue the loop if it is.
3101         (ftp_get_listing): Remove list_filename on unsuccesful loop.
3102
3103 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
3104
3105         * ftp.c (ftp_loop_internal): Use strcpy to initialize tmp.
3106         (getftp): Do not use multiline assert.
3107
3108         * http.c (hparsestatline): Use mjr and mnr instead of major and
3109         minor, which don't compile on Ultrix.
3110         (http_loop): Use strcpy() to initialize tmp.
3111
3112         * all: Geturl -> Fetch
3113
3114 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
3115
3116         * recur.c (parse_robots): Fixed an off-by-one bug when looking for
3117         ':'.
3118
3119         * html.c (htmlfindurl): Fixed several possible off-by-one bugs by
3120         moving `bufsize &&' to the beginning of each check in for-loops.
3121
3122         * recur.c (parse_robots): Close fp on exit.
3123
3124         * url.c (mymkdir): Check for each directory before creating.
3125
3126 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
3127
3128         * version.c: Changed version to 1.4b28.
3129
3130 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
3131
3132         * version.c: "Released" 1.4b27.
3133
3134         * init.c (parse_line): Use isspace.
3135         (parse_line): Free *com on all errors.
3136
3137         * ftp.c (ftp_loop): Change FTPOK to RETROK before exiting.
3138         (delelement): Use next instead of f->next and prev instead of
3139         f->prev.
3140         (delelement): Free the members of the deleted element.
3141
3142         * http.c (http_loop): Do not return RETROK on code != 20x.
3143
3144         * init.c (cleanup): Free opt.user_header.
3145         (cleanup): Free opt.domains.
3146
3147         * url.c (freelists): Moved to cleanup().
3148
3149         * http.c (hparsestatline): Docfix.
3150
3151         * main.c (main): Return with error status on unsuccesful
3152         retrieval.
3153
3154         * init.c (setval): Do not remove listing when mirroring.
3155
3156         * url.c (url_filename): Use opt.fileprefix.
3157
3158         * ftp.c (ftp_get_listing): Use url_filename to get filename for
3159         .listing.
3160
3161         * main.c (main): New option: -rn.
3162
3163 1996-10-15  Hrvoje Niksic  <hniksic@srce.hr>
3164
3165         * Makefile.in (RM): Added RM = rm -f.
3166
3167         * host.c (clean_hosts): New function.
3168         (free_hlist): Just free the list, no reset.
3169
3170         * version.c: Changed version to 1.4b27.
3171
3172 1996-10-13  Hrvoje Niksic  <hniksic@srce.hr>
3173
3174         * version.c: "Released" 1.4b26.
3175
3176         * retr.c (retrieve_from_file): If call get_urls_html with
3177         opt.spider to make it silent in spider mode.
3178
3179         * url.c (str_url): Use CLEANDUP instead of URL_CLEANSE.
3180
3181         * url.h (CLEANDUP): New macro.
3182
3183         * http.c (gethttp): Fixed a bug that freed location only when it
3184         was NULL.
3185
3186         * retr.c (retrieve_url): Free url if it will not be stored,
3187         i.e. newloc is NULL.
3188
3189         * html.c (htmlfindurl): Handle exiting from quotes correctly; the
3190         old version would bug out on <a href="x#a"href="y">.
3191
3192         * html.h (state_t): New member in_quote.
3193
3194         * html.c (htmlfindurl): Free s->attr at the beginning of
3195         attr-loop.
3196
3197         * recur.c (recursive_retrieve): Recognize RCLEANUP.
3198         (tried_robots): Make hosts a global variable.
3199         (recursive_retrieve): Free constr after URL host optimization.
3200         (tried_robots): Free urlinfo before exiting.
3201
3202         * utils.c (free_slist): New function.
3203
3204         * recur.c (recursive_retrieve): Use flags to add cleanup
3205         possibility.
3206
3207         * main.c (main): Free filename after recursive_retrieve.
3208
3209         * http.c (gethttp): Store successful responses too.
3210
3211 1996-10-12  Hrvoje Niksic  <hniksic@srce.hr>
3212
3213         * all: Constified the whole source.  This required some minor
3214         changes in many functions in url.c, possibly introducing bugs -- I
3215         hope not.
3216
3217         * ftp-basic.c: Removed last_respline.
3218
3219         * http.c (gethttp): Free type.
3220
3221         * host.c (same_host): Free real1 and real2.
3222
3223         * main.c (main): New option --spider.
3224
3225         * retr.c (get_contents): Don't reset errno.
3226
3227         * main.c (main): Sorted the options.
3228
3229         * connect.c (iread): Set errno to ETIMEDOUT only if it was left
3230         uninitialized by select().
3231
3232         * http.c (http_loop): Print the time when the connection is
3233         closed.
3234         (gethttp): Debug-print the HTTP request.
3235
3236 1996-10-11  Hrvoje Niksic  <hniksic@srce.hr>
3237
3238         * connect.c (iread): Do not try reading after timeout.
3239
3240         * main.c (main): Would bug out on -T.
3241
3242         * connect.c (select_fd): Do not use exceptfds.
3243         (iread): Set ETIMEDOUT on select_fd <= 0.
3244
3245         * version.c: Changed version to 1.4b26.
3246
3247 1996-10-10  Hrvoje Niksic  <hniksic@srce.hr>
3248
3249         * version.c: "Released" 1.4b25.
3250
3251         * ftp-unix.c (ftp_parse_unix_ls): Ignore lines without file name
3252         or link name.
3253
3254         * http.c (gethttp): Add errcode to struct hstat.
3255         (http_loop): Use it.
3256
3257         * url.c (no_proxy_match): Simplify using char** for no_proxy.
3258
3259         * options.h (struct options): Make opt.no_proxy a vector.
3260
3261         * utils.c (sepstring): Use !*s instead of !strlen(s).
3262
3263         * init.c (setval): Set opt.maxreclevel to 0 on --mirror.
3264         (getperms): Use ISODIGIT instead of isdigit.
3265
3266         * ftp.c (getftp): Print time.
3267
3268         * main.c (main): Use legible output of downloaded quantity.
3269
3270         * ftp.c (getftp): Use elapsed_time().
3271         (ftp_loop_internal): Use rate().
3272
3273         * http.c (http_loop): Add download ratio output; Use rate().
3274
3275         * utils.c (rate): New function.
3276
3277 1996-10-09  Hrvoje Niksic  <hniksic@srce.hr>
3278
3279         * http.c (http_loop): Use timer.
3280
3281         * ftp.c: Split to ftp-basic.c and ftp.c
3282
3283         * utils.c (reset_timer): New function.
3284         (elapsed_time): New function.
3285
3286         * retr.c (show_progress): Make bytes_in_line and offs long; should
3287         work on 16-bit machines.
3288
3289 1996-10-08  Hrvoje Niksic  <hniksic@srce.hr>
3290
3291         * url.c (in_acclist): New argument backward.
3292
3293         * ftp.c (ftp_retrieve_glob): Use acceptable() to determine whether
3294         a file should be retrieved according to suffix.
3295         (ftp_get_listing): Check the return value of unlink; Do not call
3296         ftp_retrieve_dirs if depth reached maxreclevel.
3297         (ftp_retrieve_dirs): Check whether the directory is in
3298         exclude-list.
3299
3300         * main.c (main): Print the version number at the beginning of
3301         DEBUG output.
3302         (main): Use strrchr when creating exec_name.
3303
3304         * ftp.c (ftp_retrieve_glob): Do not close control connection.
3305
3306         * version.c: Changed version to 1.4b25.
3307
3308 1996-10-07  Hrvoje Niksic  <hniksic@srce.hr>
3309
3310         * version.c: "Released" 1.4b24.
3311
3312         * Makefile.in: Rewrite.
3313
3314         * ftp.c (ftp_loop_internal): Likewise.
3315
3316         * retr.c (time_str): Check for failed time().
3317
3318         * html.c (htmlfindurl): Recognize <fig src> and <overlay src> from
3319         HTML3.0.
3320
3321         * retr.c (time_str): Return time_t *.
3322
3323         * connect.c (bindport): Close msock on unsuccesful bind.
3324         (bindport): The same for getsockname and listen.
3325
3326         * retr.c (retrieve_url): Allow any number of retries on
3327         proxy.
3328
3329         * http.c (gethttp): Do not treat errno == 0 as timeout.
3330         (http_loop): Likewise.
3331         (http_loop): Cosmetic changes.
3332
3333         * connect.c (iread): Set errno to ETIMEDOUT in case of timeout.
3334
3335         * retr.c (get_contents): Reset errno.
3336
3337         * ftp.c (getftp): Minor fixes.
3338
3339 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
3340
3341         * http.c: Do not use backups.
3342
3343         * geturl.1 (WARNING): Warn that man-page could be obsolete.
3344
3345         * getopt.c (getopt_long): Moved to getopt.c
3346
3347         * geturl.texi: Enhanced.
3348
3349         * main.c (main): Use it.
3350
3351         * recur.c (convert_all_links): New function.
3352
3353         * utils.c (add_slist): New argument flags.
3354
3355         * recur.c (recursive_retrieve): Update a list of downloaded URLs.
3356         (parse_robots): Do not chuck out empty value fields.
3357         (parse_robots): Make yourself welcome on empty Disallow.
3358
3359         * version.c: Changed version to 1.4b24.
3360
3361 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
3362
3363         * version.c: "Released" 1.4b23.
3364
3365         * ftp.c (ftp_loop_internal): Get the time after getftp.
3366
3367         * Makefile.in (install.info): New target.
3368         (install): Use it.
3369
3370         * http.c (http_loop): Fix output when doing -O.
3371
3372 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
3373
3374         * geturl.texi: New file.
3375
3376         * main.c (main): Do not print the warnings and download summary if
3377         opt.quiet is set.
3378
3379         * version.c: Changed version to 1.4b23.
3380
3381 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
3382
3383         * "Released" 1.4b22.
3384
3385         * atotm.c (atotm): Use True and False instead of TRUE and FALSE,
3386         to avoid redefinition warnings.
3387
3388         * host.c (store_hostaddress): Use memcpy() to copy the address
3389         returned by inet_addr.
3390
3391         * version.c: Changed version to 1.4b22.
3392
3393 1996-10-04  Hrvoje Niksic  <hniksic@srce.hr>
3394
3395         * version.c: "Released" 1.4b21.
3396
3397         * ftp-unix.c (ftp_parse_ls): Renamed to ftp_parse_unix_ls.
3398
3399         * ftp.c (ftp_port): Use conaddr.
3400         (getftp): Print the file length.
3401         (ftp_retrieve_list): Check the stamps of plain files only.
3402
3403         * connect.c (closeport): Do not call shutdown().
3404         (conaddr): New function.
3405
3406         * html.c (ftp_index): Made it dfp-aware.
3407
3408         * init.c (cleanup): New name of freemem. Close opt.dfp.
3409
3410         * ftp.c (getftp): Use opt.dfp if it is set.
3411
3412         * ftp-unix.c (ftp_parse_ls): Recognize time in h:mm format.
3413
3414         * ftp.c (ftp_retrieve_dirs): Fixed a bug that caused incorrect
3415         CWDs to be sent with recursive FTP retrievals.
3416
3417 1996-10-03  Hrvoje Niksic  <hniksic@srce.hr>
3418
3419         * recur.c (parse_robots): Made it more compliant with "official"
3420         specifications.
3421
3422         * http.c: New function.
3423
3424         * ftp-unix.c (ftp_parse_ls): Added better debug output.
3425
3426         * ftp.c (getftp): Print out the LIST in case of
3427         opt.print_server_response.
3428
3429         * version.c: Changed version to 1.4b21.
3430
3431 1996-10-01  Hrvoje Niksic  <hniksic@srce.hr>
3432
3433         * version.c: "Released" 1.4b20.
3434
3435         * README: Update.
3436
3437         * http.c (gethttp): Preset lengths of various headers instead of
3438         calculating them dynamically.
3439         (gethttp): Check for 206 partial contents.
3440
3441 1996-09-30  Hrvoje Niksic  <hniksic@srce.hr>
3442
3443         * configure.in: Set SYSTEM_GETURLRC to $libdir/geturlrc
3444
3445         * http.c (gethttp): Send the port number in the Host: header.
3446
3447 1996-09-29  Hrvoje Niksic  <hniksic@srce.hr>
3448
3449         * http.c (gethttp): Send host: header.
3450         (gethttp): Add the possibility of user-defined headers.
3451         (gethttp): Move decision about pragma: no-cache to http_loop,
3452         where it belongs.
3453         (gethttp): Pass a struct instead of enormous argument list.
3454         (http_loop): Use a new, fancier display format.
3455         (ftp_loop): Likewise.
3456
3457         * main.c: (hangup): Turn off buffering of the new log file.
3458
3459         * install-sh: Likewise.
3460
3461         * config.sub: Replace with the one in autoconf-2.10
3462
3463         * geturl.1: Update.
3464
3465         * init.c: New options httpuser and httppasswd.
3466
3467         * http.c: (base64_encode_line): New function.
3468         (gethttp): Send authentication.
3469
3470         * connect.c (make_connection): Use store_hostaddress.
3471
3472 1996-09-28  Hrvoje Niksic  <hniksic@srce.hr>
3473
3474         * host.c (store_hostaddress): New function.
3475
3476         * NEWS: Update.
3477
3478         * http.c (hgetrange): New function.
3479         (gethttp): Use ranges.
3480
3481         * utils.c (numdigit): Accept long instead of int.
3482
3483         * http.c (http_loop): Add restart capabilities.
3484
3485         * ftp.c (ftp_retrieve_glob): Fixed a bug that could cause matchres
3486         being used uninitialized.
3487         (ftp_retrieve_list): Similar fix.
3488
3489         * host.c (add_hlist): Fixed a bug that could cause cmp being used
3490         uninitialized.
3491
3492         * url.c (construct_relative): New function.
3493
3494         * recur.c (recursive_retrieve): Use it.
3495
3496         * retr.c (convert_links): New function.
3497
3498 1996-09-27  Hrvoje Niksic  <hniksic@srce.hr>
3499
3500         * url.c (free_urlpos): New function.
3501
3502         * recur.c (recursive_retrieve): Adapt.
3503
3504         * url.c (get_urls_html): Return a linked list instead of a vector.
3505
3506         * url.c (get_urls_file): Return a linked list instead of a vector.
3507
3508         * geturl.1: Update.
3509
3510         * http.c (gethttp): Implement it.
3511
3512         * init.c (setval): New option: SAVEHEADERS
3513
3514         * ftp.c (ftp_loop_internal): Do not set restval if listing is to
3515         be retrieved. Lack of this test caused bugs when the connection
3516         was lost during listing.
3517
3518         * retr.c (retrieve_url): Fixed a bug that caused
3519         coredumps. *newloc is now reset by default.
3520         (retrieve_url): Lift the twenty-tries limit on proxies.
3521
3522         * version.c: Changed version to 1.4b20.
3523
3524 1996-09-20  Hrvoje Niksic  <hniksic@srce.hr>
3525
3526         * version.c: "Released" 1.4b19.
3527
3528 1996-09-19  Hrvoje Niksic  <hniksic@srce.hr>
3529
3530         * ftp.c (ftp_loop_internal): Renamed from ftp_1fl_loop.
3531         (getftp): Changed prototype to accept ccon *.
3532
3533 1996-09-17  Hrvoje Niksic  <hniksic@srce.hr>
3534
3535         * ftp.c (ftp_retrieve_list): Fixed a bug that caused setting
3536         incorrect values to files pointed to by symbolic links.
3537         (ftp_1fl_loop): Do not count listings among the downloaded URL-s.
3538
3539 1996-09-16  Hrvoje Niksic  <hniksic@srce.hr>
3540
3541         * url.c (mkstruct): Do not prepend "./" in front of a pathname.
3542
3543         * main.c (main): New option: --user-agent.
3544
3545         * geturl.1: Ditto.
3546
3547         * init.h: Ditto.
3548
3549         * init.c (setval): Ditto.
3550
3551         * main.c (main): Rename "server-headers" to "server-response".
3552
3553         * ftp-unix.c (ftp_parse_ls): Check for asterisks at the end of
3554         executables in 'ls -F' listings.
3555
3556 1996-09-15  Hrvoje Niksic  <hniksic@srce.hr>
3557
3558         * url.c (parseurl): Remove realloc() and sprintf().
3559         (str_url): Get rid of sprintf().
3560
3561         * recur.c (recursive_retrieve): Enable FTP recursion through proxy
3562         servers.
3563
3564         * url.h (URL_CLEANSE): Made it else-resistant.
3565         (USE_PROXY): New macro.
3566
3567 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
3568
3569         * NEWS: Update.
3570
3571         * version.c: Changed version to 1.4b19.
3572
3573 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
3574
3575         * version.c: "Released" 1.4b18.
3576
3577         * url.c: Made it reallocate space exponentially.
3578
3579 1996-09-14  Drazen Kacar  <dave@fly.cc.fer.hr>
3580
3581         * html.c (htmlfindurl): Added <frame src> and <iframe src> among
3582         the list of stuff to fetch.
3583
3584 1996-09-13  Hrvoje Niksic  <hniksic@srce.hr>
3585
3586         * url.c (get_urls_html): Fixed a bug that caused SIGSEGV's with
3587         -Fi.
3588
3589         * html.c (htmlfindurl): Rewrite.
3590
3591         * http.c (gethttp): Use opt.proxy_cache.
3592
3593         * main.c (main): Added --cache option.
3594
3595         * ftp.c (ftp_response): Print server response if opt.print_server
3596         response is set.
3597         (getftp): Print newlines after each request if the server response
3598         is to be printed.
3599         (ftp_response): Copy the last response line to last_respline.
3600
3601         * http.c (gethttp): Add Pragma: nocache for retried
3602         proxy-retrievals.
3603
3604         * ftp.c (getftp): Use it.
3605
3606         * retr.c (buf_discard): New function.
3607
3608         * ftp.c (ftp_response): Use buf_readchar().
3609         (getftp): Flush the control connection buffer before calling
3610         get_contents().
3611
3612         * retr.c (buf_readchar): New function.
3613         (buf_flush): New function.
3614         (get_contents): Use buf_readchar() instead of read(x, x, 1).
3615         (get_contents): Use buf_flush.
3616
3617 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
3618
3619         * ftp.c: Incorporate changes to ftp_response.
3620
3621         * ftp.c (ftp_response): Allocate the server response dynamically,
3622         as in read_whole_line and fetch_next_header.
3623
3624         * utils.c (read_whole_line): Fixed a bug that prevented reading
3625         the last line if it is not \n-terminated. Also fixed a possible
3626         memory overflow.
3627
3628         * http.c (fetch_next_header): Return malloc-ed string as large as
3629         needed.
3630         (gethttp): Use new fetch_next_header.
3631
3632 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
3633
3634         * http.c (hgetlen): Compute the header length the first time only.
3635         (hgettype): Ditto.
3636         (hgetlocation): Ditto.
3637         (hgetmodified): Ditto.
3638
3639 1996-09-11  Hrvoje Niksic  <hniksic@srce.hr>
3640
3641         * sample.geturlrc: Update.
3642
3643 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
3644
3645         * http.c (http_loop): Ditto.
3646
3647         * ftp.c (getftp): Open the output file as binary.
3648
3649         * version.c: Changed version to 1.4b18.
3650
3651 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
3652
3653         * version.c: "Released" 1.4b17.
3654
3655         * ftp-unix.c (ftp_parse_ls): If unable to open file, return NULL
3656         instead of failed assertion.
3657
3658 1996-09-09  Hrvoje Niksic  <hniksic@srce.hr>
3659
3660         * ftp.c (ftp_get_listing): Add a numbered suffix to LIST_FILENAME
3661         if a file of that name already exists.
3662
3663 1996-09-05  Hrvoje Niksic  <hniksic@srce.hr>
3664
3665         * ftp.c (ftp_1fl_loop): Handler FTPPORTERR and FOPENERR correctly.
3666
3667         * config.h.in: Define gethostbyname as Rgethostbyname when using
3668         Socks.
3669
3670         * configure.in: Check for -lresolv if using Socks.
3671
3672         * version.c: Changed version to 1.4b17.
3673
3674 1996-07-15  Hrvoje Niksic  <hniksic@srce.hr>
3675
3676         * version.c: "Released" 1.4b16.
3677
3678         * http.c (gethttp): More intelligent check for first line of HTTP
3679         response.
3680         (gethttp): Would bug out on time-stamping.
3681
3682         * version.c: Changed version to 1.4b16.
3683
3684 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
3685
3686         * version.c: Released 1.4b15.
3687
3688         * http.c (http_loop): Print \n after the loop entry, not before.
3689
3690         * url.c (url_filename): Use ISDOT.
3691
3692         * url.h (ISDOT): New macro.
3693
3694         * recur.c (recursive_retrieve): Change only opt.recursive for
3695         following FTP.
3696
3697 1996-07-11  Antonio Rosella <antonio.rosella@agip.it>
3698
3699         * socks/geturl.cgi: Fixed version No.
3700
3701         * socks/download-netscape.html: Ditto.
3702
3703         * socks/download.html: Changed socks.html to download.html.
3704
3705 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
3706
3707         * url.c (url_filename): Check for opt.dirstruct instead for
3708         opt.recursive && opt.dirstruct.
3709
3710         * init.c (defaults): Ditto.
3711         (defaults): Reset dirstruct by default.
3712         (setval): Set opt.dirstruct whenever setting recursive.
3713
3714         * init.h: Removed FORCEDIRHIER.
3715
3716         * INSTALL: Added -L to socks-description.
3717
3718         * version.c: Changed version to 1.4b15.
3719
3720 1996-07-10  Hrvoje Niksic  <hniksic@srce.hr>
3721
3722         * version.c: "Released" 1.4b14.
3723
3724         * geturl.1: Update AUTHOR to include Rosella as contributor.
3725
3726         * NEWS: Update.
3727
3728         * socks/geturl.cgi: Simplified command creation, nuked <blink>.
3729
3730         * socks/geturl.cgi: Wrap nutscape extensions within if $netscape.
3731         (cal_time): Fix == to eq.
3732
3733         * socks/geturl.cgi: GPL-ized with permission of A. Rosella.
3734
3735         * geturl.1 (hostname): Moved URL CONVENTIONS to the beginning.
3736
3737         * Makefile.in: Use @VERSION@.
3738
3739         * configure.in: Check version from version.c.
3740
3741         * socks/geturl.cgi: Changed /pub/bin/perl to /usr/bin/perl.
3742
3743         * socks/download.html: Created from download-netscape.html, made
3744         HTML-2.0 compliant.
3745
3746         * recur.c (recursive_retrieve): Set opt.force_dir_hier when
3747         following FTP links from recursions.
3748
3749 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
3750
3751         * url.c (mymkdir): Fixed a bug that prevented mymkdir() to create
3752         absolute directories correctly.
3753
3754         * version.c: Changed version to 1.4b14.
3755
3756 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
3757
3758         * version.c: "Released" 1.4b13.
3759
3760         * url.c (make_backup): New function.
3761
3762         * http.c (http_loop): Make a backup copy of the local file (using
3763         rename(2)) before opening it.
3764
3765         * main.c (main): Added --backups.
3766
3767         * host.c (ftp_getaddress): Bail out on failed mycuserid().
3768         (ftp_getaddress): Check for leading dot on MY_DOMAIN.
3769         (ftp_getaddress): Check for empty, null or (null) domain.
3770
3771         * url.c (get_urls_html): If this_url is NULL, the base must have a
3772         protocol.
3773         (parseurl): Use has_proto.
3774
3775         * retr.c (retrieve_url): Warn when proxy is used with more than 20
3776         retries.
3777
3778         * url.c (mkstruct): Create the directory (calling mymkdir()) only
3779         if it is not already there.
3780         (has_proto): New function.
3781         (get_urls_html): Eliminate the remaining call to findurl -- use
3782         has_proto.
3783
3784         * geturl.1: Ditto.
3785
3786         * main.c: Change -X to -x.
3787
3788         * url.c (url_filename): Simplify creation of filename if
3789         prefix_files is set.
3790         (url_filename): Simplify everything. And I do mean *everything*.
3791         (mkstruct): Add dir_prefix before hostname.
3792         (path_simplify): Fixed a bug that caused writing outside the path
3793         string in case of "." and ".." path strings.
3794
3795 1996-07-06  Hrvoje Niksic  <hniksic@srce.hr>
3796
3797         * init.c: Added --mirror.
3798
3799         * main.c (main): Added -X to force saving of directory hierarchy.
3800
3801         * ftp.c (ftp_retrieve_list): Added recursion depth counter.
3802         (ftp_retrieve_list): Check whether quota is exceeded.
3803
3804         * url.c (get_urls_html): Skip leading blanks for absolute URIs.
3805
3806         * http.c (gethttp): Use referer if present.
3807
3808         * recur.c (recursive_retrieve): Set u->referer before calling
3809         retrieve_url.
3810
3811         * url.c (newurl): Use memset to nullify the struct members.
3812         (freeurl): Free the referer field too.
3813
3814         * url.h: Added referer to urlinfo.
3815
3816         * geturl.1: Updated the manual to document some of the new features.
3817
3818         * utils.c (numdigit): Moved from url.c.
3819
3820         * README: Rewritten.
3821
3822         * config.h.in: Add the support for socks.
3823
3824         * configure.in: Add the support for socks.
3825
3826         * url.c (url_filename): If the dir_prefix is ".", work with just
3827         the file name.
3828         (url_filename): Do not look for .n extensions if timestamping if
3829         turned on.
3830
3831         * retr.c (show_progress): Skip the over-abundant restval data, and
3832         print the rest of it with ',' instead of '.'.
3833
3834 1996-07-05  Hrvoje Niksic  <hniksic@srce.hr>
3835
3836         * retr.c (show_progress): Changed second arg. to long (as it
3837         should be).
3838         (show_progress): Moved to retr.c.
3839         (get_contents): Moved to retr.c.
3840
3841         * version.c: Change version to 1.4b13.
3842
3843 1996-07-05  Hrvoje Lacko <hlacko@fly.cc.fer.hr>
3844
3845         * url.c (in_acclist): Would return after the first suffix.
3846
3847 1996-07-04  Hrvoje Niksic  <hniksic@srce.hr>
3848
3849         * version.c: "Released" 1.4b12.
3850
3851         * url.c (path_simplify): More kludgifications.
3852         (get_urls_html): Use new parameters for htmlfindurl.
3853
3854         * html.c: Removed memorizing "parser states", since the new
3855         organization does not require them.
3856
3857         * init.c (run_geturlrc): Use read_whole_line.
3858
3859         * ftp-unix.c (ftp_parse_ls): Use read_whole_line.
3860
3861         * recur.c (parse_robots): Use read_whole_line.
3862
3863         * utils.c (read_whole_line): New function.
3864
3865         * recur.c (tried_robots): Use add_slist/in_slist, *much* cleaner.
3866
3867         * host.c (ngethostbyname): Call inet_addr just once. Yet to be
3868         tested on OSF and Ultrix.
3869         (add_hlist): New function.
3870         (free_hlist): New function.
3871         (search_host): New function.
3872         (search_address): New function.
3873         (realhost): Use search_host, search_address and add_hlist.
3874         (same_host): Replaced realloc() with strdupdelim(), made
3875         case-insensitive, fixed a memory leak.
3876
3877         * html.c (ftp_index): Fixed tm_min and tm_sec to be tm_hour and
3878         tm_min, like intended.
3879
3880         * version.c: Change user agent information to
3881         Geturl/version.
3882
3883 1996-07-03  Hrvoje Niksic  <hniksic@srce.hr>
3884
3885         * utils.c: Renamed nmalloc.c to utils.c, .h likewise.
3886
3887         * url.c (acceptable): Always accept directories.
3888
3889         * ftp-unix.c (ftp_parse_ls): Support brain-damaged "ls -F"-loving
3890         servers by stripping trailing @ from symlinks and trailing / from
3891         directories.
3892
3893         * ftp.c (ftp_loop): Debugged the "enhanced" heuristics. :-)
3894
3895         * url.c (skip_url): Use toupper instead of UCASE.
3896
3897         * host.c (sufmatch): Made it case-insensitive.
3898
3899         * url.c (match_backwards_or_pattern): Fixed i == -1 to j == -1.
3900         (match_backwards): New function, instead of
3901         match_backwards_or_pattern.
3902
3903         * recur.c (recursive_retrieve): Increased performance by
3904         introducing inl, which reduces number of calls to in_slist to only
3905         one.
3906
3907         * ftp.c (ftp_loop): Enhanced the heuristics that decides which
3908         routine to use.
3909
3910         * main.c (printhelp): Removed the warranty stuff.
3911
3912 1996-07-02  Hrvoje Niksic  <hniksic@srce.hr>
3913
3914         * url.c (add_slist): Simplify.
3915         (match_backwards_or_pattern): New function.
3916         (in_acclist): Use match_backwards_or_pattern.
3917         (matches): Remove.
3918
3919 1996-06-30  Hrvoje Niksic  <hniksic@srce.hr>
3920
3921         * ftp.c (ftp_loop): Call ftp_index on empty file names, if not
3922         recursive.
3923
3924         * html.c (ftp_index): Fixed to work. Beautified the output.
3925
3926         * ftp.c (ftp_retrieve_glob): Another argument to control whether
3927         globbing is to be used.
3928         (ftp_retrieve_list): Compare the time-stamps of local and remote
3929         files to determine whether to download.
3930
3931 1996-06-29  Hrvoje Niksic  <hniksic@srce.hr>
3932
3933         * ftp.c (rel_constr): New function.
3934
3935         * retr.c (retrieve_from_file): Check for text/html before
3936         retrieving recursively.
3937
3938         * main.c (main): Check whether the file is HTML before going into
3939         recursive HTML retrieving.
3940
3941         * ftp.c (ftp_retrieve_list): Manage directories.
3942         (ftp_retrieve_glob): Pass all the file-types to ftp_retrieve_list.
3943         (ftp_1fl_loop): Fixed a bug that caused con->com to be incorrectly
3944         initialized, causing bugchecks in getftp to fail.
3945
3946         * configure.in: Check for symlink.
3947
3948         * ftp.c (ftp_retrieve_list): Added support for symlinks.
3949
3950         * version.c: "Released" 1.4b10.
3951
3952         * atotm.c (atotm): Redeclared as time_t.
3953
3954         * init.c: New variable "timestamping".
3955
3956         * main.c (main): New option 'N'.
3957
3958         * http.c (hgetlocation): Case-insensitive match.
3959         (hgetmodified): New function.
3960         (http_loop): Implement time-stamping.
3961
3962 1996-06-28  Hrvoje Niksic  <hniksic@srce.hr>
3963
3964         * version.c: Changed version to 1.4b10
3965
3966         * atotm.c: New file, from phttpd.
3967
3968         * options.h (struct options): New parameter timestamping.
3969
3970         * version.c: 1.4b9 "released".
3971
3972         * recur.c (recursive_retrieve): Used linked list (ulist) for
3973         faster storing of URLs.
3974
3975         * url.c (get_urls_html): Removed the old kludge with comparing the
3976         outputs of htmlfindurl and findurl.
3977         (get_urls_html): Added better protocol support here.
3978         (create_hash): Removed, as well as add_hash and in_hash.
3979         (addslist): New function.
3980         (in_slist): ditto
3981
3982         * version.c: Released 1.4b8, changed version to b9.
3983
3984 1996-06-27  Hrvoje Niksic  <hniksic@srce.hr>
3985
3986         * ftp.c (freefileinfo): New function.
3987         (delelement): New function.
3988
3989         * everywhere: GPL!
3990
3991         * ftp.c (ftp_loop): Use ccon.
3992         (ftp_retrieve_glob): Likewise.
3993
3994         * ftp.h: Define ccon, to define status of control connection.
3995
3996         * ftp.c (ftp_get_listing): New function.
3997         (ftp_retrieve_more): New function.
3998         (ftp_retrieve_glob): New function.
3999
4000 1996-06-25  Hrvoje Niksic  <hniksic@srce.hr>
4001
4002         * configure.in: Removed the search for cuserid().
4003
4004         * init.c (getmode): Renamed to getperms.
4005
4006 1996-06-24  Hrvoje Niksic  <hniksic@srce.hr>
4007
4008         * version.c: New version.
4009
4010         * main.c (hangup): New function, that handles hangup. Hangup
4011         signal now causes geturl to stop writing on stdout, and to write
4012         to a log file.
4013
4014         * ftp.c (getftp): "Released" 1.4b7.
4015
4016         * html.c (htmlfindurl): Ignore everything inside <head>...</head>.
4017         (ftp_index): Use fileinfo/urlinfo.
4018
4019         * ftp-unix.c (ftp_parse_ls): New function.
4020         (symperms): New function.
4021
4022         * ftp.c (ftp_1fl_loop): New function, to handle 1-file loops.
4023
4024         * retr.c (retrieve_url): Added FTP support.
4025
4026 1996-06-23  Hrvoje Niksic  <hniksic@srce.hr>
4027
4028         * geturl.h: Removed NOTFTP2HTML enum.
4029         Added DO_LOGIN, DO_CWD and DO_LIST. LIST_ONLY is obsolete.
4030
4031         * ftp.c (getftp): Resynched with urlinfo.
4032         (getftp): Removed HMTL-ization of index.html from getftp.
4033
4034         * version.c: 1.4b6 "released".
4035
4036         * options.h (options): New struct, to keep options in.
4037
4038         * http.c (http_loop,gethttp): Synched with proxy.
4039
4040         * retr.c (retrieve_url): Implemented proxy retrieval.
4041
4042         * main.c (main): Use retrieve_from_file.
4043
4044 1996-06-22  Hrvoje Niksic  <hniksic@srce.hr>
4045
4046         * retr.c (retrieve_from_file): New function.
4047
4048         * url.c (parseurl): Modified to return URLOK if all OK. Protocol
4049         can be found in u->proto.
4050
4051         * ftp.c (ftp_response): Fixed to accept multi-line responses as
4052         per RFC 959.
4053
4054         * recr.c (recursive_retrieve): Take newloc from retrieve_url.
4055
4056         * url.c (mymkdir): Removed the file of the same name, if one
4057         exists.
4058         (isfile): New function.
4059         (mkstruct): Fixed the '/' glitches.
4060         (path_simplify): Hacked to treat something/.. correctly.
4061
4062 1996-06-21  Hrvoje Niksic  <hniksic@srce.hr>
4063
4064         * http.c (gethttp): Close the socket after error in headers.
4065         (http_loop): HEOF no longer a fatal header.
4066
4067         * loop.c (retrieve_url): When dt is NULL, do not modify it. This
4068         simplifies the syntax of calling retrieve_url.
4069
4070         * recr.c (recursive_retrieve): Modified to use get_urls_html.
4071
4072         * url.c (get_urls_file): New function.
4073         (get_urls_html): New function.
4074
4075         * recr.c (recursive_retrieve): Patched up to conform to the
4076         standards.
4077
4078         * http.c (gethttp): Synched with the rest...
4079         (gethttp): Treat only CONREFUSED specially, with connection
4080         errors.
4081
4082         * init.c,geturl.1,http.c (http_loop): Removed kill_error.
4083
4084 1996-06-20  Hrvoje Niksic  <hniksic@srce.hr>
4085
4086         * http.c (http_loop): New function.
4087
4088         * loop.c: Removed *lots* of stuff from retrieve_url.
4089
4090         * url.c (parseurl): Changed to work with urlinfo. Integrated
4091         username finding and path parsing.
4092         (newurl): New function.
4093         (freeurl): New function.
4094         (mkstruct): Removed the old bogosities, made it urlinfo-compliant.
4095         (url_filename): Likewise.
4096         (path_simplify): Accept relative paths too.
4097         (opt_url): Made urlinfo-compliant, removed bogosities.
4098         (path_simplify): Expanded to accept relative paths.
4099         (str_url): A replacement for hide_url
4100         (decode_string): Fixed a bug that caused malfunctioning when
4101         encountering an illegal %.. combination.
4102         (opt_url): Removed the argument. Dot-optimizations are now default.
4103
4104         * nmalloc.c (strdupdelim): New function.
4105
4106         * url.h: Added the urlinfo structure
4107
4108 1996-06-19  Hrvoje Niksic  <hniksic@srce.hr>
4109
4110         * url.c (hide_url): Thrown out the protocol assertion. Do not
4111         change the URL if the protocol if not recognized.
4112         (findurl): Put continue instead of break.
4113
4114 1996-06-18  Hrvoje Niksic  <hniksic@srce.hr>
4115
4116         * sample.geturlrc: Changed the defaults to be commented out and
4117         harmless (previous defaults caused pains if copied to
4118         ~/.geturlrc).
4119
4120         * http.c (gethttp): Print the HTTP request in debug mode.
4121
4122         * connect.c (iread): Added EINTR check loop to select-ing
4123         too. EINTR is now correctly handled with select().
4124
4125         * TODO: new file
4126
4127 1996-05-07  Hrvoje Niksic  <hniksic@srce.hr>
4128
4129         * host.c (same_host): Made the function a little bit more
4130         intelligent regarding diversified URL syntaxes.
4131
4132         * url.c (skip_url): Spaces are now skipped after URL:
4133
4134         * Released 1.3.1 with the patch to prevent crashing when sending
4135         NULL to robot* functions and the patch to compile "out of the box"
4136         on AIX.
4137
4138         * recr.c (recursive_retrieve): Added checking whether this_url is
4139         NULL when calling the robot functions.
4140
4141         * ChangeLog: New file.