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