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