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