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