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