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