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