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