]> sjero.net Git - wget/blob - src/ChangeLog
0d54e9861f8fed3cde3ce9702b56c5bfdcdcd01c
[wget] / src / ChangeLog
1 2005-08-09  Vasil Dimov  <vd@datamax.bg>
2
3         * ftp.c (getftp): Don't free RESPLINE if ftp_response returns a
4         status other than FTPOK.
5
6 2005-08-04  Giuseppe Bonacci  <g.bonacci@libero.it>
7
8         * ftp-ls.c (ftp_parse_unix_ls): Remember the position of the
9         previous token instead of backtracking back to it.
10
11 2005-07-08  Gisle Vanem  <giva@bgnett.no>
12
13         * mswindows.h: Include process.h to get getpid() declaration.
14
15 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
16
17         * utils.c (aprintf): Use vasprintf where available.
18
19 2005-07-08  Hrvoje Niksic  <hniksic@xemacs.org>
20
21         * url.c (rewrite_shorthand_url): Simplify code using aprintf and
22         strspn.
23
24 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
25
26         * gnutls.c (ssl_check_certificate): Check for the validity of the
27         presented X509 certificate.
28
29 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
30
31         * openssl.c (ssl_check_certificate): Print custom error messages
32         for frequent X509 certificate problems.
33
34 2005-07-07  Hrvoje Niksic  <hniksic@xemacs.org>
35
36         * mswindows.h: Define an alias for stat and fstat, as requested by
37         config-compiler.h.
38         (gai_strerror): Define to windows_strerror if NEED_GAI_STRERROR is
39         defined.
40
41 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
42
43         * mswindows.h: Use strtoll where available.
44
45 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
46
47         * sysdep.h: Add a full declaration of fnmatch.h.
48
49 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
50
51         * utils.c: Unconditionally include <setjmp.h>.
52
53 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
54
55         * utils.c (fnmatch_nocase): New function.
56         (proclist): Use it instead of fnmatch when opt.ignore_case is
57         requested.
58         (in_acclist): Respect opt.ignore_case.
59         (frontcmp): Respect opt.ignore_case.
60
61         * options.h (struct options): New flag opt.ignore_case.
62
63 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
64
65         * ptimer.c: Measure time in seconds rather than milliseconds.
66         Adjusted all callers.
67
68 2005-07-06  Hrvoje Niksic  <hniksic@xemacs.org>
69
70         * http.c (gethttp): When freeing MESSAGE, take into account that
71         it can be NULL.
72
73 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
74
75         * cmpt.c (timegm): Handle years after 2099.
76
77 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
78
79         * cmpt.c (timegm): Remove unused variable.
80
81 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
82
83         * cmpt.c (timegm): Don't call mktime; simply count the seconds
84         between 1970-01-01 and the specified date.
85
86 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
87
88         * wget.h (or): Define HAVE_SSL when either HAVE_OPENSSL or
89         HAVE_GNUTLS are defined.
90
91         * gnutls.c: New file.
92
93 2005-07-05  Hrvoje Niksic  <hniksic@xemacs.org>
94
95         * http.c (gethttp): Don't print the request write error message
96         twice.
97
98 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
99
100         * openssl.c (openssl_errstr): Instead of always using a large
101         static buffer, only allocate the error string when there is an
102         actual error.
103
104 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
105
106         * xmalloc.c (debugging_free): Prefix hex pointer value with "0x"
107         when printing.
108
109 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
110
111         * utils.c (NEXT_BASE64_CHAR): Rename to NEXT_CHAR and simplify to
112         get the next non-whitespace character.
113
114 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
115
116         * utils.c (base64_decode): Don't silently tolerate non-base64
117         non-white-space characters in the base64 stream.
118
119 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
120
121         * connect.c (LAZY_RETRIEVE_INFO): Make last_tick unsigned to match
122         transport_map_modified_tick.
123
124 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
125
126         * config-post.h (alloca): Updated declaration to not enumerate all
127         Windows compilers.
128
129 2005-07-04  Hrvoje Niksic  <hniksic@xemacs.org>
130
131         * openssl.c (openssl_errstr): Separate error messages with "; ".
132
133 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
134
135         * ftp.c (getftp): Ditto.
136
137         * http.c (gethttp): Use fd_errstr.
138
139         * connect.c (fd_register_transport): Restructure parameters to
140         include only a single structure that describes transport
141         implementation.
142
143         * openssl.c (openssl_errstr): New function: dump SSL error strings
144         into a static buffer and return a pointer to the buffer.
145
146         * connect.c (fd_errstr): New function; returns transport-specific
147         error message, or strerror(errno) if transport doesn't supply one.
148
149 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
150
151         * mswindows.h: Also wrap accept() and listen().
152
153 2005-07-03  Hrvoje Niksic  <hniksic@xemacs.org>
154
155         * url.c (path_end): Skip separators appropriate for the scheme.
156         (strpbrk_or_eos): Remove gcc-specific version, as the optimization
157         it tried to perform no longer applies.
158
159 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
160
161         * host.c: Don't include "connect.h" now that we no longer have
162         socket_has_inet6.
163
164 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
165
166         * host.c: Remove extraneous definition of netdb.h.
167
168 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
169
170         * http.c (gethttp): Skip error message body in the keep-alive
171         case.
172
173 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
174
175         * url.c (url_parse): Would crash when parsing fragments.  Support
176         fragments for FTP URLs too.
177
178 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
179
180         * version.c: Don't use "cvs" in version name, since we're not
181         using CVS anymore.
182
183 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
184
185         * progress.c (create_image): Ditto.
186
187         * retr.c (retr_rate): Display smaller rate numbers with greater
188         precision.
189
190 2005-07-02  Hrvoje Niksic  <hniksic@xemacs.org>
191
192         * http.c (response_head_terminator): Minor optimization.
193
194         * retr.c (fd_read_hunk): Call terminator with pointer to the start
195         of the data and the pointer to the current data.  Changed all
196         callers.
197
198 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
199
200         * url.c (url_parse): Make sure u->params is not initialized for
201         http/https URLs.
202         (url_parse): Don't crash on garbage following []-delimited IPv6
203         addresses.
204
205 2005-07-01  Hrvoje Niksic  <hniksic@xemacs.org>
206
207         * main.c (print_help): Don't refer to the non-existent -nr in
208         description of --mirror.
209
210 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
211
212         * host.c (pretty_print_address): Renamed to just print_address.
213         Clarify documentation.
214
215 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
216
217         * http.c (gethttp): Explicitly document the different cases when
218         generating the Host header.
219
220 2005-06-30  Hrvoje Niksic  <hniksic@xemacs.org>
221
222         * host.c (pretty_print_address): Handle error result from
223         inet_ntop.
224
225 2005-06-30  Gisle Vanem  <giva@bgnett.no>
226
227         * mswindows.c (inet_ntop): New function.  Print IPv6 addresses
228         using WSAAddressToString.
229
230 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
231
232         * progress.c (dot_update): Remove unused variable row_qty.
233
234 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
235
236         * main.c: Check for both SIGHUP and SIGUSR1 before using them.
237
238 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
239
240         * utils.c: Unconditionally include locale.h.
241
242 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
243
244         * ptimer.c: Include sys/time.h to get struct timeval.
245
246 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
247
248         * wget.h: Remove obsolete definition of with_thousand_seps_sum.
249
250 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
251
252         * gnu-md5.h: Unconditionally include limits.h.
253
254 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
255
256         * utils.c (random_number): Use lrand48 if available.
257         (random_float): Use drand48 if available.
258
259 2005-06-29  Hrvoje Niksic  <hniksic@xemacs.org>
260
261         * main.c (secs_to_human_time): Use print_decimal when printing
262         total download time in seconds.
263
264         * progress.c (print_row_stats): Use it to print total download
265         time at the end of the download.
266         (create_image): Ditto.
267
268         * utils.c (print_decimal): New function; print small decimal
269         numbers with more precision than large ones.
270
271         * progress.c (print_row_stats): New function.  Print ETA after the
272         download rate at the end of each row.
273
274 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
275
276         * init.c (parse_line): Check for alphanumerics.
277
278 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
279
280         * (dot_create): Remove unnecessary casts.
281
282 2005-06-28  Hrvoje Niksic  <hniksic@xemacs.org>
283
284         * ftp.c (getftp): Delete trailing newlines from LIST output so
285         lines don't come out with trailing \015\012 with -S.
286
287 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
288
289         * mswindows.h: Remove superfluous includes.
290
291 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
292
293         * config-post.h (alloca): Amend alloca declaration to take care of
294         all Win32 compilers, not just MSVC and MinGW.
295
296 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
297
298         * utils.c (get_grouping_data): Force separator to "." rather than
299         " " when "," is taken.
300
301 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
302
303         * wget.h (PTR_FORMAT): Cast the result of sizeof to int before
304         passing it to printf's %*.
305
306         * retr.h: Declare output_stream and output_stream_regular.
307
308         * ftp.h: Declare ftp_last_respline.
309
310         * convert.h: Declare dl_url_file_map.
311
312         * http.h: New file.
313
314 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
315
316         * cookies.c: Make cookies_now static.
317
318 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
319
320         * utils.c (human_readable): Remove intermediary cast to long; MSVC
321         has problems casting *unsigned* __int64 to double.
322
323 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
324
325         * sysdep.h: Use the system-provided fnmatch by default.
326
327 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
328
329         * http.c (mktime_from_utc): Renamed to timegm and moved to cmpt.c.
330         Don't compile it if GNU timegm is available.
331         (http_atotm): Use timegm.
332
333 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
334
335         * http.c (http_atotm): Correctly query the old locale value.
336
337 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
338
339         * config-post.h (alloca): Don't #define alloca under MinGW32,
340         which defines it in malloc.h, included from mswindows.h.
341
342 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
343
344         * utils.c (get_grouping_data): Force the use of separators in C
345         locale.
346
347 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
348
349         * main.c (i18n_initialize): Set all locale categories.
350
351         * http.c (http_atotm): Temporarily set locale to "C".
352
353 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
354
355         * http.c (gethttp): Improve "POST data file missing" error
356         message.
357
358 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
359
360         * progress.c (set_progress_implementation): Type COLON as const
361         char *.
362
363 2005-06-27  Hrvoje Niksic  <hniksic@xemacs.org>
364
365         * utils.c (with_thousand_seps): Handle negative numbers.
366
367 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
368
369         * progress.c (create_image): Mark the "eta" string for translation.
370
371 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
372
373         * html-url.c (get_urls_file): Don't explicitly set entry->next to
374         NULL since entry is already zeroed out.
375
376 2005-06-26  Gisle Vanem  <giva@bgnett.no>
377
378         * mswindows.h: Define gai_strerror under MinGW.
379
380 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
381
382         * utils.c (with_thousand_seps): Correctly implement thousand seps
383         consisting of more than one character.
384
385 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
386
387         * main.c (secs_to_human_time): Ditto.
388
389         * progress.c (create_image): Print more exact duration of very
390         short downloads.
391
392         * main.c (secs_to_human_time): Don't translate time suffixes "h",
393         "m", and "s", which are not strictly SI, but are "accepted for use
394         with SI".
395         (secs_to_human_time): Print really small intervals as 0s, not
396         0.00s.
397
398 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
399
400         * config-post.h: Replace the alloca declaration with the one from
401         the latest Autoconf manual.  This should remove a warning with GCC
402         on AIX.
403
404 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
405
406         * ftp.c (getftp): Always invoke SIZE, not only when continuing a
407         download.
408
409         * main.c (main): Ditto here.
410
411         * progress.c (create_image): When the download is finished, print
412         how long it took.
413
414 2005-06-26  Hrvoje Niksic  <hniksic@xemacs.org>
415
416         * main.c (main): Print the downloaded and quota amounts with the
417         "human_readable" function.
418
419         * ftp.c (print_length): Ditto.
420
421         * http.c (gethttp): Don't display thousand separators.
422
423         * utils.c (with_thousand_seps): Rewritten to respect locale
424         settings and to be type size agnostic.
425
426 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
427
428         * utils.c (human_readable): Divide with 1024 instead of shifting
429         so the operation can work with non-integer N.
430
431 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
432
433         * progress.c (eta_to_human): New logic for more human-readable
434         ETA.
435
436 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
437
438         * utils.c (with_thousand_seps_sum): Decrease buffer size so it
439         cannot overrun add_thousand_seps's buffer.
440
441 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
442
443         * utils.c (SPRINTF_WGINT): The correct format is %I64d, not just
444         %I64.
445
446 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
447
448         * http.c (http_loop): Don't warn about wildcards in HTTP URLs if
449         globbing isn't requested in the first place.
450
451         * retr.c (retrieve_url): Temporarily turn off globbing when
452         processing HTTP->FTP redirects.
453
454 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
455
456         * utils.c (with_thousand_seps_sum): Now defined only if
457         SUM_SIZE_INT is double.
458
459         * wget.h (SUM_SIZE_INT): Instead of bothering with long, long
460         long, __int64, and friends, simply either use wgint or double, end
461         of story.  Since we know how to print either, we no longer need
462         LARGE_INT_FMT.
463
464         * sysdeps.h (LARGE_INT): Renamed to SUM_SIZE_INT to better reflect
465         its intent, and moved to wget.h.
466
467 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
468
469         * Makefile.in: No need to clean .libs.
470
471 2005-06-25  Hrvoje Niksic  <hniksic@xemacs.org>
472
473         * cookies.c (parse_set_cookies): Cast pointer subtraction to int
474         before using it with %d; AIX compiler warns on this.
475         Reported by Jens Schleusener.
476
477 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
478
479         * http.c (gethttp): Don't prepend / here.
480
481         * cookies.c (cookie_handle_set_cookie): Prepend / to PATH.
482         (cookie_header): Ditto.
483
484 2005-06-24  Hrvoje Niksic  <hniksic@xemacs.org>
485
486         * init.c: opt.verbose must be declared as int.
487
488 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
489
490         * cmpt.c (strpbrk): Removed.
491         (mktime): Removed.
492         Include <time.h>.
493
494 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
495
496         * utils.c (read_file): Ditto.
497
498         * main.c (main): Use struct_fstat.
499
500         * mswindows.h (struct_fstat): Define a struct_fstat to deal with
501         the fact that Borland 5.5 has 64-bit stat, but not 64-bit fstat!
502
503 2005-06-23  Hrvoje Niksic  <hniksic@xemacs.org>
504
505         * sysdep.h: Remove code that deals with Watcom.
506
507 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
508
509         * all: Use bool instead of int and false/true instead of 0/non-0
510         for boolean variables and values.
511
512 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
513
514         * sysdep.h: Include the stdbool.h/_Bool/bool blurb from Autoconf.
515
516 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
517
518         * init.c (cmd_lockable_boolean): Removed.
519
520 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
521
522         * cookies.c (struct cookie): Use 1-bit bitfields for booleans
523         which makes the structure takes less space at no cost in
524         complexity.
525
526 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
527
528         * Makefile.in ($(OBJ)): Add the config.h dependency.
529
530 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
531
532         * openssl.c, connect.c, host.c: Replace instances of #ifdef
533         ENABLE_DEBUG if (opt.debug) {...} #endif with IF_DEBUG {...}.
534
535         * main.c: Rename the IF_DEBUG defined here to WHEN_DEBUG.
536
537         * wget.h (IF_DEBUG): New macro.
538         (DEBUGP): Define in terms of IF_DEBUG.
539
540 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
541
542         * http.c (gethttp): Only handle --set-cookies (and assert that
543         cookie jar exists) if opt.cookies is true.  Failure to do so
544         triggered the assert when --no-cookies was used and the server
545         sent a Set-Cookie header.  Ouch!
546
547 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
548
549         * connect.c (select_fd): Expect select() to exist.
550
551         * utils.c (xsleep): Always use select() as sleep fallback on
552         non-Windows platforms.
553
554         * ptimer.c: Delete the implementation of PTIMER_TIME.
555
556         * main.c: Assume existence of signal(), test for different signal
557         names instead.
558
559         * cmpt.c: Better document reasons why certain functions are
560         included.
561
562 2005-06-22  Hrvoje Niksic  <hniksic@xemacs.org>
563
564         * Makefile.in: Remove the manually maintained dependency list;
565         make all object files depend on every header.
566
567 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
568
569         * hash.c: Rename "mapping" to "cell" to avoid confusion with the
570         term "mapping" (or "map") sometimes being used for the entire hash
571         table.  Also rename "non-empty" to "occupied" for easier reading
572         of if (!NON_EMPTY (...)) ... .
573
574 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
575
576         * main.c, ptimer.c, sysdep.h, utils.c: Use #elif to simplify reading of
577         chained if-else-else-else-... statements.
578
579 2005-06-20  Hrvoje Niksic  <hniksic@xemacs.org>
580
581         * all: Return type of signal handlers is `void'.  Include signal.h
582         unconditionally.
583
584         * all: Don't explicitly cast values returned by malloc.  We no
585         longer support ancient compilers that don't declare malloc, and we
586         never supported C++ builds.
587
588 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
589
590         * all: Don't declare errno.  Include both time.h and sys/time.h,
591         as long as sys/time.h exists.  Don't dereference function pointers
592         when invoking the functions they point to.
593
594         * cmpt.c (memmove): Remove function mandated by C89.
595         (strerror): Ditto.
596         (strstr): Ditto.
597
598         * all: Undo the K&R-ization changes from 2005-05-03.
599
600         * all: Remove support for K&R compilers: use C89 function
601         declarations, remove definition of PARAMS, remove support for
602         varargs, and remove ansi2knr.  Assume the presence of time.h,
603         string.h, and other headers mandated by C89.
604
605 2005-06-19  Hrvoje Niksic  <hniksic@xemacs.org>
606
607         * init.c (cmd_lockable_boolean): Don't recognize literal "2" and
608         "-1" values; unlike 0 and 1, those should never be exposed to the
609         user.  Update the error message to be more self-consistent, as
610         proposed by Benno Schulenberg.
611
612 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
613
614         * http.c (gethttp): Don't free "head" before using it to save
615         headers.
616
617 2005-06-18  Hrvoje Niksic  <hniksic@xemacs.org>
618
619         * http.c (gethttp): When -E is in use, check for file existence
620         after appending ".html" to the name and modify the file name if
621         necessary.
622
623 2005-06-17  Hrvoje Niksic  <hniksic@xemacs.org>
624
625         * connect.c (socket_has_inet6): Removed.
626
627         * host.c (lookup_host): Don't use the AI_ADDRCONFIG getaddrinfo
628         hint.
629
630 2005-06-16  Hrvoje Niksic  <hniksic@xemacs.org>
631
632         * init.c (cmd_lockable_boolean): Improve the error message so it
633         lists the more useful values first.
634
635 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
636
637         * http.c (gethttp): Also report the system error when the POST
638         data file is missing.
639
640 2005-06-15  Benno Schulenberg  <benno@nietvergeten.nl>
641
642         * ftp.c, http.c, connect.c, cookies.c, html-url.c, init.c, res.c:
643         Gettext-ize messages that were previously missed.
644
645 2005-06-15  Hrvoje Niksic  <hniksic@xemacs.org>
646
647         * host.h (ip_address): Remove the trailing comma from the type
648         enum in the no-IPv6 case.
649
650         * main.c (struct cmdline_option): Remove the trailing comma from
651         the enum.
652
653         Reported by Jens Schleusener.
654
655 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
656
657         * url.c (strpbrk_or_eos): Check for a recent GCC version before
658         using the statement-as-expression extension.
659
660 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
661
662         * http.c (gethttp): Don't attempt to "skip short body" if we're
663         issuing a HEAD request (in which case the response head is not
664         followed by a body).
665
666 2005-05-30  Hrvoje Niksic  <hniksic@xemacs.org>
667
668         * init.c (cmd_spec_header): Don't split the string along the
669         commas using cmd_vector; just append the new value using
670         vec_append instead.
671
672         * utils.c (vec_append): New function.
673
674 2005-05-27  Andreas Beckmann  <debian@abeckmann.de>
675
676         * html-url.c (tag_handle_link): Mark the content from the <link
677         src="..."> tag as expecting HTML.
678
679 2005-05-24  Hrvoje Niksic  <hniksic@xemacs.org>
680
681         * http.c (http_atotm): Document the origin of the "cookie date"
682         format.
683
684 2005-05-21  Hrvoje Niksic  <hniksic@xemacs.org>
685
686         * init.c (setval_internal): Report exact command name alongside
687         the "display name".
688
689 2005-05-18  Hrvoje Niksic  <hniksic@xemacs.org>
690
691         * cookies.c (update_cookie_field): Explicitly cast -1 to time_t to
692         cope with systems where time_t is unsigned.
693
694         * cookies.c: Remove unnecessary casts to time_t from values
695         already of that type.
696
697 2005-05-17  Hrvoje Niksic  <hniksic@xemacs.org>
698
699         * ftp.c (ftp_loop_internal): Same here.
700
701         * http.c (http_loop): Don't clobber the file when -c is specified
702         and the first attempt to retrieve the file fails.
703
704 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
705
706         * openssl.c (ssl_check_certificate): Print all issues with a
707         certificate.
708
709 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
710
711         * ftp-basic.c: Don't xfree() the line returned by ftp_response if
712         the returned code is not FTPOK.
713
714 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
715
716         * init.c (cleanup): Don't free the non-existent opt.ftp_acc.  Free
717         the SSL-related stuff.
718
719 2005-05-16  Hrvoje Niksic  <hniksic@xemacs.org>
720
721         * ftp.c (print_length): Consistently print \n at end of the
722         "Length" line.
723
724 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
725
726         * openssl.c (ssl_connect): Announce the beginning and the end of
727         the SSL handshake when in debug mode.
728
729         * wget.h (PTR_FORMAT): New macro for easier printing of pointer
730         values.  Use %0*lx along with PTR_FORMAT instead of %p.
731
732 2005-05-14  Hrvoje Niksic  <hniksic@xemacs.org>
733
734         * http.c (gethttp): Would forget to close the connection when
735         keep_alive was not used.
736
737 2005-05-13  Hrvoje Niksic  <hniksic@xemacs.org>
738
739         * openssl.c (pattern_match): Document the code that decides
740         whether "*" matches ".".
741
742 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
743
744         * ftp-ls.c (ftp_index): Use %d to print the port number, which is
745         now int.
746         From Steven M. Schweda's VMS patches.
747
748 2005-05-12  Hrvoje Niksic  <hniksic@xemacs.org>
749
750         * url.c (rewrite_shorthand_url): Don't rewrite "https://host" to
751         "ftp://https//host" when SSL is not used.
752
753 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
754
755         * openssl.c (ssl_check_server_identity): Renamed to
756         ssl_check_certificate because it does more than just checking the
757         server's identity.
758         (ssl_check_certificate): Tell the user about
759         --no-check-certificate.
760
761 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
762
763         * openssl.c (ssl_init): Always use SSL_VERIFY_NONE, so that the
764         handshake finishes even if the certificate is invalid.  That way
765         ssl_check_server_identity can provide better diagnostics on why
766         the verification failed.
767
768 2005-05-11  Hrvoje Niksic  <hniksic@xemacs.org>
769
770         * openssl.c (pattern_match): New function.
771         (ssl_check_server_identity): Treat peer certificate common name as
772         wildcard.
773
774 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
775
776         * openssl.c (ssl_check_server_identity): Print certificate subject
777         and issuer.
778
779 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
780
781         * res.c (res_register_specs): Correctly pass pointers to
782         hash_table_get_pair.
783
784 2005-05-10  Hrvoje Niksic  <hniksic@xemacs.org>
785
786         * http.c (gethttp): Call ssl_check_server_identity.
787
788         * openssl.c (ssl_check_server_identity): New function, verifies
789         that the host name in the certificate matches the actual host
790         name.
791         (verify_cert_callback): Removed, since it didn't do anything
792         except returning the preverify_ok argument.
793
794         * connect.c (fd_transport_context): Allow retrieval of the context
795         pointer registered with fd_register_transport.
796
797 2005-05-09  Hrvoje Niksic  <hniksic@xemacs.org>
798
799         * openssl.c (verify_cert_callback): Renamed from verify_callback.
800         Always return the received "ok" value.  Print the X509 name in
801         debug mode.
802         (ssl_init): Enable partial writes in SSL context.
803
804 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
805
806         * http.c (http_loop): Check for wildcards in the URL path
807         component, not in the whole URL.
808
809         * ftp.c (ftp_loop): Check for wildcards in URL path before
810         unescaping, so the users can escape globbing metacharacters with %
811         escapes.
812
813 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
814
815         * init.c (run_command): Correctly interpret the return value of
816         parse_line.
817         (commands): Re-alphabetize.
818
819 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
820
821         * netrc.c (parse_netrc): Explicitly check for assignment != NULL
822         to silence warning from Borland C.
823
824         * url.c (sync_path): Don't unnecessarily increment p.
825         (url_parse): Don't unnecessarily set url_encode to NULL just
826         prior to return from the function.
827
828 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
829
830         * log.c (escnonprint_internal): Place variable declarations
831         before other statements.
832
833 2005-05-08  Hrvoje Niksic  <hniksic@xemacs.org>
834
835         * html-url.c: Include recur.h.
836
837         * http.c (request_new): Define as accepting no args.
838
839 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
840
841         * url.c (strpbrk_or_eos): Made inline.  Use strchr(s, '\0') for
842         finding the NUL char position.
843
844 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
845
846         * url.c (decide_copy_method): Renamed to char_needs_escaping.
847         Since it now returns only two possible values, change it to return
848         boolean (int).
849
850 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
851
852         * ftp-basic.c (ftp_request): Prevent newlines in VALUE causing
853         inadvertent sending of multiple FTP commands.
854
855 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
856
857         * url.c (decide_copy_method): Never cause reencode_escapes to
858         decode % escapes; it is too intrusive and breaks some servers.
859
860 2005-05-07  Hrvoje Niksic  <hniksic@xemacs.org>
861
862         * http.c (gethttp): When tunnelling SSL traffic over proxy with
863         CONNECT, we're really talking to the remote server directly.
864         Because of this, the request-line argument must be the URL path
865         rather than the whole URL, as it would be when using regular
866         proxies.
867         Reported by Charles Lane.
868
869 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
870
871         * init.c (cmd_spec_useragent): Allow empty User-Agent.
872
873         * http.c (gethttp): Don't print "unknown authentication scheme"
874         for failed Basic authentication.
875         (SET_USER_AGENT): Don't set user-agent if opt.useragent is empty.
876         (gethttp): Use alloca for allocation of www_authenticate.
877
878 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
879
880         * main.c (print_help): Fix wording of --secure-protocol help text.
881
882 2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
883
884         * cmpt.c (strstr): Updated from glibc 2.3.5.
885
886 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
887
888         * http.c (http_atotm): Zero out the whole struct tm being passed
889         to strptime.
890
891 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
892
893         * main.c (main): Propagate option name to setoptval.
894
895         * init.c (setoptval): Accept another argument, OPTNAME.  Propagate
896         that argument as the option name independently of the actual
897         command, determined by command_by_name(com).
898
899 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
900
901         * init.c (parse_line): Make the return value indicate whether
902         there was a syntax error or a setter failed.
903         (run_wgetrc): Return an indication on whether an error has been
904         encountered.
905         (initialize): Abort if there have been errors running either
906         .wgetrc file.
907
908 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
909
910         * log.c (copy_and_escape): Slightly reduce code repetition between
911         the two loops.
912
913 2005-05-05  Charles C.Fu  <ccwf@bacchus.com>
914
915         * utils.c (proclist): Strip leading slash when calling fnmatch
916         too, otherwise wildcard comparisons always fail.
917
918 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
919
920         * utils.c (touch): Set access time to current time.
921
922 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
923
924         * url.c (url_unescape): Don't unescape %00, it effectively
925         truncates the string.
926
927 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
928
929         * log.c (copy_and_escape): Replace the FOR_URI argument with a
930         slightly more general mechanism for specifying different kinds of
931         escape.
932
933 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
934
935         * ftp-basic.c (ftp_response): Fix printing FTP server response.
936
937 2005-05-05  Hrvoje Niksic  <hniksic@xemacs.org>
938
939         * retr.c (limit_bandwidth_reset): Reset sleep_adjust.
940         (limit_bandwidth): Don't allow huge "adjustment" values that
941         result from being suspended for a while.
942
943 2005-05-04  Hrvoje Niksic  <hniksic@xemacs.org>
944
945         * wget.h: If gettext was found but libtintl.h wasn't, declare
946         gettext's return type to avoid type mismatches.
947
948 2005-05-03  Hrvoje Niksic  <hniksic@xemacs.org>
949
950         * url.c (url_parse): Rename label `error' to avoid conflict with
951         identifier.
952
953         * retr.c (fd_read_body): Rename label `out' to avoid conflict with
954         identifier.
955         (fd_read_hunk): Use explicit double constant.
956         (retrieve_from_file): Don't use string concatenation.
957         (sleep_between_retrievals): Make sure xsleep is called with a
958         `double' argument.
959         (no_proxy_match): Define as static, like it is declared.
960
961         * progress.c (bar_create): Use 0.0 instead of 0 because K&R
962         compilers can't automatically promote it.
963
964         * http-ntlm.c (ntlm_output): Replace \xHH sequences with \OOO for
965         the sake of old compilers.
966
967         * ftp.c (ftp_loop_internal): Don't use string concatenation.
968
969         * http.c (request_send): Use explicit double constants when
970         calling fd_read and fd_write.
971         (post_file): Ditto.
972         (gethttp): Ditto.
973         (skip_short_body): Ditto.
974
975         * ftp-basic.c: When calling fd_write, specify the last argument as
976         a `double' constant for the sake of K&R compilers which don't see
977         the prototype and therefore can't promote it to double
978         automatically.
979
980         * cookies.c (cookie_jar_load): Rename abort label to abort_cookie
981         to avoid name conflict in K&R compilers.
982
983 2005-04-29  Hrvoje Niksic  <hniksic@xemacs.org>
984
985         * ptimer.c (posix_init): Since we allow _POSIX_MONOTONIC_CLOCK==0,
986         it is not enough to check for _POSIX_MONOTONIC_CLOCK-0, we must
987         also check for defined(_POSIX_MONOTONIC_CLOCK).
988
989 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
990
991         * ftp.c, hash.c, connect.c, host.c, http.c: Remove unreached code,
992         such as "break" following return or abort.
993
994 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
995
996         * init.c (commands): Wrap the use of opt.random_file in #ifdef
997         HAVE_SSL.
998
999 2005-04-28  Hrvoje Niksic  <hniksic@xemacs.org>
1000
1001         * http.c (gethttp): Correctly set the user agent.
1002
1003 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
1004
1005         * init.c (cmd_spec_useragent): Free the old value of
1006         opt.useragent before setting the new one.
1007
1008 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
1009
1010         * main.c: Map --ftp-password, --http-password and --proxy-password to
1011         the new ftppassword, httppassword and proxypassword commands
1012         respectively.  Document the --user and --password options in the help
1013         string.
1014         
1015 2005-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
1016
1017         * ftp.c: Add support for --user and --password.
1018         
1019         * http.c: Add support for --user and --password.
1020         
1021         * init.c: Deprecated ftppasswd, httppasswd, login, passwd and
1022         proxypasswd commands.  Added ftppassword, ftpuser, httppassword,
1023         password, proxypassword and user commands.
1024
1025         * main.c: Renamed --ftp-passwd to --ftp-password.  Added --ftp-user,
1026         --http-password, --password, --proxy-password and --user.  Deprecated
1027         --http-passwd and --proxy-passwd.  Added documentation for new options
1028         and removed documentation for deprecated options in the help string.
1029         
1030         * options.h (struct options): Added user and passwd members to handle
1031         --user and --password respectively.  Renamed ftp_acc and ftp_pass
1032         members to ftp_user and ftp_passwd for consistency.
1033
1034 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
1035
1036         * main.c (print_help): Advertise "DER", not "ASN1".
1037
1038 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
1039
1040         * openssl.c (init_prng): Disable the weak random seed by default.
1041
1042         * http.c (gethttp): Simplify SSL initialization; disable SSL when
1043         anything goes wrong with the initialization.
1044
1045         * options.h (struct options): New option opt.random_file.
1046
1047 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
1048
1049         * init.c: Wrap private key commands in IF_SSL.
1050
1051 2005-04-27  Hrvoje Niksic  <hniksic@xemacs.org>
1052
1053         * openssl.c (ssl_init): Ditto.
1054
1055         * options.h (struct options): Allow separate specification of key
1056         type and certificate type.
1057
1058         * init.c (cmd_spec_cert_type): Provide a "der" synonym for "asn1"
1059         certificate encoding.
1060
1061 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
1062
1063         * openssl.c: Renamed "gen_sslfunc.c" to "openssl.c" and
1064         "gen_sslfunc.h" to "openssl.h".  This reflects the intent of
1065         openssl.c encapsulating the OpenSSL-specific code.
1066
1067 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
1068
1069         * init.c: Renamed "closure" (a synonym for context in some
1070         cultures) to "place", which more accurately reflects the usage.
1071
1072 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
1073
1074         * gen_sslfunc.c (ssl_init): Use default locations for loading the
1075         certificate bundles.
1076         (ssl_init_prng): Disable the cryptographically weak PRNG
1077         initialization fallback.
1078
1079         * init.c: Renamed SSL command-line arguments and wgetrc commands.
1080         (defaults): Check the server certificate by default.
1081
1082 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
1083
1084         * cookies.c (cookie_handle_set_cookie): Delete the part of the
1085         path after the trailing slash.
1086
1087         * http.c (gethttp): Call cookie_handle_set_cookie with path that
1088         begins with '/'.
1089
1090 2005-04-26  Hrvoje Niksic  <hniksic@xemacs.org>
1091
1092         * http.c (gethttp): Call skip_short_body only if keep_alive is in
1093         use.
1094         (gethttp): Send the User-Agent header with the CONNECT request as
1095         well.
1096
1097 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
1098
1099         * main.c (option_data): Removed support for the undocumented flag
1100         --use-proxy.
1101
1102 2005-04-25  Hrvoje Niksic  <hniksic@xemacs.org>
1103
1104         * main.c (option_data): Don't treat -Y as a boolean switch; treat
1105         it as a value switch instead, so "-Y off" continues to work.
1106
1107 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
1108
1109         * utils.c (aprintf): Delete unreachable statement.
1110
1111 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
1112
1113         * host.c (cmp_prefer_ipv4): New function.
1114         (cmp_prefer_ipv6): New function.
1115         (lookup_host): Use the appropriate comparator according to
1116         opt.prefer_family.
1117
1118         * init.c: New option prefer_family.
1119
1120         * host.c (is_valid_ipv6_address): Spell NS_* constants in lower
1121         case to avoid clash with system headers.
1122         (lookup_host): Reorder the addresses so that IPv4 ones come first.
1123
1124         * utils.c (stable_sort): New function.
1125
1126 2005-04-24  Hrvoje Niksic  <hniksic@xemacs.org>
1127
1128         * connect.c (retryable_socket_connect_error): Return 0 for
1129         ENETUNREACH and EHOSTUNREACH.
1130
1131 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
1132
1133         * cmpt.c: Reenable the memmove implementation for systems that
1134         lack it.
1135
1136         * http.c (gethttp): Store the "authorized" state of the persistent
1137         connection.
1138         (request_remove_header): New function.
1139         (gethttp): Don't send the "Basic" authentication if the connection
1140         is already authorized.
1141
1142 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
1143
1144         * utils.c (base64_encode): Treat input as unsigned chars.
1145         Required for correct encoding of binary stuff.
1146
1147 2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
1148
1149         * http-ntlm.c: Format the function definitions in an
1150         ansi2knr-friendly fashion.
1151
1152 2005-04-22  Hrvoje Niksic  <hniksic@xemacs.org>
1153
1154         * http.c (gethttp): Handle multiple WWW-Authentication headers,
1155         only one of which is recognized.  Those are sent by IIS with NTLM
1156         authorization.
1157         (create_authorization_line): Propagate information whether
1158         authorization is finished.
1159         (gethttp): Only stop authorization when it's really finished, not
1160         after fixed two steps.
1161
1162 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
1163
1164         * gen_sslfunc.c (ssl_init): Fix warning message text; mark the
1165         message as translatable.
1166
1167 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
1168
1169         * main.c (print_help): Print the EGD option outside the cluster of
1170         SSL options.
1171
1172 2005-04-21  Hrvoje Niksic  <hniksic@xemacs.org>
1173
1174         * http-ntlm.c (ntlm_output): Fix setting the domain.
1175         Suggested by Sami Krank.
1176
1177 2005-04-20  Mauro Tortonesi  <mauro@ferrara.linux.it>
1178
1179         * connect.c: Set IPV6_V6ONLY socket option when -6 switch is used.
1180
1181 2005-04-20  FUJISHIMA Satsuki  <sf@FreeBSD.org>
1182
1183         * http.c (request_set_header): Fix the check whether a new header
1184         needs to be allocated.
1185
1186 2005-04-18  Hrvoje Niksic  <hniksic@xemacs.org>
1187
1188         * utils.c (base64_encode): Use the parameter order that makes more
1189         sense.  Return the length of the base64 written.  Updated all
1190         callers.
1191
1192 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
1193
1194         * http.c (request_set_header): Free NAME when VALUE is NULL and
1195         freeing the header name is requested.
1196
1197 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
1198
1199         * snprintf.c (fmtstr): Declare VALUE as const char *.
1200         Based on patch by Russ Allbery.
1201
1202 2005-04-17  Hrvoje Niksic  <hniksic@xemacs.org>
1203
1204         * snprintf.c (fmtfp): More correct handling of significant digit
1205         count with %g -- 0.002 has one significant digit, not three.
1206
1207 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
1208
1209         * retr.c (fd_read_body): Respect read timeout with non-interactive
1210         or no progress gauge -- treat ETIMEDOUT specially only when
1211         progress_interactive.
1212         Reported by FUJISHIMA Satsuki.
1213
1214 2005-04-16  FUJISHIMA Satsuki  <sf@FreeBSD.org>
1215
1216         * http.c (gethttp): Don't use HTTP/1.0 persistent connections over
1217         proxy.
1218
1219 2005-04-16  Hrvoje Niksic  <hniksic@xemacs.org>
1220
1221         * snprintf.c: Use the PARAMS macro to handle prototypes.  Write
1222         function definitions in the ansi2knr-friendly way.
1223         (fmtstr): If string precision is specified, don't read VALUE past
1224         it.
1225         (dopr): Actually print %g and %e formats.
1226         (fmtfp): Fix a bug that caused 0.01 to be printed as 0.1.
1227         (fmtfp): Use LLONG in floating point conversions to be able to
1228         convert more digits.
1229         (fmtfp): Interpret precision as number of significant digits with
1230         %g.
1231         (fmtfp): Omit trailing decimal zeros with %g.
1232
1233         * snprintf.c: Don't include <ctype.h> because none of it is used.
1234         Include strings.h/string.h, as per Autoconf.
1235
1236 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
1237
1238         * ptimer.c: Use _POSIX_TIMERS - 0 > 0, which handles the case when
1239         _POSIX_TIMERS is defined but empty, as well as the case when it is
1240         undefined.  Do the same with the check for _POSIX_MONOTONIC_CLOCK.
1241         Suggested by Larry Jones.
1242
1243 2005-04-15  Hrvoje Niksic  <hniksic@xemacs.org>
1244
1245         * ptimer.c: Check that _POSIX_TIMERS is defined as well as > 0.
1246         Problem reported by Steven M. Schweda.
1247
1248 2005-04-14  Hrvoje Niksic  <hniksic@xemacs.org>
1249
1250         * http.c (skip_short_body): Print the skipped body data in debug
1251         mode.
1252         (skip_short_body): Don't skip more than 4k of body data.
1253         (skip_short_body): Return whether the skipping was successful.
1254         (gethttp): If skip_short_body failed, invalidate the connection.
1255
1256 2005-04-12  Gisle Vanem  <giva@bgnett.no>
1257
1258         * ftp.c (getftp): Ditto.
1259
1260         * http.c (gethttp): Open the output file in binary mode.
1261
1262 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
1263
1264         * hash.c: Conditionalize including config.h on HAVE_CONFIG_H
1265         instead of on STANDALONE.
1266
1267 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
1268
1269         * gen_sslfunc.c (ssl_print_errors): Made static.
1270         (ssl_print_errors): Eliminate potentially dangerous fixed-size
1271         error buffer.  Passing NULL to ERR_error_string causes it to use
1272         its own static buffer, which is fine for our purposes.
1273
1274         * gen_sslfunc.c: Include gen_sslfunc.h.  Make the declarations of
1275         ssl_init and ssl_conect match the actual definitions.
1276         (ssl_connect): Simply return a boolean, the SSL context is no
1277         longer useful as a return value.
1278
1279         * retr.c: Don't include SSL headers; we don't need them.
1280
1281 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
1282
1283         * config-post.h: Don't define _VA_LIST under Solaris; it breaks
1284         compilation with GCC 3.4 under Solaris 10.  (It was defined to
1285         avoid a warning with previous versions of GCC.)
1286
1287 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
1288
1289         * xmalloc.c (register_ptr): Warn the user to increase SZ prior to
1290         aborting.
1291
1292 2005-04-11  Hrvoje Niksic  <hniksic@xemacs.org>
1293
1294         * convert.c (convert_cleanup): Free converted_files.
1295
1296 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
1297
1298         * wget.h (DEBUGP): Use __builtin_expect to give a hint to GCC that
1299         opt.debug is false in the vast majority of cases.
1300
1301 2005-04-10  Hrvoje Niksic  <hniksic@xemacs.org>
1302
1303         * config-post.h: Declare alloca as void *, not char *.
1304
1305 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
1306
1307         * recur.c (download_child_p): When -p is used, (temporarily)
1308         ignore accept/reject rules for HTMLs, even when they are at the
1309         maximum recursion depth.  That is because with -p we are, if
1310         necessary, overstepping the max. depth to get the requisites.
1311
1312 2004-06-12  Larry Jones <lawrence.jones@ugsplm.com>
1313
1314         * recur.c (download_child_p): Correct the logic in check number 6:
1315         test opt.reclevel (not DEPTH) against INFINITE_RECURSION.
1316
1317 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
1318
1319         * url.c: Use "static const" in preference to "const static".
1320         Sun's cc warns that "storage class after type is obsolescent".
1321
1322         * url.c (urlchr_table): Don't mark ~ as unsafe, too many broken
1323         web sites are confused when ~ is changed to %7E.  Their servers
1324         redirect /%7Efoo/ to /~foo/, which Wget again accesses using %7E,
1325         causing further redirections, therefore looping infinitely.  See
1326         Debian bug #301624 for an example.
1327
1328 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
1329
1330         * alloca.c: Include wget.h to be able to use xmalloc.  In addition
1331         to defining malloc to xmalloc, also define free to xfree.
1332
1333 2005-04-09  Hrvoje Niksic  <hniksic@xemacs.org>
1334
1335         * http-ntlm.c (ntlm_output): Use "char", not "unsigned char" for
1336         ntlmbuf.  Our base64 functions accept char anyway.
1337         (ntlm_output): Join up the format string, since we nominally
1338         support K&R compilers.
1339         (ntlm_output): Ditto.
1340
1341 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
1342
1343         * ptimer.c: Use Windows timers under Cygwin, whose POSIX timer
1344         implementation is incomplete.
1345
1346 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
1347
1348         * ptimer.c (struct ptimer): Remove the unused initialized field.
1349
1350         * ptimer.c: Renamed function parameters from WT (which used to
1351         stand for wget_timer or wtimer) to PT.
1352
1353 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
1354
1355         * ptimer.c (posix_init): Be smarter about choosing clocks.  In
1356         decreasing order of preference, use CLOCK_MONOTONIC,
1357         CLOCK_HIGHRES, and CLOCK_REALTIME.
1358         (ptimer_allocate): Removed.
1359
1360         * ptimer.c: Refactor the code by cleanly separating the
1361         architecture-dependent code from the architecture-independent
1362         code.
1363
1364 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
1365
1366         * ptimer.c (ptimer_init): Explicitly check that
1367         _POSIX_MONOTONIC_CLOCK is *both* defined and >=0.  (Undefined
1368         symbols are >=0.)
1369
1370 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
1371
1372         * ptimer.c (ptimer_diff): Fix typo affecting Windows build.
1373
1374 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
1375
1376         * ptimer.c (ptimer_init): In fact, _POSIX_MONOTONIC_CLOCK needs to
1377         be >= 0.
1378
1379         * ptimer.c (ptimer_init): Check whether _POSIX_MONOTONIC_CLOCK is
1380         defined instead of whether it's greater than 0.  glibc defines it
1381         to 0, but still makes it available via sysconf.
1382
1383 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
1384
1385         * mswindows.c (str_to_int64): Rename OVERFLOW and UNDERFLOW to
1386         INT64_OVERFLOW and INT64_UNDERFLOW, since those names are used.
1387
1388 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
1389
1390         * ptimer.c: New file.  Move the "wtimer" functions from utils.c to
1391         this file and rename them to ptimer_.
1392
1393 2005-04-07  Hrvoje Niksic  <hniksic@xemacs.org>
1394
1395         * host.c (NO_ADDRESS): Define NO_ADDRESS only after the system
1396         headers have been included.
1397
1398 2005-04-06  Hrvoje Niksic  <hniksic@xemacs.org>
1399
1400         * http.c (pconn): Include NTLM data, which is per-connection.
1401         (known_authentication_scheme_p): Recognize NTLM authorization.
1402         (create_authorization_line): Call ntlm_input and ntlm_output.
1403
1404         * http-ntlm.c: New file, donated by Daniel Stenberg and originally
1405         written for curl, heavily modified for Wget.
1406
1407         * utils.c (base64_encode): Relocated from http.c, since it is now
1408         used by http-ntlm.c, and will possibly be used elsewhere.
1409         (base64_decode): New function, originally based on code from GNU
1410         recode.
1411
1412 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
1413
1414         * ftp.c (ftp_loop): Ditto.
1415
1416         * ftp-basic.c (ftp_pasv): Use the xzero shorthand for memset(0).
1417         (ftp_lpsv): Ditto.
1418
1419 2005-04-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
1420
1421         * Makefile.in: removed string_t.c from list of source files.
1422
1423 2005-04-04  Mauro Tortonesi  <mauro@ferrara.linux.it>
1424
1425         * string_t.c: Removed.
1426         
1427         * string_t.h: Removed.
1428
1429 2005-04-02  Hrvoje Niksic  <hniksic@xemacs.org>
1430
1431         * url.c (rewrite_shorthand_url): Only accept recognized schemes.
1432         That way "foo:80" will correctly be rewritten to "http://foo:80"
1433         instead of left unchanged and ultimately rejected because of
1434         "unsupported scheme foo".
1435
1436 2005-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
1437
1438         * utils.c (number_to_string): Avoid explicit 64-bit constants;
1439         construct them by multiplication at compile-time.
1440
1441         * utils.c, elsewhere: Don't append "L" to 32-bit integer
1442         constants; we aren't really compilable on 16-bit systems anyway.
1443
1444         * hash.c (prime_size): Remove primes larger than 2^31, but include
1445         2^31-1, which is prime.
1446
1447 2005-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
1448
1449         * utils.c (string_set_to_array): New function.
1450
1451         * convert.c: Replace the use of "slists" with sets/hash-tables,
1452         which in fact suit the intended purpose much better.
1453         downloaded_html_list is removed altogether.
1454
1455 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
1456
1457         * ftp.h (enum): Rename GLOBALL, GETALL, and GETONE to
1458         GLOB_GLOBALL, GLOB_GETALL, and GLOB_GETONE to avoid conflict with
1459         Linux headers.
1460
1461 2005-03-29  Hrvoje Niksic  <hniksic@xemacs.org>
1462
1463         * utils.c (numdigit): More correct handling of negative numbers.
1464
1465 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
1466
1467         * http.c (gethttp): Print the human-readable size.
1468
1469         * ftp.c (getftp): Print the human-readable size of the file to be
1470         downloaded.
1471
1472         * utils.c (human_readable): New function.
1473
1474         * utils.c: Renamed "legible" to "with_thousand_seps",
1475         "legible_large_int" to "with_thousand_seps_large", and "legible_1"
1476         to "add_thousand_seps".
1477
1478 2005-03-21  Hrvoje Niksic  <hniksic@xemacs.org>
1479
1480         * http.c (gethttp): Inhibit persistent connections when talking to
1481         proxies, as mandated by RFC 2068.
1482
1483 2005-03-20  Hrvoje Niksic  <hniksic@xemacs.org>
1484
1485         * url.c (unescape_single_char): New function.
1486         (url_escape_dir): Use it to unescape slashes in directory
1487         components.
1488         (url_string): Escape unsafe chars in host name, except for the ':'
1489         charaters, which can appear in IPv6 addresses.
1490
1491         * main.c (main): Don't access the cookie jar directly.
1492
1493         * log.c (escnonprint_internal): Correctly calculate the needed
1494         string size.  Don't forget the buffer's new size after having
1495         reallocated it.
1496         (log_cleanup): New function.  Free the escnonprint ring data.
1497
1498         * init.c (cleanup): Don't free the cookie jar explicitly, it is
1499         now done by http_cleanup.
1500         (cleanup): opt.user_headers is now a vector, free it with
1501         free_vec.
1502
1503         * http.c (gethttp): Make sure to free the request data, the status
1504         message, and the response data before returning from the function.
1505         (save_cookies): New function.
1506         (http_cleanup): Free the cookie jar here.
1507
1508         * hash.c: Renamed string_hash to hash_string and ptrhash to
1509         hash_pointer.  Exported hash_pointer.
1510
1511         * xmalloc.c: Organized malloc_table (previously malloc_debug) as a
1512         simple EQ hash table.  register_ptr and unregister_ptr are now of
1513         O(1) complexity.
1514
1515         * xmalloc.c: Renamed "*_debug" to debugging_* and "*_real" to
1516         checking_*.
1517
1518 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
1519
1520         * utils.c (debug_test_md5): Moved to gen-md5.c.
1521
1522         * mswindows.h: Don't declare inet_ntop, since we don't use it.
1523
1524         * mswindows.h: For consistency, also wrap closesocket, it being
1525         a Winsock call.
1526
1527         * mswindows.h: Don't declare sleep and usleep; we're defining
1528         xsleep now.
1529
1530         * mswindows.h (mkdir): Don't special-case Borland C, _mkdir
1531         works there as well.
1532
1533         * host.c: Don't include winsock header files; the correct ones
1534         are already included by mswindows.h.
1535
1536         * mswindows.c (xsleep): Round toward the nearest millisecond
1537         in an attempt to avoid average short sleeps.
1538
1539         * utils.c (wtimer_granularity): Report correct values for
1540         Windows timers and for high-resolution timers.
1541
1542         * utils.c (wtimer_initialize_once): New function, called to
1543         initialize the timer frequency.
1544
1545         * utils.c: Replace the use of GetSystemTime with high-resolution
1546         counters under Windows.  When high-resolution counters are
1547         unavailable, use GetTickCount().
1548
1549 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
1550
1551         * retr.c (fd_read_body): Undo the 2004-11-18 change.  Instead,
1552         always be "exact".
1553
1554 2005-03-17  Hrvoje Niksic  <hniksic@xemacs.org>
1555
1556         * ftp-basic.c (ftp_login): Don't free the string if ftp_response
1557         returned an error status because the line didn't get allocated in
1558         the first place.
1559
1560 2005-03-15  Hrvoje Niksic  <hniksic@xemacs.org>
1561
1562         * http.c (read_http_response_head): Limit the response size to 64k
1563         bytes.
1564
1565         * retr.c (fd_read_hunk): Accept a MAXSIZE argument that limits the
1566         number of bytes the function is allowed to allocate.
1567         (fd_read_line): Limit the line to 4096 bytes.
1568
1569 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
1570
1571         * wget.h: Include options.h after wgint has been defined.
1572
1573         * options.h (struct options): Declare options processed with
1574         cmd_bytes as wgint, not long.
1575
1576 2005-03-18  Hrvoje Niksic  <hniksic@xemacs.org>
1577
1578         * init.c (cmd_file): Use concat_strings.
1579
1580         * http.c (basic_authentication_encode): Use concat_strings.
1581
1582         * ftp-ls.c (ftp_index): Use concat_strings.
1583
1584         * ftp-basic.c (ftp_request): Use concat_strings.
1585
1586         * utils.c (concat_strings): New function.
1587
1588 2005-03-12  Hrvoje Niksic  <hniksic@xemacs.org>
1589
1590         * init.c (simple_atof): Handle negative numbers; skip whitespace
1591         before the number.
1592         (simple_atoi): Ditto.  Also, check for overflow and underflow.
1593         (cmd_number): Bail out on negative numbers.
1594         (parse_bytes_helper): Ditto.
1595
1596 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
1597
1598         * http.c (gethttp): Handle multiple Set-Cookie headers sent by
1599         remote server.
1600
1601 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
1602
1603         * init.c (defaults): Use passive FTP by default.
1604
1605 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
1606
1607         * mswindows.c: Provide wrappers to Winsock functions that set
1608         errno to WSAGetLastError() in case of failure.  Also provide a
1609         Windows-specific version of strerror.
1610
1611         * mswindows.h: Wrap calls to socket, bind, connect, recv, send,
1612         select, getsockname, getpeername, and setsockopt.
1613
1614 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
1615
1616         * url.c (url_parse): Reject port numbers larger than 65535.  We
1617         also check for overflow while parsing port numbers.
1618
1619 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
1620
1621         * utils.c (read_file): Don't use wgint for file size; LFS won't
1622         work since the file is mmap'ed as a whole.
1623
1624         * options.h: Don't include stdio.h.
1625
1626         * log.c: Ditto.
1627
1628         * init.c: Disambiguate assignment from non-zero test to avoid
1629         Borland C warning.
1630
1631         * http.c (response_new): Don't needlessly post-increment count.
1632
1633         * hash.c: Include stdio.h.
1634
1635         * gnu-md5.h: Don't include stdio.h.
1636
1637         * getopt.h (struct option): Always use const.
1638
1639         * ftp.c (getftp): Avoid unnecessary assignment to RES to avoid
1640         Borland C warning.
1641
1642         * ftp-ls.c: Disambiguate assignment from non-zero test to avoid
1643         Borland C warning.
1644
1645         * cmpt.c (strptime_internal): Don't initialize rp_backup when
1646         !_NL_CURRENT to avoid Borland C warning.
1647
1648 2005-03-06  Hrvoje Niksic  <hniksic@xemacs.org>
1649
1650         * utils.c (fopen_excl): Fix parse error when O_BINARY is
1651         available.
1652
1653 2005-03-05  Hrvoje Niksic  <hniksic@xemacs.org>
1654
1655         * url.c (url_file_name): Don't allow hosts named ".." to be
1656         appended as path elements.
1657
1658 2005-03-03  Hrvoje Niksic  <hniksic@xemacs.org>
1659
1660         * retr.c (retrieve_url): Escape location header.
1661
1662         * http.c (print_server_response_1): Escape server response when
1663         printing it.
1664         (gethttp): Escape host name, status message, location header, and
1665         content type.
1666         (http_loop): Escape error message from server.
1667
1668         * host.c (lookup_host): Escape host name when printing it.
1669
1670         * ftp.c (getftp): Escape user name when printing it.
1671         (getftp): Escape remote file and directory for printing.
1672         (getftp): Escape server listing when printing it.
1673         (ftp_retrieve_list): Escape link name and file name.
1674         (ftp_retrieve_glob): Escape file name.
1675
1676         * ftp-basic.c (ftp_response): Escape server response when printing
1677         it.
1678
1679         * cookies.c (parse_set_cookies): Escape the cookie field when
1680         printing it.
1681         (parse_set_cookies): Escape contents of remote header.
1682         (cookie_handle_set_cookie): Escape host name and cookie domain.
1683
1684         * connect.c (connect_to_ip): Escape the host name.
1685
1686         * log.c (escnonprint): New function, used for printing strings
1687         coming from the server that possibly contain non-ASCII characters.
1688         (escnonprint_uri): Ditto.
1689
1690 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
1691
1692         * ftp.c (getftp): Ditto.
1693
1694         * http.c (gethttp): When we're not supposed to overwrite files,
1695         use fopen_excl to open the file and recompute the file name.
1696
1697         * log.c (redirect_output): Use unique_create to avoid a race
1698         condition.
1699
1700         * mswindows.c (fake_fork_child): Use unique_create.
1701
1702         * utils.c (fopen_excl): New function that opens a stdio stream
1703         with the O_EXCL flag (where available).
1704         (unique_create): New function, like unique_name, but also creating
1705         the file and returning a file pointer.
1706         (fork_to_background): Use unique_create to create the file
1707         immediately to avoid race condition with multiple instances of
1708         wget -b.
1709
1710 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
1711
1712         * host.c (lookup_host): Test for AI_ADDRCONFIG directly, instead
1713         of checking for HAVE_GETADDRINFO_AI_ADDRCONFIG.
1714
1715 2005-02-23  Hrvoje Niksic  <hniksic@xemacs.org>
1716
1717         * host.c (is_valid_ipv6_address): Move here from url.c.
1718         (lookup_host): If the address is numeric, don't print the
1719         "resolving..." line, don't set up DNS timeouts, and set the
1720         AI_NUMERICHOST hint, where available.
1721
1722 2005-02-26  Gisle Vanem  <giva@bgnett.no>
1723
1724         * utils.c: Use the nnnLL syntax under GCC.  Define struct_stat to
1725         struct _stati64 under __MINGW32__ as well as under MS VC.
1726
1727 2005-02-26  Hrvoje Niksic  <hniksic@xemacs.org>
1728
1729         * utils.c: Use the nnnI64 syntax for __int64 constants under all
1730         Windows compilers.
1731         (SPRINTF_WGINT): Use "%I64" under all Windows compilers.
1732
1733         * mswindows.h (WGINT_MAX): Use the nnnI64 syntax for
1734         __int64 constants under all Windows compilers.
1735         (struct_stat): Use `struct stati64' under Borland C.
1736         (fstat): Don't redefine to _fstati64 under Borland.
1737
1738         * mswindows.c: Define str_to_int64 under Borland C as well as
1739         under (older) Visual C.
1740
1741 2005-02-25  Hrvoje Niksic  <hniksic@xemacs.org>
1742
1743         * ftp.c (getftp): Initialize err to suppress compiler warning.
1744
1745 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
1746
1747         * ftp.c (ftp_expected_bytes): Fix bug that caused infloop because
1748         of not correctly skipping the '(' character.
1749
1750 2005-02-24  Hrvoje Niksic  <hniksic@xemacs.org>
1751
1752         * mswindows.c (wget_ftello): Removed.
1753
1754         * mswindows.h: Remove bogus definition of stat.
1755         (wget_ftello): Remove the leftover ftello replacement.
1756
1757 2005-02-20  Hrvoje Niksic  <hniksic@xemacs.org>
1758
1759         * mswindows.c (wget_ftello): Wget's replacement for ftello.
1760
1761         * utils.c (file_size): Use ftello where available.
1762
1763         * ftp-ls.c (ftp_parse_unix_ls): Use str_to_wgint to parse the file
1764         size.
1765         (ftp_parse_winnt_ls): Ditto.
1766
1767         * ftp-basic.c (ftp_size): Use str_to_wgint to convert number to
1768         wgint; pass 10 instead of 0 as the BASE argument.
1769
1770         * ftp.c (ftp_expected_bytes): Use str_to_wgint to parse the file
1771         size.
1772
1773         * sysdep.h (LARGE_INT_FMT): Use __int64 as LARGE_INT on
1774         MSVC/Windows; print it with "%I64".
1775
1776         * wget.h: Define a `wgint' type, normally aliased to (the possibly
1777         64-bit variant of) off_t.
1778
1779         * all: Use `wgint' instead of `long' for numeric variables that
1780         can hold file sizes.
1781
1782         * utils.c (number_to_string): Support printing of `wgint'
1783         argument.
1784         (number_to_static_string): New function.
1785
1786         * all: Replace printf("%ld", long_value) with printf("%s",
1787         number_to_static_string(wgint_value)).
1788
1789 2005-02-18  Mauro Tortonesi <mauro@ferrara.linux.it>
1790
1791         * main.c: Added the --ftp-passwd command line option.
1792
1793         * init.c: Renamed command passwd to ftppasswd.
1794
1795 2005-02-11  Mauro Tortonesi <mauro@ferrara.linux.it>
1796         
1797         * string_t.c: Fixed a bug in do_escape and triggered escape of
1798         backslashes in string_escape to avoid ambiguities in the result
1799         string.
1800         
1801 2005-02-10  Mauro Tortonesi <mauro@ferrara.linux.it>
1802
1803         * string.h: Renamed to string_t.h to fix a compilation conflict 
1804         with the string.h header in the standard C library.
1805         
1806         * string.c: Renamed to string_t.c for consistency with string.h.
1807         
1808         * string_t.c: Ditto.
1809
1810         * string_t.h: Ditto.
1811         
1812 2004-12-31  Mauro Tortonesi <mauro@ferrara.linux.it>
1813
1814         * string.c: New file.
1815
1816         * string.h: New file.
1817
1818         * Makefile.in: Added string.c to the list of modules to compile.
1819
1820         * main.c: Updated copyright.
1821
1822 2004-11-18  Ulf Harnhammar <ulf.harnhammar.9485@student.uu.se>
1823
1824         * ftp-ls.c: Fixed a problem in ftp_parse_winnt_ls that could allow a
1825         malicious remote FTP server to crash wget.
1826
1827 2004-11-18  Hans-Andreas Engel <engel@node.ch>
1828
1829         * http.c: Enable --convert-links (-k) when a single page is downloaded
1830         via --output-document (-O).
1831
1832 2004-11-18  Mauro Tortonesi <mauro@deepspace6.net>
1833
1834         * connect.c: Minor correction to the comment in front of fd_peek.
1835
1836 2004-11-18  Leonid Petrov <nouser@lpetrov.net>
1837
1838         * retr.c: Fix a timeout problem in fd_read_body when using http_proxy.
1839
1840 2004-11-15  YAMAZAKI Makoto <Yamazaki.Makoto@fujixerox.co.jp>
1841
1842         * netrc.c: Fix termination by assertion bug in netrc parsing.
1843
1844 2004-05-09  David Fritz  <zeroxdf@att.net>
1845
1846         * mswindows.c (fake_fork): Pass entire command line to the child
1847         process.
1848
1849 2004-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
1850
1851         * http.c (gethttp): Fix typo: SCHEME_SSL -> SCHEME_HTTPS.
1852
1853 2004-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
1854
1855         * http.c (gethttp): Send the Proxy-Authorization header over
1856         non-SSL connections too.
1857
1858 2004-03-25  David Fritz  <zeroxdf@att.net>
1859
1860         * mswindows.c (fake_fork_child): Ignore error code when
1861         OpenFileMapping() fails; assume it failed because the object does
1862         not exist.
1863
1864 2004-03-24  David Fritz  <zeroxdf@att.net>
1865
1866         * mswindows.c (fake_fork): New function.
1867
1868         * mswindows.c (fork_to_background): Use it.
1869
1870 2004-03-19  David Fritz  <zeroxdf@att.net>
1871
1872         * mswindows.c (ws_hangup): Incorporate old fork_to_background()
1873         code.  Add event name argument.
1874         (fork_to_backgorund): Now a simple wrapper around ws_hangup().
1875         (ws_handler): Correctly handle the case when neither CTRLC_BACKGND
1876         nor CTRLBREAK_BACKGND are defined.  Don't bother handling close,
1877         logoff, or shutdown events.  Call ws_hangup() with the correct
1878         event name; don't assume it was CTRL+Break.
1879
1880 2004-03-19  Hrvoje Niksic  <hniksic@xemacs.org>
1881
1882         * url.c (url_parse): Decode %HH sequences in host name.
1883
1884 2004-03-04  Hrvoje Niksic  <hniksic@xemacs.org>
1885
1886         * convert.c (local_quote_string): Quote "#" as "%23" and "%" as
1887         "%25" when creating links to local files.
1888
1889 2004-03-02  David Fritz  <zeroxdf@att.net>
1890
1891         * mswindows.c (ws_percenttitle): Guard against future changes by
1892         doing nothing if the proper variables have not been initialized.
1893         Clamp percentage value.
1894
1895 2004-03-04  Gisle Vanem  <giva@bgnett.no>
1896
1897         * retr.c (fd_read_body): Don't change console title if quiet.
1898
1899 2004-02-25  David Fritz  <zeroxdf@att.net>
1900
1901         * mswindows.c (set_sleep_mode): Remove argument and return value.
1902         Call GetModuleHandle() instead of LoadLibrary()/FreeLibrary() for
1903         kernel32.dll.  Use typedef for function-pointer.  Don't cast
1904         l-value.  Don't use dereference operator when calling through
1905         function-pointer.
1906         (ws_startup): Update call to set_sleep_mode().
1907         (ws_cleanup): Remove call to set_sleep_mode().
1908
1909 2004-02-23  David Fritz  <zeroxdf@att.net>
1910
1911         * http.c (http_loop): Ditto.
1912
1913         * ftp.c (ftp_loop_internal): Update call to ws_changetitle().
1914
1915         * main.c (main): Don't bother calling ws_changetitle().
1916
1917         * mswindows.h (ws_changetitle): Update prototype.
1918
1919         * mswindows.c (ws_changetitle): Remove second argument.  Use
1920         xfree_null().
1921         (ws_percenttitle): Only update title when percentage has changed.
1922
1923 2004-02-23  David Fritz  <zeroxdf@att.net>
1924
1925         * mswindows.h: Ditto.
1926
1927         * mswindows.c: Misc. formatting/comment tweaks throughout.
1928
1929 2004-02-20  David Fritz  <zeroxdf@att.net>
1930
1931         * main.c (print_help): Remove call to ws_help().
1932
1933         * mswindows.c (ws_help): Remove.
1934
1935         * mswindows.h (ws_help): Remove.
1936
1937 2004-02-16  David Fritz  <zeroxdf@att.net>
1938
1939         * init.c (home_dir): Use aprintf() instead of xmalloc()/sprintf().
1940         Under Windows, if $HOME is not defined, use the directory that
1941         contains the Wget binary instead of hard-coded `C:\'.
1942         (wgetrc_file_name): Under Windows, look for $HOME/.wgetrc then, if
1943         not found, look for wget.ini in the directory of the Wget binary.
1944
1945         * mswindows.c (ws_mypath): Employ slightly more robust methodology.
1946         Strip trailing path separator.
1947
1948 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
1949
1950         * http.c (gethttp): Respect --ignore-length.
1951         (gethttp): Inhibit keep-alive if --ignore-length is specified.
1952
1953 2004-02-06  Hrvoje Niksic  <hniksic@xemacs.org>
1954
1955         * connect.c (sockaddr_set_data): Zero out
1956         sockaddr_in/sockaddr_in6.  Apparently BSD-derived stacks need this
1957         when binding a socket to local address.
1958
1959 2004-02-04  Hrvoje Niksic  <hniksic@xemacs.org>
1960
1961         * hash.c: Make the file compilable outside Wget source tree when
1962         -DSTANDALONE is used.
1963
1964 2004-01-29  Hrvoje Niksic  <hniksic@xemacs.org>
1965
1966         * utils.c (determine_screen_width): Return 0 if not running on
1967         Windows or on a TIOCGWINSZ-capable system.
1968
1969 2004-01-28  David Fritz  <zeroxdf@att.net>
1970
1971         * utils.c (determine_screen_width): Correctly determine console
1972         width under Windows.
1973
1974 2004-01-28  Christian Biere  <christianbiere@gmx.de>
1975
1976         * progress.c (bar_set_params): Fixed syntax error when HAVE_ISATTY
1977         was undefined.
1978
1979         * ftp.c (ftp_loop_internal): Allocate a larger buffer in case
1980         "try" gets translated to something large.  Ditto in http_loop in
1981         http.c.
1982
1983         * http.c (response_header_copy): Don't write to buf[BUFSIZE].
1984
1985         * ftp-opie.c (skey_response): Eliminate unnecessary string
1986         concatenation; just call gen_md5_update twice.
1987
1988 2004-01-25  Hrvoje Niksic  <hniksic@xemacs.org>
1989
1990         * utils.c (xsleep): Don't call usleep with values larger than
1991         1,000,000.
1992
1993 2003-12-16  Hrvoje Niksic  <hniksic@xemacs.org>
1994
1995         * http.c (gethttp): Fix generation of `Content-Length'.
1996
1997 2003-12-15  Gisle Vanem  <giva@bgnett.no>
1998
1999         * url.c (url_skip_credentials): Fixed return value; 'url' if no
2000         credentials.
2001
2002 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
2003
2004         * url.c (url_skip_credentials): Return a pointer directly.
2005
2006 2003-12-14  Hrvoje Niksic  <hniksic@xemacs.org>
2007
2008         * url.c (url_file_name): Ditto.
2009         (parse_errors): Ditto.
2010
2011         * retr.c (retr_rate): Ditto.
2012
2013         * progress.c (create_image): Ditto.
2014
2015         * netrc.c (parse_netrc): Ditto.
2016
2017         * main.c (struct cmdline_option): Ditto.
2018         (redirect_output_signal): Ditto.
2019
2020         * init.c (commands): Ditto.
2021
2022         * ftp-ls.c (ftp_index): Ditto.
2023
2024         * cookies.c (check_domain_match): Declare the pointer to a literal
2025         string as `const'.
2026
2027 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
2028
2029         * retr.c (fd_read_body): Pass total size to progress_create, not
2030         the remaining amount.
2031
2032 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
2033
2034         * retr.c (fd_read_body): Don't fiddle with "interactive timeout"
2035         if read timeout is unset.
2036
2037 2003-12-12  Hrvoje Niksic  <hniksic@xemacs.org>
2038
2039         * connect.c (bind_local): Don't set the IPV6_V6ONLY option on the
2040         socket.
2041
2042 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
2043
2044         * url.c (url_file_name): Respect the setting of
2045         opt.protocol_directories.
2046
2047         * main.c (main): Only check for ret=='?' when longindex is unset.
2048         (option_data): New option --protocol-directories.
2049
2050 2003-12-06  Hrvoje Niksic  <hniksic@xemacs.org>
2051
2052         * ftp.c (getftp): Ditto.
2053
2054         * http.c (gethttp): Correctly calculate bandwidth as total data
2055         read divided with download time.
2056
2057         * retr.c (fd_read_body): Separate the return values for data
2058         written and read.
2059
2060 2003-12-05  Hrvoje Niksic  <hniksic@xemacs.org>
2061
2062         * http.c (H_REDIRECTED): Respect the HTTP/1.1 "303 See Other"
2063         response code.
2064         Suggested by Dan Razzell.
2065
2066 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
2067
2068         * retr.c (fd_read_body): Report the amount of data *written* as
2069         amount_read.  This is not entirely logical, but that's what the
2070         callers expect, and it's not easy to change.
2071
2072         * ftp.c (ftp_loop_internal): Ditto.
2073
2074         * http.c (http_loop): Be smarter about assigning restval; if we're
2075         in the nth pass of a download, simply use the information we have
2076         about how much data has been retrieved as restval.
2077
2078         * ftp.c (getftp): Ditto for FTP "REST" command.
2079
2080         * http.c (gethttp): When the server doesn't respect range, skip
2081         the first RESTVAL bytes of the read body.  Never truncate the
2082         output file.
2083
2084         * retr.c (fd_read_body): Support skipping initial STARTPOS octets.
2085
2086 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
2087
2088         * http.c (skip_short_body): Renamed skip_body to skip_short_body;
2089         don't bother calling fd_read_body.
2090
2091 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
2092
2093         * retr.c (fd_read_body): Sanitize arguments and document them
2094         better.  Make sure the timer is created and updated only if
2095         necessary.  Updated callers.
2096
2097 2003-11-30  Hrvoje Niksic  <hniksic@xemacs.org>
2098
2099         * http.c (skip_body): New function.
2100         (gethttp): Use it to skip the body of the responses we don't care
2101         to download.  That allows us to reuse the connection.
2102         (gethttp): Trust that the HEAD requests will not generate body
2103         data.
2104
2105         * retr.c (fd_read_body): Don't write to OUT if it's NULL.
2106
2107 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
2108
2109         * http.c (gethttp): Initialize SSL only the first time when SSL
2110         URL is downloaded.
2111
2112 2003-11-29  Hrvoje Niksic  <hniksic@xemacs.org>
2113
2114         * cookies.c (cookie_header): Only generate the contents of the
2115         header, not the leading "Cookie: " or the trailing "\r\n".
2116
2117         * http.c (gethttp): When adding headers specified with `--header',
2118         allow them to override the headers generated by Wget.
2119
2120         * init.c (cmd_spec_header): Made opt.user_headers a vector.
2121
2122         * http.c (request_new): New function.  Returns a request structure
2123         which can be modified in various ways, most notably by adding HTTP
2124         headers to the request.
2125         (request_set_header): New function for adding the header to the
2126         request.  If the header is already available, it gets replaced.
2127         (request_send): Construct and send the request.
2128         (gethttp): Use the request_* functions to generate the request.
2129
2130 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
2131
2132         * http.c (gethttp): Don't include the Proxy-Authorization header
2133         in the request tunneled through proxy.
2134
2135 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
2136
2137         * http.c (gethttp): Use the CONNECT handle to establish SSL
2138         passthrough through non-SSL proxies.
2139
2140 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
2141
2142         * init.c: Don't #include netinet/Winsock stuff.
2143
2144 2003-11-28  Hrvoje Niksic  <hniksic@xemacs.org>
2145
2146         * http.c: Deleted the old functions header_process,
2147         header_extract_number, header_exists, header_strdup,
2148         http_process_range, http_process_none, http_process_type, and
2149         http_process_connection.
2150
2151         * http.c (response_new): New function.
2152         (response_header_bounds): Ditto.
2153         (response_header_copy): Ditto.
2154         (response_header_strdup): Ditto.
2155         (response_status): Ditto.
2156         (gethttp): Use the new response_* functions to parse the response.
2157         Support HTTP/0.9 responses.
2158
2159 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
2160
2161         * progress.c (create_image): Don't calculate ETA if nothing has
2162         been downloaded yet, because it causes division by zero.
2163
2164 2003-11-27  Hrvoje Niksic  <hniksic@xemacs.org>
2165
2166         * connect.c (bind_local): Rename sa_len to addrlen because IRIX
2167         headers define sa_len as a macro.
2168
2169 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
2170
2171         * html-parse.c (convert_and_copy): Remove embedded newlines when
2172         AP_TRIM_BLANKS is specified.
2173
2174 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
2175
2176         * ftp.c: Set con->csock to -1 where rbuf_uninitialize was
2177         previously used.
2178
2179 2003-11-26  Hrvoje Niksic  <hniksic@xemacs.org>
2180
2181         * Makefile.in (http$o): Added the trailing backslash that was
2182         missing.
2183
2184 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
2185
2186         * headers.c: Removed.  The file is no longer relevant, now that no
2187         special handling of headers is done by the rbuf code.  Moved
2188         portions to http.c.
2189
2190 2003-11-21  Hrvoje Niksic  <hniksic@xemacs.org>
2191
2192         * rbuf.c: Removed.
2193
2194         * ftp-basic.c (ftp_response): Use fd_read_line.  No longer use
2195         struct rbuf.  Updated all callers.
2196
2197         * http.c (gethttp): Use fd_read_head to read all the headers in
2198         one go.
2199         (next_header): New function.
2200
2201         * retr.c (fd_read_line): New function: reads a line from FD,
2202         leaving the rest of the data unread.
2203         (fd_read_head): New function.
2204
2205         * connect.c (fd_peek): New function, implements peeking.
2206         (poll_internal): New function.
2207         (fd_read): Use it.
2208         (fd_write): Ditto.
2209         (fd_peek): Ditto.
2210         (fd_register_transport): Allow registering a "peeker" callback.
2211
2212 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
2213
2214         * connect.c: Renamed xread/xwrite/xclose to
2215         fd_read/fd_write/fd_close.  The "x" prefix is not appropriate
2216         because the semantics have diverged from read/write/close too
2217         significantly.  Updated all callers.
2218
2219 2003-11-20  Hrvoje Niksic  <hniksic@xemacs.org>
2220
2221         * connect.c (sock_write): It's not necessary to initialize RES.
2222
2223 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
2224
2225         * main.c (main): Don't reference opt.ipv4_only and opt.ipv6_only
2226         if IPv6 is disabled.
2227
2228 2003-11-19  Hrvoje Niksic  <hniksic@xemacs.org>
2229
2230         * connect.c (socket_has_inet6): Only compile it if IPv6 is enabled
2231         and AI_ADDRCONFIG is missing.
2232
2233 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
2234
2235         * gen_sslfunc.c (ssl_init_prng): Warn the user when using a weak
2236         random seed.
2237
2238 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
2239
2240         * host.c (address_list_contains): Renamed address_list_find to
2241         address_list_contains because its result is boolean.
2242
2243 2003-11-18  Hrvoje Niksic  <hniksic@xemacs.org>
2244
2245         * connect.c (select_fd): Return 1 if select is not available.
2246
2247 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
2248
2249         * connect.c (connect_to_host): Don't reference address list after
2250         releasing it.
2251
2252 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
2253
2254         * main.c (print_help): Fix alignment of FTP options output.
2255
2256 2003-11-17  Hrvoje Niksic  <hniksic@xemacs.org>
2257
2258         * host.c (lookup_host): Check for the ability to create IPv6
2259         sockets here.
2260
2261         * init.c (defaults): Don't auto-set --inet4-only on IPv6-less
2262         systems.
2263
2264 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
2265
2266         * main.c (print_help): Fix typo in `-O' help message.  Fix docs of
2267         -Y/--proxy.  Fix docs of `--cookies' and `--glob'.  Improve docs
2268         of --convert-links.  Fix docs of SSL options.
2269
2270 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
2271
2272         * ftp-basic.c: Don't include <arpa/inet.h> and others because
2273         they're no longer needed.
2274
2275 2003-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
2276
2277         * main.c (main): Don't allow setting of both opt.ipv4_only and
2278         opt.ipv6_only.
2279
2280         * init.c (defaults): Mark opt.ipv4_only specially when set
2281         automatically.
2282
2283 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
2284
2285         * host.c (lookup_host): Use AI_ADDRCONFIG only if the family is
2286         unspecified.  This ensures that specifying `--no-inet4' on systems
2287         where IPv6 resolves, but doesn't work behaves the same regardless
2288         of the availability of AI_ADDRCONFIG.
2289
2290 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
2291
2292         * host.c: Don't refer to the now-removed function
2293         forget_host_lookup in the documentation of lookup_host.
2294
2295 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
2296
2297         * http.c (persistent_available_p): Correctly specify the endpoint
2298         argument to socket_ip_address.
2299         (gethttp): When printing the "reusing connection to..." message,
2300         specify the host name of the reused connection, not the current
2301         host name.  That makes more sense because it provides a useful
2302         piece of information -- we know to which host we're supposed to
2303         connect anyway!
2304
2305 2003-11-15  Hrvoje Niksic  <hniksic@xemacs.org>
2306
2307         * init.c: Make sure the options are in alphabetic order!
2308
2309         * host.c (lookup_host): Merge lookup_host_passive and lookup_host
2310         after all -- having both would result in some code duplication.
2311         (lookup_host): Set hints.ai_family to AF_INET if ipv4_only is
2312         requested.  Likewise, set it to AF_INET6 for ipv6_only.  Specify
2313         AI_ADDRCONFIG where available.
2314         (lookup_host): New flag LH_REFRESH that specifies that a cached
2315         entry for HOST should be refreshed.
2316         (cache_query): New function.
2317         (cache_store): Ditto.
2318         (cache_remove): Ditto.
2319         (forget_host_lookup): No longer necessary, replaced with static
2320         function cache_remove.
2321
2322 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
2323
2324         * main.c: Enable -4 and -6 only if IPv6 is enabled.
2325
2326 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
2327
2328         * connect.c (register_transport): Renamed from register_extended.
2329         Explain the intended usage.
2330
2331 2003-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
2332
2333         * url.c (uri_merge): Merging "foo" and "bar" should result in
2334         "bar", not in "foo/bar".
2335         (path_simplify): Don't remove empty path elements; don't
2336         special-case leading slash.
2337         (path_simplify): Don't swallow ".."'s at the beginning of string.
2338         E.g. simplify "foo/../../bar" as "../bar", not as "bar".
2339         (append_uri_pathel): Defang ".." path element upon encountering
2340         it.
2341
2342 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
2343
2344         * http.c (persistent_available_p): Don't attempt to talk to two
2345         different SSL sites over the same secure connection.
2346
2347 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
2348
2349         * http.c (gethttp): Ditto.
2350
2351         * ftp.c (getftp): Use retryable_socket_connect_error instead of
2352         CONNECT_ERROR.
2353
2354         * wget.h (CONNECT_ERROR): Removed.
2355
2356         * connect.c (retryable_socket_connect_error): New function instead
2357         of unsupported_socket_family_error.
2358
2359 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
2360
2361         * wget.h (CONNECT_ERROR): Use it.
2362
2363         * connect.c (unsupported_socket_family_error): New function.
2364
2365 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
2366
2367         * connect.c (bind_local): Renamed bindport to bind_local; return
2368         the socket directly.  Updated callers.
2369         (accept_connection): Renamed acceptport to accept_connection;
2370         return the created socket directly.  Updated callers.
2371
2372 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
2373
2374         * init.c (defaults): Turn on opt.ipv4_only if we're compiling with
2375         IPv6, and AI_ADDRINFO is not available, and AF_INET6 sockets can't
2376         be created.
2377
2378 2003-11-13  Hrvoje Niksic  <hniksic@xemacs.org>
2379
2380         * host.c (lookup_host): Document the fact that the addresses are
2381         returned in order.
2382
2383 2003-11-12  Hrvoje Niksic  <hniksic@xemacs.org>
2384
2385         * utils.c: Use limits.h only where available.
2386
2387         * hash.c: Use INVALID_PTR and INVALID_PTR_BYTE.  Include limits.h.
2388
2389 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
2390
2391         * main.c: Added options --inet4-only and --inet6-only.
2392
2393 2003-11-11  Hrvoje Niksic  <hniksic@xemacs.org>
2394
2395         * host.c (host_errstr): Use the more standard message "Unknown
2396         host".
2397
2398 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
2399
2400         * connect.c (connect_to_host): Use that flag to decide whether to
2401         re-resolve the host name.
2402
2403         * host.c (struct address_list): Added a flag that maintains
2404         whether the connection worked at some point.
2405
2406 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
2407
2408         * host.c (lookup_host): Special-case the numeric addresses only in
2409         the non-IPv6 case.
2410
2411 2003-11-10  Hrvoje Niksic  <hniksic@xemacs.org>
2412
2413         * connect.c (resolve_bind_address): Call lookup_host_passive.
2414         Make sure that opt.bind_address is resolved only once.
2415
2416         * host.c (lookup_host_passive): New function, handles "passive"
2417         lookups.
2418         (lookup_host): Remove the passive flags.  Remove the
2419         family-related flags -- use ip_default_family instead.
2420
2421 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
2422
2423         * html-url.c: Get URLs from <object data="...">.
2424
2425 2003-11-09  Hrvoje Niksic  <hniksic@xemacs.org>
2426
2427         * main.c (option_data): Specify the command to use for --mirror.
2428
2429 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2430
2431         * cookies.c (cookie_handle_set_cookie): Specify exact match for
2432         unspecified domains.
2433
2434 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2435
2436         * main.c (main): Removed one-letter options `-C', `-g', `-G', and
2437         `-s'.
2438
2439 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2440
2441         * main.c (main): Add --dont-remove-listing for backward
2442         compatibility with previous versions.
2443         (print_help): Fix typo, spotted by Dennis Smit.
2444
2445 2003-11-08  Gisle Vanem  <giva@bgnett.no>
2446
2447         * ftp-basic.c: Support Windows-2000 ftp servers. Win-2000 *is*
2448         Win-NT 5.0 so calling it ST_WINNT is okay I guess.
2449
2450 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2451
2452         * progress.c (update_speed_ring): Clear the speed ring when the
2453         download stalls.
2454
2455         * retr.c (get_contents): Specify 0.95s read timeout, so that the
2456         progress gauge can be updated even when data arrives very slowly
2457         or stalls.
2458
2459 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2460
2461         * utils.c (wtimer_allocate): Bless the use of wtimer_read on a
2462         timer that has merely been allocated because get_contents() does
2463         that.
2464         (wtimer_update): Abort if the timer is not initialized.
2465
2466 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2467
2468         * retr.c (get_contents): Pass the timer to limit_bandwidth().
2469
2470         * utils.c (wtimer_update): New function instead of wget_elapsed;
2471         just update the timer, but don't return anything.
2472         (wtimer_read): Read and return the last known value of the timer.
2473
2474 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2475
2476         * http.c (persistent_available_p): Instead of matching all the
2477         addresses of HOST and last host, determine the peer's IP address
2478         with socket_ip_address and see if that address is one of those
2479         HOST resolves to.
2480
2481         * host.c (address_list_match_all): Removed.
2482         (address_list_find): New function, finds an IP address in the
2483         address list.
2484
2485         * ftp.c (ftp_do_pasv): Get the peer's address here, and pass it to
2486         ftp_epsv so it doesn't need to call getpeername.
2487
2488         * ftp-basic.c (ftp_port): Use socket_ip_address instead of
2489         getpeername.
2490         (ftp_lprt): Ditto.
2491
2492         * connect.c (socket_ip_address): Replaces conaddr, generalized to
2493         either get peer's or local address.
2494         (sockaddr_get_data): Made local to this file.
2495
2496 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2497
2498         * hash.c (HASH_POSITION): Explicitly accept the hash function.
2499         (grow_hash_table): Extract ht->hash_function outside the loop.
2500         (hash_table_remove): Ditto.
2501         (hash_table_clear): Fill entries with 0xff to clear them.
2502         (hash_table_remove): Mark entries as deleted with the correct
2503         marker.
2504
2505 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2506
2507         * http.c (persistent_available_p): No reason for the host lookup
2508         to be silent -- it's a lookup like any other.
2509
2510 2003-11-08  Hrvoje Niksic  <hniksic@xemacs.org>
2511
2512         * connect.c (register_extended): Check that fd >= 0.
2513
2514 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
2515
2516         * connect.c (LAZY_RETRIEVE_INFO): Set LAST_INFO.
2517
2518 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
2519
2520         * hash.c (NON_EMPTY): Use the all-bit-set value as the marker that
2521         the field is empty.  This allows NULL pointer and 0 value to be
2522         used as keys, which is necessary for the connect.c code to work
2523         when fd==0.
2524         (hash_table_new): Fill mappings with 0xff.
2525         (grow_hash_table): Ditto.
2526
2527 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
2528
2529         * url.c (url_parse): Allow empty ports.
2530
2531 2003-11-07  Hrvoje Niksic  <hniksic@xemacs.org>
2532
2533         * main.c (print_help): Break the help string into multiple chunks.
2534         (cmdline_option): New option handler OPT_FUNCALL.  Generalized
2535         HANDLE_CMD to generic DATA.
2536         (option_data): Use the new OPT_FUNCALL feature.
2537
2538 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
2539
2540         * log.h: Declare log_init, log_close, and
2541         log_request_redirect_output here.
2542
2543 2003-11-05  Dennis Smit  <ds@nerds-incorporated.org>
2544
2545         * main.c: (main): added --preserve-permissions option.
2546
2547         * ftp.c (ftp_retrieve_list): added support for
2548         --preserve-permissions option.
2549
2550         * init.c: added support for --preserve-permission option.
2551
2552         * option.h: added support for --preserve-permission option.
2553
2554 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
2555
2556         * main.c (init_switches): New function.  Convert option_data to
2557         long_options and short_options, which can be fed to getopt_long.
2558         (main): Execute command-line options by consulting option_data.
2559
2560 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
2561
2562         * gen_sslfunc.c (ssl_read): Implement a more correct check for
2563         EINTR.
2564         (ssl_write): Ditto.
2565         (init_ssl): Use a global SSL context.
2566
2567 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
2568
2569         * connect.c (xclose): Free INFO even if it doesn't provide a
2570         closer.
2571
2572 2003-11-06  Hrvoje Niksic  <hniksic@xemacs.org>
2573
2574         * connect.c: Updated all callers of
2575         iread/ssl_iread/iwrite/ssl_iwrite to use xread and xwrite instead.
2576
2577         * rbuf.h (struct rbuf): Removed the SSL member because SSL is
2578         handled automatically by xread.
2579
2580         * hash.c (ptrhash): Made private.
2581         (ptrcmp): Ditto.
2582         (inthash): Removed.
2583
2584         * connect.c (select_fd): Don't set errno, leave it to the caller.
2585
2586         * gen_sslfunc.c (connect_ssl): Use register_extended to register
2587         SSL callbacks for communication with SSL-enabled endpoints.
2588         (ssl_read): New function.
2589         (ssl_write): Ditto.
2590         (ssl_poll): Ditto.
2591         (ssl_close): Ditto.
2592
2593         * connect.c (register_extended): New function -- register
2594         callbacks for basic socket operations.
2595         (xread): Ditto.
2596         (xwrite): Ditto.
2597         (xclose): Ditto.
2598         (sock_read): New function, default implementation for reading.
2599         (sock_write): Ditto for writing.
2600         (sock_poll): Ditto for polling.
2601         (sock_close): Ditto for closing.
2602
2603 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
2604
2605         * connect.c (bindport): Fix compilation under pre-C99 compilers.
2606
2607 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
2608
2609         * connect.c (connect_to_ip): More compact error checking.
2610         (bindport): Don't treat failed setsockopt as a fatal error.
2611
2612 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
2613
2614         * connect.c (resolve_bind_address): Use a more accurate error
2615         message -- we're not binding to ANY, we're disabling bind
2616         altogether.
2617
2618 2003-11-05  Hrvoje Niksic  <hniksic@xemacs.org>
2619
2620         * cookies.c (save_cookies_mapper): Respect the setting of
2621         keep-session-cookies.
2622         (cookie_jar_load): Import session cookies.
2623         Based on code submitted by Nicolas Schodet.
2624
2625         * utils.c (datetime_str): Use information in TM when it's
2626         non-NULL.
2627
2628         * main.c (main): New option `--keep-session-cookies'.
2629
2630 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
2631
2632         * Makefile.in (realclean): Delete config.h.in.
2633
2634 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
2635
2636         * config-post.h: New file, included from now autogenerated
2637         config.h.in.
2638
2639 2003-11-04  Hrvoje Niksic  <hniksic@xemacs.org>
2640
2641         * progress.c (progress_handle_sigwinch): Don't call
2642         determine_screen_width() from the signal handler.  Instead, just
2643         set a volatile variable.
2644         (bar_create): Check whether SIGWINCH was received.
2645         (bar_update): Ditto.
2646
2647         * sysdep.h: Define SYSTEM_FNMATCH only if HAVE_FNMATCH_H is true.
2648
2649 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
2650
2651         * utils.c (xsleep): New function.  Uses nanosleep where available,
2652         resuming sleeps interrupted by signals.  Updated callers of sleep
2653         and usleep to use xsleep.
2654
2655 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
2656
2657         * ftp-basic.c (ftp_login): Remove shadowing (and bogus)
2658         declaration of SEED.
2659
2660 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
2661
2662         * log.c (logvprintf): Documented better.  Renamed to
2663         log_vprintf_internal to avoid confusion with the public API
2664         functions logprintf and logputs.
2665
2666 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
2667
2668         * wget.h (N_): Don't parenthesize argument.
2669
2670 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
2671
2672         * host.h (ADDRESS_IPV4_DATA): Don't take the address of in.s_addr
2673         because that doesn't work on machines that define it as bitfield.
2674
2675 2003-11-03  Hrvoje Niksic  <hniksic@xemacs.org>
2676
2677         * connect.c (select_fd): Generalize the third argument into WAIT,
2678         so that the caller can request waiting for both read and write.
2679         Updated callers.
2680
2681 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
2682
2683         * html-url.c (cleanup_html_url): Destroy the hash tables, don't
2684         just call free on them.
2685         (init_interesting): Use hash_table_put instead of string_set_add
2686         because we don't need the strdup that the latter function
2687         performs.
2688
2689         * init.c (cleanup): Don't pass NULL to cookie_jar_delete.
2690
2691         * xmalloc.c (xfree_real): Abort when passed a NULL pointer.
2692         (xfree_debug): Print at the file and line of the offending call to
2693         free.
2694
2695 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
2696
2697         * wget.h: Retired the `boolean' type.  Moved the DEFAULT_LOGFILE
2698         define to log.h.  Moved the INFINITE_RECURSION define to recur.h.
2699
2700         * xmalloc.h: Renamed FREE_MAYBE to xfree_null and moved the
2701         definition from wget.h to xmalloc.h.
2702
2703 2003-11-02  Hrvoje Niksic  <hniksic@xemacs.org>
2704
2705         * html-parse.c (decode_entity): New function; split the decoding
2706         of entities here.
2707         (convert_and_copy): Use it to decode entities.
2708         (decode_entity): Handle the &apos entity.
2709         (decode_entity): Don't decode Latin 1 numeric entities.  Don't
2710         decode &#0.
2711
2712 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
2713
2714         * ftp-opie.c (calculate_skey_response): Use uint32_t instead of
2715         `unsigned long' for the cheksum array.  Document the function.
2716
2717 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
2718
2719         * connect.c (acceptport): Don't call select_fd when timeout is not
2720         requested.
2721
2722 2003-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
2723
2724         * host.c: Removed the ip_default_family global variable.
2725
2726         * host.c (lookup_host): Document the function.  Fixed declaration
2727         of VEC.
2728
2729 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
2730
2731         * various: Use new macros xnew, xnew0, xnew_array, and xnew0_array
2732         in various places.
2733
2734 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
2735
2736         * wget.h: Move declarations of malloc and logging code to
2737         xmalloc.h and log.h respectively to unclutter this file.
2738         (STRDUP_ALLOCA): Made it side-effect free.
2739
2740         * xmalloc.h: New files.  Define macros xnew, xnew0, xnew_array,
2741         and xnew0_array.
2742
2743         * xmalloc.c: New file.  Move the xmalloc routines here.
2744
2745 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
2746
2747         * connect.c (sockaddr_set_data): Remove the broken code that
2748         checked for NULL address.
2749
2750 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
2751
2752         * host.c (address_list_from_single): Removed.
2753         (address_list_from_ipv4_addresses): Renamed from
2754         address_list_from_vector.
2755
2756 2003-10-31  Hrvoje Niksic  <hniksic@xemacs.org>
2757
2758         * sysdep.h (CLOSE): Don't call close on file descriptors less than
2759         0, i.e. on uncreated sockets.
2760
2761         * connect.c (resolve_bind_address): Work on struct sockaddr
2762         directly.
2763         (connect_to_host): Replacement for connect_to_many.  Resolve HOST
2764         and connect to any of its addresses.  If we can't connect and the
2765         host name lookup was cached, try to resolve it again.  This should
2766         fix problems with hosts behind dynamic DNS.  Updated all callers.
2767         (connect_to_ip): Replacement for connect_to_one.  Removed SILENT;
2768         added the argument PRINT instead.  Updated all callers.
2769         (set_connection_host_name): Removed.
2770
2771         * host.c (address_list_address_at): New function instead of
2772         address_list_copy_one. It returns a pointer to ip_address *, so
2773         it's not necessary to copy the data.
2774         (address_list_cached_p): New function.
2775         (forget_host_lookup): Ditto.
2776
2777         * connect.c: Got rid of the MSOCK global variable.  Made bindport
2778         return the local socket it creates.  Added a new argument to
2779         acceptport, the socket to call accept on.  Updated callers.
2780         (closeport): Removed.
2781
2782         * connect.c: Moved the sockaddr code from host.c to this file,
2783         because most of that stuff is used for connecting, and has nothing
2784         to do with host names anyway.
2785         (sockaddr_set_data, sockaddr_get_data): New functions, replace the
2786         old sockaddr_set_address, sockaddr_set_port, sockaddr_get_address,
2787         and sockaddr_get_port.
2788
2789 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
2790
2791         * sysdep.h: Use `S >= 8' rather than `S == 8' when looking for
2792         large integers.
2793
2794 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
2795
2796         * url.c (append_uri_pathel): New argument ESCAPED_P that says
2797         whether [B, E) is to be treated as URL-escaped or not.  If
2798         ESCAPED_P is false, don't unescape the region.
2799         (url_file_name): u->file is not URL-escaped.
2800
2801 2003-10-30  Hrvoje Niksic  <hniksic@xemacs.org>
2802
2803         * retr.c (retrieve_from_file): Use retrieve_tree for
2804         page-requisites.
2805
2806         * main.c (main): Don't define opt.recursive when -p is used.
2807         Instead, make sure that recursion is used for HTTP in that case.
2808
2809 2003-10-29  Hrvoje Niksic  <hniksic@xemacs.org>
2810
2811         * host.h: Defined accessors for elements of ip_address.  Updated
2812         all callers.
2813         (address_list_match_all): Use memcmp in the non-IPv6 case.
2814
2815         * wget.h (CONNECT_ERROR): Don't retry connecting if connect()
2816         returned EAFNOSUPPORT.
2817
2818 2003-10-27  Mauro Tortonesi <mauro@deepspace6.net>
2819
2820         * connect.h: changed bindport prototype and added the related
2821         BIND_ON_IPV4_ONLY and BIND_ON_IPV6_ONLY flags.
2822
2823         * connect.c: changed bindport and resolve_bind_address to allow
2824         protocol-version specific DNS resolution. modified conaddr,
2825         acceptport and connect_to_one to make use of struct
2826         sockaddr_storage and of the new ip_address structure.
2827
2828         * ftp-basic.c: added LPRT/LPSV (RFC1639) support, refactored
2829         PORT/PASV (RFC959) and EPRT/EPSV (RFC2428) support code.
2830
2831         * ftp.c: added the ftp_do_port and ftp_do_pasv functions to
2832         handle FTP over IPv6.
2833
2834         * ftp.h: changed prototype of ftp_epsv and added prototypes for
2835         ftp_lpsv, ftp_lprt and ftp_eprt.
2836
2837         * host.c: renamed the
2838         wget_sockaddr_set_address and wget_sockaddr_get_addr, and
2839         wget_sockaddr_{s,g}et_port couples to sockaddr_{s,g}et_address and
2840         sockaddr_{g,s}et_port respectively.  changed
2841         address_list_match_all, address_list_from_addrinfo sockaddr_len,
2842         pretty_print_address, lookup_host, sockaddr_{s,g}et_address and
2843         sockaddr_{g,s}et_port to make use of struct sockaddr_storage and
2844         of the new ip_address structure.  removed map_ipv4_to_ip and
2845         map_ip_to_ipv4.
2846
2847         * host.h: redefined structure ip_address and removed structure
2848         wget_sockaddr.
2849
2850 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
2851
2852         * sysdep.h: Include inttypes.h where available.
2853
2854         * host.c: Switch from u_int32_t to uint32_t.
2855
2856 2003-10-26  Hrvoje Niksic  <hniksic@xemacs.org>
2857
2858         * netrc.c (parse_netrc): Reset the QUOTE flag after the closing
2859         quote.
2860
2861 2003-10-25  Hrvoje Niksic  <hniksic@xemacs.org>
2862
2863         * url.c (is_valid_ipv6_address): Reformat to GNU coding style.
2864         Use enums for NS_IN* constants.  Use ISXDIGIT.
2865
2866         * convert.c (construct_relative): Document better how the function
2867         works.
2868
2869 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
2870
2871         * config.h.in: Deploy preprocessor magic to avoid Ultrix's
2872         <netdb.h> include <bitypes.h> which defines its own u_int32_t.
2873         Reported by Bernhard Simon.
2874
2875 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
2876
2877         * version.c: Bump version.
2878
2879 2003-10-23  Hrvoje Niksic  <hniksic@xemacs.org>
2880
2881         * url.c: Ditto.
2882
2883         * html-parse.c (advance_declaration): Don't use trailing comma in
2884         enum because older compilers don't support it.
2885
2886         * utils.c: Don't redefine HAVE_SIGSETJMP.
2887
2888 2003-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
2889
2890         * convert.c (construct_relative): Don't handle absolute files
2891         specially -- for example, -P/tmp/foo shouldn't imply that
2892         converted files must refer to "/tmp/foo/..."!
2893
2894 2003-10-15  Hrvoje Niksic  <hniksic@xemacs.org>
2895
2896         * http.c: Consider status 307 a valid redirect.
2897
2898 2003-10-15  Philip Stadermann  <philip.stadermann@credativ.de>
2899
2900         * ftp.c (ftp_retrieve_glob): Correctly loop through the list whose
2901         elements might have been deleted.
2902
2903 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
2904
2905         * html-url.c (tag_handle_meta): Set the Refresh link to expect
2906         HTML.
2907         (append_one_url): Renamed to append_url.
2908
2909 2003-10-13  Hrvoje Niksic  <hniksic@xemacs.org>
2910
2911         * sysdep.h: Only define u_int32_t.
2912
2913 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
2914
2915         * utils.c (large_int_to_string): Use snprintf() to print the
2916         number.  This will work even on systems where libc doesn't
2917         understand %lld, but the compiler does, because it will use our
2918         snprintf replacement.
2919
2920         * init.c (parse_bytes_helper): New function.
2921         (cmd_bytes): Use it to parse bytes, but cast the result to long.
2922         (cmd_bytes_large): Ditto, but store the result to LARGE_INT.  Used
2923         for --quota so that --quota=10G works even on machines without
2924         long long.
2925
2926         * options.h (struct options): Declare quota as LARGE_INT.
2927
2928         * retr.c (downloaded_exceeds_quota): Removed.
2929         (downloaded_increase): Ditto.
2930         (total_downloaded_bytes): New variable, replaces opt.downloaded,
2931         which was the wrong place for it anyway.  Updated callers of
2932         downloaded_exceeds_quota and downloaded_increase to check this
2933         variable directly.
2934
2935         * sysdep.h: Get rid of VERY_LONG_TYPE.  Use LARGE_INT for the same
2936         purpose, defined as `long', `long long' or `double', depending on
2937         size of long and whether long long is available.
2938
2939 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
2940
2941         * sysdep.h: Also check size of short for int32_t.
2942
2943 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
2944
2945         * host.c (lookup_host): Use u_int32_t to store the result of
2946         inet_addr().  That removes the need for offset fiddling, caring
2947         about endian-ness, etc.
2948
2949         * sysdep.h: Define int32_t and u_int32_t if not available.
2950
2951 2003-10-11  Hrvoje Niksic  <hniksic@xemacs.org>
2952
2953         * ftp-basic.c (ftp_epsv): Use socklen_t * as the third argument to
2954         getpeername.
2955
2956         * config.h.in: Define socklen_t stub.
2957
2958         * host.c (sockaddr_len): Return socklen_t.
2959
2960         * connect.c (conaddr): Use socklen_t as the third argument to
2961         accept, getsockname, and connect.
2962
2963 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
2964
2965         * recur.c (retrieve_tree): Don't descend into documents that are
2966         not expected to contain HTML, regardless of their content-type.
2967
2968         * html-url.c (tag_url_attributes): Record which attributes are
2969         supposed to yield HTML links that can be followed.
2970         (tag_find_urls): Propagate that information to the caller through
2971         struct urlpos.
2972
2973 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
2974
2975         * hash.c (find_mapping): Return the next available mapping when
2976         the key is not found, not NULL.
2977         (hash_table_put): Use find_mapping to find the storage for the new
2978         data.
2979         (hash_table_put): Grow the table before exceeding maximum
2980         fullness, not afterwards.
2981
2982 2003-10-10  Hrvoje Niksic  <hniksic@xemacs.org>
2983
2984         * hash.c (hash_table_new): Slightly change the meaning of the
2985         first parameter.  Instead of being the minimum initial size, it is
2986         now the minimum number of items that the hash table can take
2987         without needing to resize.
2988
2989 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
2990
2991         * html-url.c (init_interesting): Initialize interesting_tags and
2992         interesting_attributes as hash tables.  This simplifies the code
2993         immensely because hash tables handle allocation and remove
2994         duplicates automatically.
2995         (find_tag): Removed.
2996         (collect_tags_mapper): Instead of calling find_tag, simply get the
2997         entry from interesting_tags hash table, which is both simpler and
2998         faster.
2999
3000 2003-10-09  Hrvoje Niksic  <hniksic@xemacs.org>
3001
3002         * hash.c (hash_table_get): Declare hash-table argument as const.
3003         (find_mapping): Ditto.
3004         (hash_table_get_pair): Ditto.
3005         (hash_table_contains): Ditto.
3006         (hash_table_count): Ditto.
3007
3008 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3009
3010         * html-url.c (get_urls_html): Parse the appropriate flags to
3011         html-parse.c.
3012
3013         * html-parse.c (map_html_tags): Accept FLAGS from the caller
3014         instead of examining OPT.
3015
3016 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3017
3018         * html-url.c (find_tag): Switch to binary search.
3019
3020 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3021
3022         * main.c (print_help): Fix typo; stured -> stored.
3023
3024 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3025
3026         * getopt.c: Add definitions of getopt_long and getopt_long_only.
3027
3028 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3029
3030         * config.h.in: Renamed DEBUG to ENABLE_DEBUG.  ENABLE_DEBUG is, I
3031         think, a better name, because it implies that debugging output is
3032         merely possible, not "on by default", as might be construed from
3033         just DEBUG.
3034
3035 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3036
3037         * ftp.c (has_insecure_name_p): Define it here.
3038
3039         * utils.c (has_wildcards_p): Define it here.
3040
3041         * sysdep.h: Declare fnmatch-related macros here, if not using
3042         system fnmatch().  Update .c files to not declare fnmatch.h
3043         directly.
3044
3045         * cmpt.c (fnmatch): Moved here.  Use it only under non-GNU libc.
3046
3047 2003-10-08  Hrvoje Niksic  <hniksic@xemacs.org>
3048
3049         * getopt.c: Newer version, imported from Free libit.
3050
3051 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
3052
3053         * cookies.c (struct cookie): Remove unused backpointer to cookie
3054         jar.
3055
3056 2003-10-07  Hrvoje Niksic  <hniksic@xemacs.org>
3057
3058         * cmpt.c (memmove): Comment out, since it's no longer used.
3059
3060         * cookies.c (cookie_jar_generate_cookie_header): Allocate room for
3061         chains in one pass.
3062         (find_chains_of_host): Assume that the caller has allocated DEST
3063         to be sufficiently large to take all the data.
3064         (eliminate_dups): Run through the array and eliminate dups on the
3065         fly instead of using memmove.
3066         (cookie_jar_process_set_cookie): Free cookie->domain before
3067         re-setting it.
3068
3069 2003-10-05  Gisle Vanem  <giva@bgnett.no>
3070
3071         * mswindows.c (set_sleep_mode): Fix type of
3072         _SetThreadExecutionState.
3073
3074 2003-10-05  Hrvoje Niksic  <hniksic@xemacs.org>
3075
3076         * utils.c (file_size): Return -1 if fopen() returns NULL.  Prior
3077         to this patch, wget --post-file=nosuchfile dumped core.
3078
3079 2003-10-04  Gisle Vanem  <giva@bgnett.no>
3080
3081         * mswindows.c (run_with_timeout): Use WaitForSingleObject to wait
3082         for thread termination.
3083
3084 2003-10-04  Hrvoje Niksic  <hniksic@xemacs.org>
3085
3086         * log.c: Use `...' in function definitions; ansi2knr will convert
3087         them to va_dcl.  This allowed removal of the ugly VA_START_1 and
3088         VA_START_2 macros.
3089
3090 2003-10-03  Gisle Vanem  <giva@bgnett.no>
3091
3092         * connect.c: And don't include them here.
3093
3094         * mswindows.h: Include winsock headers here.
3095
3096 2003-10-03  Hrvoje Niksic  <hniksic@xemacs.org>
3097
3098         * html-parse.c (convert_and_copy): Move variable declarations
3099         before statements.
3100
3101 2003-10-02  Gisle Vanem  <giva@bgnett.no>
3102         
3103         * mswindows.c (run_with_timeout): For Windows: Run the 'fun' in a
3104         thread via a helper function. Continually query the thread's
3105         exit-code until finished or timed out.
3106
3107 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
3108
3109         * wget.h (XMALLOC_ARRAY): Removed.
3110         (ALLOCA_ARRAY): Ditto.
3111
3112         * html-parse.c: Renamed alloca_p to resized.
3113         (GROW_ARRAY): Renamed DO_REALLOC_FROM_ALLOCA to GROW_ARRAY and
3114         returned it to html-parse.c, since nothing else was using it.
3115
3116 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
3117
3118         * retr.c (retrieve_url): Initialize DUMMY storage for DT.  Caught
3119         by valgrind.
3120
3121 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
3122
3123         * html-parse.c (convert_and_copy): Handle numeric entities in
3124         hexadecimal, &#xHH.
3125         (convert_and_copy): Copy the contents directly to the pool without
3126         a stack-allocated intermediary.
3127
3128 2003-10-02  Hrvoje Niksic  <hniksic@xemacs.org>
3129
3130         * utils.c (alarm_set): New function; use either setitimer or alarm
3131         to set up the alarm.
3132         (alarm_cancel): New function; cancel the alarm set up by
3133         alarm_set.
3134         (run_with_timeout): Use them.
3135
3136 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
3137
3138         * url.c (url_parse): Don't leak memory when a reencoded URL turns
3139         out to be invalid.
3140
3141         * url.c (parse_errors): Mark error messages for translation.
3142         (url_error): Translate error messages returned to the caller.
3143
3144 2003-10-01  Hrvoje Niksic  <hniksic@xemacs.org>
3145
3146         * ftp.c (ftp_loop_internal): Initialize TMRATE to NULL to shut up
3147         the compiler.
3148
3149 2003-09-26  Gisle Vanem  <giva@bgnett.no>
3150
3151         * src/mswindows.c: Added ws_percenttitle() showing progress in the
3152         window titlebar. Called from retr.c. Secured ws_mypath().
3153
3154         * windows/config.h.ms: alloca() prototype not needed.  Removed
3155         "#undef ENABLE_NLS"; should be in Makefile IMHO. Moved
3156         WGET_USE_STDARG from mswindows.h to config.ms.h because of #ifdef
3157         in log.c. (MSVC's vararg.h and stdarg.h are incompatible).
3158
3159 2003-09-29  Aaron Hawley <Aaron.Hawley@uvm.edu>
3160
3161         * ftp.c (getftp): --spider option should now work with FTP
3162         downloads.
3163         (ftp_loop_internal): quiet reports and calculations of downloads
3164         when --spider option set, nor try deleting when --delete-after
3165         also set.
3166         (ftp_loop): --spider will skip HTML-ification of .listing file.
3167
3168 2003-09-26  Gisle Vanem  <giva@bgnett.no>
3169
3170         * mswindows.c (read_registry): Removed.
3171         (set_sleep_mode): New function.
3172         (windows_main_junk): Call it.
3173
3174 2003-09-26  Gisle Vanem  <giva@bgnett.no>
3175
3176         * mswindows.c (read_registry): Fix invocation of registry
3177         functions.
3178
3179         * mswindows.c (read_registry): Condition definitions of sleep and
3180         usleep with not HAVE_SLEEP and HAVE_USLEEP respectively.  Define
3181         HAVE_SLEEP and HAVE_USLEEP under __DMC__.
3182
3183 2003-09-24  Hrvoje Niksic  <hniksic@xemacs.org>
3184
3185         * url.c (url_escape_1): Revert unintentional change to lowercase
3186         xdigit escapes.
3187         (url_escape_dir): Document that this function depends on the
3188         output of url_escape_1.
3189
3190 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
3191
3192         * progress.c (create_image): Print the current ETA if we're done
3193         with the download.
3194         (create_image): Change '-' display char to '+' in the progress bar.
3195
3196         * Makefile.in (clean): Remove .libs.
3197
3198 2003-09-23  Hrvoje Niksic  <hniksic@xemacs.org>
3199
3200         * cookies.c (struct cookie): New flag domain_exact.
3201         (update_cookie_field): Skip leading dot in domain.
3202         (find_matching_chains): Match numeric addresses exactly; don't
3203         needlessly copy HOST to the stack.
3204         (matching_cookie): Added argument HOST.  If cookie->domain_exact
3205         is set, check that HOST is equal to cookie->domain.
3206         (cookie_jar_load): Only use TAB as delimiter.  Document the
3207         meaning of DOMAIN-FLAG.  Skip leading dot in domain.
3208         (cookie_jar_load): Don't ignore DOMAIN-FLAG -- instead, set
3209         domain_exact to true if DOMAIN-FLAG is false.
3210         (save_cookies_mapper): If domain_exact is false, prepend the
3211         domain with dot, like Mozilla does.
3212
3213 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
3214
3215         * progress.c (create_image): Print the initial part of the
3216         download with '-' characters, analogous to how dot progress prints
3217         the initial part with ','.
3218
3219         * hash.c (ptrhash): New function.
3220         (ptrcmp): Ditto.
3221         (hash_table_new): Default to identity hash table.
3222
3223 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
3224
3225         * safe-ctype.h (_sch_test): The cast of BIT to unsigned char was
3226         broken -- _sch_istable bitmasks are 16-bit, not 8-bit!  Cast BIT
3227         to unsigned short instead.
3228
3229 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
3230
3231         * url.c (path_simplify): Instead of calls to memmove, handle "./"
3232         and "../" by advancing pointers.
3233
3234 2003-09-22  Hrvoje Niksic  <hniksic@xemacs.org>
3235
3236         * retr.c (getproxy): Moved from url.c.
3237
3238         * convert.c: Split off link conversion from url.c into separate
3239         file.  Also included the book-keeping stuff from recur.c.
3240
3241 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
3242
3243         * init.c: Improved documentation of functions.
3244         (cmd_boolean): Attempt to make code that tries to avoid calling
3245         strcmp for "speed" a bit more readable.
3246
3247         * init.c (simple_atof): Report error on encountering non-digit,
3248         non-"." character.
3249         (simple_atoi): Replacement for myatoi(), calling interface
3250         compatible with simple_atof.  Updated myatoi's callers.
3251
3252 2003-09-21  Bertrand Demiddelaer  <bert@b3rt.org>
3253
3254         * url.c (path_simplify): Would read two bytes past the end of the
3255         string in the "./" case.
3256
3257 2003-09-21  Matthew J. Mellon  <mellon@tymenet.com>
3258
3259         * http.c (gethttp): Recognize content-type "application/xhtml+xml"
3260         as what Wget considers "text/html".
3261
3262 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
3263
3264         * connect.c (connect_with_timeout): Made timeout type double.
3265
3266         * options.h (struct options): New members read_timeout,
3267         dns_timeout, and connect_timeout.
3268         Use them.
3269
3270 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
3271
3272         * init.c (simple_atof): New function.
3273         (cmd_time): Use it.
3274         (cmd_bytes): Accept things like "1.5k" and such.  Use simple_atof
3275         to parse decimals.
3276
3277         * retr.c (limit_bandwidth): Adjust each sleep by the error of the
3278         previous one.
3279
3280 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
3281
3282         * main.c (main): Use setoptval() for setting the options.  Use
3283         run_command for `-e'.
3284
3285         * init.c (parse_line): Rewritten to return COMIND right away.
3286         Changed linkage to static.
3287         (run_wgetrc): Use the available comind when calling setval, so it
3288         doesn't have to be computed twice.
3289         (setval_internal): New function, runs the command's action without
3290         any error checking.
3291         (setoptval): New function, does what setval used to do, but exits
3292         in case of error.
3293         (run_command): New function.
3294
3295 2003-09-21  Hrvoje Niksic  <hniksic@xemacs.org>
3296
3297         * connect.c (select_fd): Change MAXTIME's type to double.  Handle
3298         its decimal part.
3299
3300         * retr.c (sleep_between_retrievals): In the random-wait case, use
3301         random_float() to wait between 0 and 2*opt.wait seconds.
3302
3303         * utils.c (run_with_timeout): Accept `double' timeouts.  Correctly
3304         handle timeout values in (0, 1) range.
3305         (random_float): New function.
3306
3307         * options.h (struct options): Change the types of wait, waitretry,
3308         and timeout to double.
3309
3310         * init.c (cmd_time): Accept floating point time.
3311
3312 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
3313
3314         * retr.c (get_contents): Cosmetic fixes.
3315
3316 2003-09-20  Hrvoje Niksic  <hniksic@xemacs.org>
3317
3318         * url.c (uri_merge): Get rid of uri_merge_1.
3319         (uri_merge): Merge "foo//", "bar" as "foo//bar", not "foo///bar",
3320         i.e. don't add an extra slash merely because BASE ends with two
3321         slashes.
3322         (parse_credentials): Renamed from parse_uname.  Rewrittern in
3323         standard [beg, end) calling style.
3324         (url_skip_credentials): Renamed from url_skip_uname.  Made static.
3325         (url_skip_credentials): Include # and ; as terminators.  Old code
3326         would mistakenly consider "http://foo.com#hniksic@iskon.hr" to
3327         contain a username.
3328         (url_skip_scheme): Removed because it was unused.
3329         (url_has_scheme): Require "scheme" to be at least one char long.
3330
3331 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
3332
3333         * url.c (url_file_name): Expect NULL dir_prefix.
3334
3335         * init.c (cmd_file): Use a macro to prevent multiple #ifdef
3336         WINDOWS.
3337         (defaults): Set dir_prefix to NULL by default.
3338
3339 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
3340
3341         * safe-ctype.h (_sch_test): Cast BIT to unsigned char, like latest
3342         gcc does.
3343
3344 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
3345
3346         * wget.h (BOUNDED_TO_ALLOCA): Evaluate PLACE only once.
3347         (ARRAY_SIZE): Renamed to countof.  All callers updated.
3348
3349 2003-09-19  Hrvoje Niksic  <hniksic@xemacs.org>
3350
3351         * main.c (main): New option --strict-comments.
3352
3353         * html-parse.c (find_comment_end): New function: simple BM search
3354         for "-->".
3355         (map_html_tags): Use it if looking at a comment and not in strict
3356         comments mode.
3357
3358 2003-09-17  Aurelien Marchand  <artaxerxes@users.sf.net>
3359
3360         * ftp.h: Added OS400 system in enum
3361         * ftp-basic.c: recognize OS400 systems
3362         * ftp.c: don't prepend the CWD if talking to OS400, since it
3363         breaks the change in library
3364
3365 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
3366
3367         * retr.c (get_contents): Pass the correct argument to ssl_iread.
3368
3369 2003-09-18  Hrvoje Niksic  <hniksic@xemacs.org>
3370
3371         * safe-ctype.h: Don't #define ctype.h macros to errors because
3372         that loses when someone #include's ctype.h after safe-ctype.h.
3373
3374 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
3375
3376         * url.c: Undef U, W, C after use.
3377
3378 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
3379
3380         * init.c (cmd_spec_restrict_file_names): Allow the OS setting to
3381         be augmented by ",nocontrol" which means don't escape the control
3382         characters, but otherwise keep OS settings.
3383
3384         * url.c (file_unsafe_char): Deleted.
3385         (append_uri_pathel): Query filechr_table directly.
3386         (filechr_table): Separated Unix, Windows, and control-unsafe
3387         characters.
3388
3389 2003-09-17  Hrvoje Niksic  <hniksic@xemacs.org>
3390
3391         * url.c (url_escape_1): New function.
3392         (url_escape): Use it.
3393         (sync_path): Handle pathological cases where u->file and u->dir
3394         contain really strange characters.
3395         (ENCODE): Deleted.
3396         (REENCODE): Deleted.
3397
3398 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
3399
3400         * url.c (url_file_name): Don't reallocate FNAME if the file
3401         doesn't exist, as is usually the case.
3402
3403         * utils.c (unique_name): New flag allow_passthrough.
3404
3405 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
3406
3407         * utils.c (wtimer_sys_diff): Convert the time difference to signed
3408         __int64, then to double.  This works around MS VC++ 6 which can't
3409         convert unsigned __int64 to double directly.
3410
3411 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
3412
3413         * Makefile.in (clean): Also remove the core.<number> files
3414         produced by recent Linux systems.
3415
3416 2003-09-16  Hrvoje Niksic  <hniksic@xemacs.org>
3417
3418         * http.c (post_file): Don't pad the file if it's not large
3419         enough.  Bail out instead.
3420
3421 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
3422
3423         * retr.c (get_contents): Reduce the buffer size to the amount of
3424         data that may pass through for one second.  This prevents long
3425         sleeps when limiting bandwidth.
3426
3427         * connect.c (connect_to_one): Reduce the socket's RCVBUF when
3428         bandwidth limitation to small values is requested.
3429
3430 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
3431
3432         * progress.c (update_speed_ring): Moved the speed ring update to a
3433         separate function and documented it better.
3434
3435         * progress.c: Use `double' for most timers to support granularity
3436         smaller than 1ms.
3437
3438 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
3439
3440         * wget.h (XDIGIT_TO_XCHAR): Implement as index into a literal
3441         string.
3442         (XDIGIT_TO_xchar): Ditto.
3443
3444 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
3445
3446         * utils.c: Change the type of timer-related functions from long to
3447         double, for better precision.  On machines supporting gettimeofday
3448         the timers now work with granularity of less than one millisecond.
3449
3450 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
3451
3452         * cookies.c (parse_set_cookies): Fixed the parser to handle more
3453         edge conditions.
3454         (test_cookies): New function, contains a test suite for
3455         parse_set_cookies.
3456
3457 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
3458
3459         * url.c (strpbrk_or_eos): Implement as a macro under Gcc.
3460
3461 2003-09-15  Hrvoje Niksic  <hniksic@xemacs.org>
3462
3463         * cookies.c (parse_set_cookies): Allow trailing space in
3464         set-cookies header.  Also, allow any amount of whitespace, not
3465         only one character.  Allow empty set-cookies header without
3466         spewing an error.
3467
3468 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
3469
3470         * url.c (append_uri_pathel): Use opt.restrict_file_names when
3471         calling file_unsafe_char.
3472
3473         * init.c: New command restrict_file_names.
3474
3475         * main.c (main): New option --restrict-file-names[=windows,unix].
3476
3477         * url.c (url_file_name): Renamed from url_filename.
3478         (url_file_name): Add directory and hostdir prefix here, not in
3479         mkstruct.
3480         (append_dir_structure): New function, does part of the work that
3481         used to be in mkstruct.  Iterates over path elements in u->path,
3482         calling append_uri_pathel on each one to append it to the file
3483         name.
3484         (append_uri_pathel): URL-unescape a path element and reencode it
3485         with a different set of rules, more appropriate for handling of
3486         files.
3487         (file_unsafe_char): New function, uses a lookup table to decide
3488         whether a character should be escaped for use in file name.
3489         (append_string): New utility function.
3490         (append_char): Ditto.
3491         (file_unsafe_char): New argument restrict_for_windows, decide
3492         whether Windows file names should be escaped in run-time.
3493
3494         * connect.c: Include <stdlib.h> to get prototype for abort().
3495
3496 2003-09-14  Hrvoje Niksic  <hniksic@xemacs.org>
3497
3498         * utils.c (wtimer_sys_set): Extracted the code that sets the
3499         current time here.
3500         (wtimer_reset): Call it.
3501         (wtimer_sys_diff): Extracted the code that calculates the
3502         difference between two system times here.
3503         (wtimer_elapsed): Call it.
3504         (wtimer_elapsed): Don't return a value smaller than the previous
3505         one, which could previously happen when system time is set back.
3506         Instead, reset start time to current time and note the elapsed
3507         offset for future calculations.  The returned times are now
3508         guaranteed to be monotonically nondecreasing.
3509
3510 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
3511
3512         * host.c (lookup_host): Print the result of the DNS lookup.
3513
3514 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
3515
3516         * init.c (cmd_boolean): Accept yes/no along with on/off.
3517         (cmd_lockable_boolean): Ditto.
3518
3519 2003-09-10  Hrvoje Niksic  <hniksic@xemacs.org>
3520
3521         * init.c: New command dns_cache.
3522
3523         * main.c (main): New option --dns-cache[=off].
3524
3525 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
3526
3527         * config.h.in: Initialize HAVE_GETADDRINFO and ENABLE_IPV6.
3528
3529         * all: Use #ifdef ENABLE_IPV6 instead of the older INET6.  Use
3530         HAVE_GETADDRINFO for getaddrinfo-related stuff.
3531
3532 2003-09-09  Hrvoje Niksic  <hniksic@xemacs.org>
3533
3534         * url.c (url_parse): Return an error if the URL contains a [...]
3535         IPv6 numeric address and we don't support IPv6.
3536
3537 2003-09-05  Hrvoje Niksic  <hniksic@xemacs.org>
3538
3539         * url.c (is_valid_ipv6_address): Modified to not require
3540         zero-terminated strings.
3541         (is_valid_ipv4_address): Ditto.
3542
3543 2003-09-05  Mauro Tortonesi <mauro@deepspace6.net>
3544
3545         src/url.c: added RFC 2732 compliance for URL parsing. The
3546         functions is_*_address valid are a modified version of
3547         glibc 2.3.2 inet_pton's code.
3548
3549 2003-09-03  Ahmon Dancy  <dancy@dancysoft.com>
3550
3551         * main.c init.c options.h: Added --retry-connrefused option so
3552         that Connection Refused failures are treated as non-fatal (when
3553         trying to retrieve from busy servers).
3554
3555         * wget.h: New CONNECT_ERROR macro for encapsulating this
3556         modification.
3557
3558         * ftp.c http.c : Use CONNECT_ERROR macro in places where
3559         ECONNREFUSED was checked.
3560
3561 2003-01-11  Ian Abbott  <abbotti@mev.co.uk>
3562
3563         * ftp.c (ftp_retrieve_glob): Reject insecure filenames as determined
3564         by calling new function has_insecure_name_p.  This is based on a
3565         patch by Red Hat.
3566
3567         * fnmatch.c (has_insecure_name_p): New function: returns non-zero
3568         if filename starts with `/' or contains `../' and is therefore
3569         considered insecure.
3570
3571         * fnmatch.h: Declare has_insecure_name_p().
3572
3573 2002-08-03  Hrvoje Niksic  <hniksic@xemacs.org>
3574
3575         * init.c (cmd_file): Allocate RESULT correctly.
3576
3577 2002-07-24  Hrvoje Niksic  <hniksic@xemacs.org>
3578
3579         * recur.c (retrieve_tree): Check whether downloaded_html_set is
3580         non-NULL before using it.
3581
3582 2002-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
3583
3584         * html-parse.c (NAME_CHAR_P): Allow almost any character here.
3585
3586 2002-05-24  Hrvoje Niksic  <hniksic@arsdigita.com>
3587
3588         * progress.c (bar_set_params): Fall back to dot progress if the
3589         terminal type is "emacs".
3590
3591 2002-05-20  Hrvoje Niksic  <hniksic@arsdigita.com>
3592
3593         * log.c: Don't #undef WGET_USE_STDARG.
3594
3595 2002-05-16  Hrvoje Niksic  <hniksic@arsdigita.com>
3596
3597         * hash.c (prime_size): Store the offset of the prime number in the
3598         prime table.  When searching, start with the given offset.
3599         (hash_table_new): Pass the pointer to ht->prime_offset to
3600         prime_size.
3601         (grow_hash_table): Ditto.
3602         (prime_size): Make 13 the first prime to make empty hash tables
3603         slightly smaller.
3604
3605 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
3606
3607         * recur.c (download_child_p): Minor optimization to avoid an
3608         unnecessary additional call to schemes_are_similar_p function.
3609
3610 2002-05-16  Ian Abbott  <abbotti@mev.co.uk>
3611
3612         * url.c (schemes_are_similar_p): New function to test enumerated
3613         scheme codes for similarity.
3614
3615         * url.h: Declare it.
3616
3617         * recur.c (download_child_p): Use it to compare schemes.  This
3618         also fixes a bug that allows hosts to be spanned (without the
3619         -H option) when the parent scheme is https and the child's is
3620         http or vice versa.
3621
3622 2002-05-14  Bill Richardson  <bill@riverstonenet.com>
3623
3624         * ftp.c (getftp): Don't ftruncate stdout.
3625
3626         * http.c (gethttp): Don't ftruncate stdout.
3627
3628 2002-05-09  Ian Abbott  <abbotti@mev.co.uk>
3629
3630         * cmpt.c (strptime_internal): Synched with glibc-2.1.3.
3631         (get_number): Ditto.
3632         (get_alt_number): Ditto.
3633         (__isleap): New function-like macro used by strptime.
3634         (day_of_the_week): New function used by strptime.
3635         (day_of_the_year): Ditto.
3636         (__mon_yday): Now shared by mktime and strptime implementations.
3637
3638 2002-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
3639
3640         * cookies.c (check_domain_match): Use match_tail in case
3641         insensitive mode.
3642
3643         * utils.c (match_tail): Allow the caller to specify case
3644         insensitive mode.
3645
3646         * cookies.c (store_cookie): When expiry_time is 0, print it as
3647         undefined, not indefinite.
3648
3649 2002-05-07  Ian Abbott  <abbotti@mev.co.uk>
3650
3651         * cookies.c (cookie_jar_process_set_cookie): Do not store
3652         discarded cookie.
3653
3654 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
3655
3656         * cookies.c (check_domain_match): Allow cookies to be set for
3657         subdomains of unknown top-level domains under some circumstances.
3658
3659 2002-04-21  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
3660
3661         * gen_ssl.c:
3662         - allow checking of server cert
3663         - allow defining client cert type
3664         - allow limit of ssl protocol
3665         - check more return values
3666         - added debug message on break
3667
3668 2002-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
3669
3670         * recur.c (download_child_p): Revert order of items in check
3671         number 6 for clarity.
3672
3673 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
3674
3675         * init.c: Ditto.
3676
3677         * main.c: Ditto.
3678
3679         * http.c: Use the new interface.
3680
3681         * cookies.c: Provide an OO-style "cookie jar" interface to enable
3682         separate cookie jars.
3683
3684         * http.c (http_atotm): Declare argument as const.
3685
3686 2002-04-20  Hrvoje Niksic  <hniksic@arsdigita.com>
3687
3688         * cookies.c (cookie_new): Default to PORT_ANY.
3689         (find_cookie_chain_exact): Only search by DOMAIN.
3690         (find_matching_cookie): Also check that PORT matches.
3691         (store_cookie): Only match the domain.
3692         (set_cookie_header_cb): When a cookie "fakes" a domain, assume it
3693         is valid for that host rather than discarding it completely.
3694         (find_matching_chains): Don't search by PORT.
3695         (matching_cookie): Also match PORT.
3696         (load_cookies): Set the port if specified, otherwise leave it as
3697         ANY.
3698         (save_cookies_mapper): Save the port if specified, otherwise leave
3699         it empty.
3700
3701 2002-04-19  Thomas Lussnig  <thomas.lussnig@bewegungsmelder.de>
3702
3703         * init.c: The option `egdfile' was not in sort order.
3704
3705 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
3706
3707         * ftp.c (getftp): Treat directories that begin with <letter>: as
3708         absolute.
3709         (getftp): Strip trailing slashes from con->id before merging it
3710         with TARGET.
3711
3712 2002-04-16  Hrvoje Niksic  <hniksic@arsdigita.com>
3713
3714         * http.c (gethttp): If Content-Type is not given, assume
3715         text/html.
3716
3717 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
3718
3719         * recur.c (download_child_p): Don't ignore rejection of HTML
3720         documents that are themselves leaves of recursion.
3721
3722 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
3723
3724         Makefile.in: Updated several dependencies for object files to take
3725         account of nested include files.
3726
3727 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
3728
3729         Makefile.in: The target `connect$o' (connect.o) now depends on
3730         `utils.h'
3731
3732 2002-04-15  Ian Abbott  <abbotti@mev.co.uk>
3733
3734         * host.c (SET_H_ERRNO): New function-like macro to set `h_errno'.
3735         (gethostbyname_with_timeout): Use it.
3736
3737         * utils.c: Don't define `SETJMP()', `run_with_timeout_env' or
3738         `abort_run_with_timeout()' when `USE_SIGNAL_TIMEOUT' is undefined.
3739
3740 2002-04-15  Hrvoje Niksic  <hniksic@arsdigita.com>
3741
3742         * host.c (getaddrinfo_with_timeout): New function.
3743         (gethostbyname_with_timeout): Ditto.
3744         (lookup_host): Use them.
3745
3746 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3747
3748         * utils.c (number_to_string): Handle the case when n < -INT_MAX.
3749
3750 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3751
3752         * init.c (comind): Use a marginally faster implementation of
3753         binary search.  To quote Martin Buchholz, "a nanosecond saved is a
3754         nanosecond earned."
3755
3756 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3757
3758         * main.c (print_help): Document `--post-data' and `--post-file'.
3759
3760 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3761
3762         * http.c (gethttp): Ditto.
3763
3764         * retr.c (retrieve_url): Initialize variables to appease the
3765         compiler.
3766
3767         * gen_sslfunc.c (ssl_iread): Don't handle EINTR when calling
3768         select_fd.
3769         (ssl_iwrite): Ditto.
3770
3771         * connect.c (select_fd): Rewrite to handle EINTR.  Set errno to
3772         ETIMEDOUT in case of timeout.
3773         (iread): No need to handle EINTR when calling select_fd.
3774         (iwrite): Ditto.
3775
3776 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3777
3778         * retr.c (retrieve_url): Make sure that POST is not honored for
3779         redirections.
3780
3781         * http.c (gethttp): Send the POST data when requested.
3782         (post_file): New function.
3783         (gethttp): Use it.
3784
3785         * main.c (main): Ditto.
3786
3787         * init.c: Add new options.
3788
3789         * options.h (struct options): New options post_data and
3790         post_file_name.
3791
3792 2002-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
3793
3794         * connect.c (connect_with_timeout): Firing SIGALRM can result in
3795         connect() exiting with EINTR.  Treat EINTR the same as ETIMEDOUT.
3796
3797 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
3798
3799         * connect.c (connect_with_timeout): Use it.
3800
3801         * utils.c (run_with_timeout): New function.
3802
3803 2002-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
3804
3805         * url.c (getproxy): Accept a struct url argument.  This obviates
3806         the need for USE_PROXY_P.
3807
3808         * retr.c (retrieve_url): Allow proxy to be a non-FTP URL.
3809
3810         * ftp.c (getftp): Recognize FWTK-style proxy.
3811
3812 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3813
3814         * config.h.in: Only define _VA_LIST when compiled with gcc.
3815
3816 2002-04012  Ian Abbott  <abbotti@mev.co.uk>
3817
3818         * http.c (http_loop): Compensate for MS Windows two-second
3819         granularity of file modification time when comparing timestamps.
3820
3821         * ftp.c (ftp_retrieve_list): Ditto.
3822
3823 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
3824
3825         * utils.c (has_html_suffix_p): New function to test filename for
3826         common html extensions.
3827
3828         * utils.h: Declare it.
3829
3830         * http.c (http_loop): Use it instead of previous test.
3831
3832         * retr.c (retrieve_url): Ditto.
3833
3834         * recur.c (download_child_p): Ditto.
3835
3836 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3837
3838         * config.h.in: Define _VA_LIST on Solaris to prevent stdio.h from
3839         declaring va_list.
3840         From Kevin Rodgers <kevinr@ihs.com>.
3841
3842 2002-04-12  Ian Abbott  <abbotti@mev.co.uk>
3843
3844         * Makefile.in: Specify libtool mode explicitly when linking.
3845
3846 2002-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
3847
3848         * connect.c (connect_with_timeout): New function.
3849         (connect_to_one): Use it.
3850
3851         * config.h.in: Add stubs for HAVE_SIGSETJMP, HAVE_SIGBLOCK, and
3852         HAVE_SETJMP_H.
3853
3854 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3855
3856         * log.c: Set WGET_USE_STDARG if __STDC__ is defined and stdarg.h
3857         is present.
3858
3859 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3860
3861         * progress.c (bar_create): If INITIAL is larger than TOTAL, fix
3862         TOTAL.
3863         (bar_finish): Likewise.
3864
3865 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3866
3867         * html-url.c (tag_handle_form): New function.  Pick up form
3868         actions and mark them for conversion only.
3869
3870 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3871
3872         * progress.c (struct progress_implementation): Use PARAMS when
3873         declaring the parameters of *create, *update, *finish, and
3874         *set_params.
3875
3876         * netrc.c: Ditto.
3877
3878         * http.c: Reformat some function definitions so that ansi2knr can
3879         read them.
3880
3881         * hash.c (struct hash_table): Use the PARAMS macro around
3882         parameters in the declaration of hash_function and test_function.
3883         (prime_size): Spell 2580823717UL and 3355070839UL as (unsigned
3884         long)0x99d43ea5 and (unsigned long)0xc7fa5177 respectively, so
3885         that pre-ANSI compilers can read them.
3886         (find_mapping): Use PARAMS when declaring EQUALS.
3887         (hash_table_put): Ditto.
3888
3889         * ftp.h: Wrap the parameters of ftp_index declaration in PARAMS.
3890
3891         * cookies.c (cookie_new): Use (unsigned long)0 instead of 0UL,
3892         which was unsupported by pre-ANSI compilers.
3893
3894         From Nelson H. F. Beebe <beebe@math.utah.edu>, for the most part.
3895
3896 2002-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
3897
3898         * url.c (url_filename): Use compose_file_name regardless of
3899         whether opt.dirstruct is set.
3900         (mkstruct): Don't handle the query and the reencoding of DIR; that
3901         is done in compose_file_name.
3902
3903 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
3904
3905         * wget.h: Ditto for extern char *exec_name.
3906
3907         * options.h: Don't guard against OPTIONS_DEFINED_HERE -- it is
3908         perfectly legal to follow an `extern' with a non-`extern' ones,
3909         provided the types match.
3910
3911         * main.c: Don't define OPTIONS_DEFINED_HERE.
3912
3913 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
3914
3915         * progress.c (create_image): Revert to calculating ETA based on
3916         average download speed.
3917         (create_image): Don't print ETA until the download has been active
3918         for at least 3 seconds.
3919         (create_image): When ETA is not available, don't print anything.
3920         The previous version would print --:--.
3921
3922 2002-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
3923
3924         * progress.c (bar_update): Keep updating a subinterval until it
3925         reaches or exceeds a watermark.  That way the measurement will be
3926         guaranteed to span a configurable minimum of time.  The current
3927         default is 3s in 30 100ms intervals.
3928
3929 2002-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
3930
3931         * progress.c (bar_update): Maintain an array of the time it took
3932         to perform previous 30 network reads.
3933         (create_image): Calculate the download speed and ETA based on the
3934         last 30 reads, not the entire download.
3935         (create_image): Make sure that the ETA is not changed more than
3936         once per second.
3937
3938 2002-04-09  Ian Abbott  <abbotti@mev.co.uk>
3939
3940         * mswindows.c (borland_utime): New function conditionally defined
3941         when `HACK_BCC_UTIME_BUG' is defined.  A reimplementation of
3942         `utime()' as Borland's `utime()' function is broken on Windows 9x
3943         systems.  (Original patch by Chin-yuan Kuo <sr1111111@yahoo.com.tw>.)
3944
3945 2002-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
3946
3947         * ftp.c (ftp_loop): Propagate the result of ftp_retrieve_glob.
3948
3949 2002-03-26  Ian Abbott  <abbotti@mev.co.uk>
3950
3951         * Makefile.in: Updated several dependencies for object files.
3952
3953 2002-03-20  Ian Abbott  <abbotti@mev.co.uk>
3954
3955         * mswindows.c: Include "utils.h".
3956
3957 2002-03-18  Ian Abbott  <abbotti@mev.co.uk>
3958
3959         * host.h: Don't include netdb.h on windows.
3960
3961 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
3962
3963         * recur.c (retrieve_tree): Handle the case when start_url doesn't
3964         parse.
3965
3966 2002-02-19  Andreas Damm  <andreas-sourceforge@radab.org>
3967
3968         * wget.h (DO_REALLOC_FROM_ALLOCA): Multiply with sizeof(type) when
3969         calling xmalloc and memcpy.
3970
3971 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
3972
3973         * host.h: Include Unix-specific includes #ifndef WINDOWS.
3974         Patch originally provided by Christian Lackas.
3975
3976 2002-02-11  Christian Lackas  <delta@lackas.net>
3977
3978         * recur.c: recurive downloading for https fixed.
3979
3980 2002-02-19  Alan Eldridge  <alane@geeksrus.net>
3981
3982         * host.h: Also include <netinet/in.h> and <sys/socket.h>.
3983
3984         * ftp-basic.c: Also include <netinet/in.h>.
3985
3986 2002-02-05  Ian Abbott  <abbotti@mev.co.uk>
3987
3988         * http.c (gethttp): when -c used, mark already fully retrieved
3989         file as successfully retrieved.
3990
3991 2002-02-19  Hrvoje Niksic  <hniksic@arsdigita.com>
3992
3993         * url.c (url_parse): Don't treat '?' as query string separator
3994         when parsing FTP URLs.
3995
3996 2002-02-01  Hrvoje Niksic  <hniksic@arsdigita.com>
3997
3998         * html-url.c (tag_handle_meta): Don't crash on <meta
3999         http-equiv=refresh> where content is missing.
4000
4001 2002-01-31  Herold Heiko  <Heiko.Herold@previnet.it>
4002
4003         * ftp-basic.c, host.c: don't include sys/socket.h, arpa/inet.h,
4004         netdb.h on windows.
4005
4006 2002-01-30  Hrvoje Niksic  <hniksic@arsdigita.com>
4007
4008         * retr.c (retrieve_url): Remove redirection cycle detection.  This
4009         is because some sites legitimately redirect the user back to the
4010         same location, e.g. after an authorization check performed by
4011         another page.  MAX_REDIRECTIONS is still used to prevent infinite
4012         redirection loops.
4013
4014 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4015
4016         * http.c (gethttp): Wrap host name in square brackets if it
4017         contains a colon.
4018
4019 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4020
4021         * url.c (url_parse): Allow all hex digits, not only decimal ones,
4022         to form an IP address.
4023
4024 2002-01-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4025
4026         * url.c (urlchr_table): Make square braces reserved, so we can
4027         parse http://[::1]/.
4028         (url_parse): Handle host in braces.
4029         (url_string): If url->host contains colons, wrap it in braces.
4030
4031 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4032
4033         * connect.c (resolve_bind_address): New function.
4034         (connect_to_one): Use it.
4035         (bindport): Ditto.
4036
4037         * init.c: Don't resolve bind-address here.
4038
4039         * host.c (wget_sockaddr_set_address): Would bug out with ADDR == NULL.
4040
4041 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4042
4043         * host.c (lookup_host): Use sizeof(ip4_address) to calculate the
4044         offset.
4045         (address_list_new): Use map_ipv4_to_ip.
4046         (wget_sockaddr_set_address): Convert ADDR to IPv4 before using it
4047         in IPv4 context.
4048
4049 2002-01-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4050
4051         * source: Integrated IPv6 support.
4052         Written by Thomas Lussnig <thomas.lussnig@bewegungsmelder.de>.
4053
4054 2002-01-15  Ian Abbott  <abbotti@mev.co.uk>
4055
4056         * init.c (cmd_file): Change `\' to `/' for Windows (yes, really!)
4057         (cmd_directory): New function. Like cmd_file(), but strips
4058         trailing directory separators.
4059         (commands): Change action for "dirprefix" from `cmd_file' to
4060         `cmd_directory'.
4061
4062         * utils.c (make_directory): Allow intermediate `mkdir' calls to
4063         fail, as not all path components that do not exist should be
4064         directory components, especially under Windows.
4065
4066 2002-01-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4067
4068         * netrc.c (parse_netrc): Skip leading whitespace before testing
4069         whether the line is empty.  Empty lines still contain the line
4070         terminator.
4071
4072 2002-01-15  Hrvoje Niksic  <hniksic@arsdigita.com>
4073
4074         * gen_sslfunc.c (ssl_iread): Call select on the file descriptor
4075         only if no data is pending in SSL buffers.
4076         From tony@bluetail.com.
4077
4078 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4079
4080         * headers.c (header_get): Strip trailing whitespace from the
4081         header.
4082
4083 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4084
4085         * url.c (parse_uname): URL-decode *USER and *PASSWD.
4086
4087 2002-01-07  Ian Abbott <abbotti@mev.co.uk>
4088
4089         * url.c (uri_merge_1): Deal with "net path" relative URL (one that
4090         starts with "//").
4091
4092 2002-01-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4093
4094         * http.c (gethttp): Invalidate SOCK if get_contents encountered an
4095         error.
4096
4097 2001-12-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4098
4099         * version.c: Wget 1.8.1 is released.
4100
4101 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4102
4103         * version.c: Wget 1.8.1-pre3 is released.
4104
4105 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4106
4107         * recur.c (retrieve_tree): Enqueue the canonical representation of
4108         start_url, so that the test against dl_url_file_map works.
4109
4110 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4111
4112         * log.c (logputs): Check for requested verbosity before printing
4113         anything.
4114
4115 2001-12-19  Hrvoje Niksic  <hniksic@arsdigita.com>
4116
4117         * html-url.c (tag_handle_link): Treat the "shortcut icon" link as
4118         inline.
4119
4120 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
4121
4122         * recur.c (retrieve_tree): Make a copy of file obtained from
4123         dl_url_file_map because the code calls xfree(file) later.
4124
4125 2001-12-18  Hrvoje Niksic  <hniksic@arsdigita.com>
4126
4127         * recur.c (register_html): Maintain a hash table of HTML files
4128         along with the list.  Disallow duplicates.
4129         (retrieve_tree): Use downloaded_html_set to check whether the file
4130         found in dl_url_file_map is an HTML file, and descend into it if
4131         so.
4132         (convert_all_links): Don't guard against duplicates in
4133         downloaded_html_list, since they are no longer possible.
4134
4135 2001-12-18  Ian Abbott  <abbotti@mev.co.uk>
4136
4137         * recur.c (retrieve_tree): Pass on referring URL when retrieving
4138         recursed URL.
4139
4140 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4141
4142         * version.c: Wget 1.8.1-pre2 is released.
4143
4144 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4145
4146         * retr.c (sleep_between_retrievals): Simplify indentation.
4147
4148 2001-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
4149
4150         * gen_sslfunc.c (ssl_init_prng): Use random_number to get a byte
4151         of "randomness" at a time.
4152         (ssl_init_prng): Don't seed the PRNG; random_number will do that.
4153
4154         * retr.c (sleep_between_retrievals): Use it.  Make sure that the
4155         random amount averages in opt.wait.
4156         (sleep_between_retrievals): Don't seed the PRNG; random_number
4157         will do that.
4158
4159         * utils.c (random_number): New function.
4160
4161 2001-12-14  Hrvoje Niksic  <hniksic@arsdigita.com>
4162
4163         * url.c (path_simplify): Move here from utils.c, and make static.
4164
4165 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4166
4167         * init.c (wgetrc_file_name): Print correct message when loading
4168         getenv("WGETRC") fails.
4169
4170 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4171
4172         * recur.c (register_download): Don't abort when one URL references
4173         two different files.
4174
4175 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4176
4177         * http.c (gethttp): Check for conn->scheme, not u->scheme, before
4178         calling ssl_iwrite.
4179
4180 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4181
4182         * version.c: Wget 1.8.1-pre1 is released.
4183
4184 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4185
4186         * res.c (matches): Fix broken URL in the docstring.
4187
4188 2001-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
4189
4190         * html-url.c (tag_url_attributes): Mark <embed href=...> as
4191         external.
4192
4193 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
4194
4195         * url.c (get_urls_file): Cosmetic changes.
4196
4197 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
4198
4199         * html-url.c (append_one_url): Resurrect warning when unable to
4200         resolve a relative link.
4201
4202 2001-12-12  Hrvoje Niksic  <hniksic@arsdigita.com>
4203
4204         * html-url.c (collect_tags_mapper): Break into several functions.
4205         (tag_url_attributes): Collect <embed href=...>.
4206
4207 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4208
4209         * host.c: New type ipv4_address.  Use it consistently instead of
4210         `unsigned char[4]' and `unsigned char *'.
4211         (pretty_print_address): Accept a `const void *', to require even
4212         less casting.
4213
4214 2001-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
4215
4216         * ftp-ls.c (ftp_parse_vms_ls): Fix obvious memory leaks.
4217
4218 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4219
4220         * main.c (main): Initialize progress after fork_to_background, so
4221         that it knows when to use dots.
4222
4223         * mswindows.c (ws_hangup): Call log_request_redirect_output.
4224
4225         * utils.c (fork_to_background): Print the PID of the child
4226         process.
4227
4228         * log.c (log_request_redirect_output): Set a flag that output
4229         redirection has been requested.  Doing anything else in a signal
4230         handler is unsafe.
4231         (check_redirect_output): New function: check whether redirection
4232         has been requested and, if so, call redirect_output().
4233         (logputs): Call check_redirect_output.
4234         (logprintf): Ditto.
4235         (debug_logprintf): Ditto.
4236         (redirect_output): Print clearer messages.
4237
4238         * main.c (redirect_output_signal): Don't call
4239         redirect_output_signal directly.  Instead, call
4240         log_request_redirect_output.
4241
4242         * utils.c (memfatal): Ditto.
4243
4244         * progress.c (display_image): Use it.
4245
4246         * log.c (log_set_save_context): New function: allow the caller to
4247         turn off saving log context lines.
4248
4249 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4250
4251         * host.c (address_list_set_faulty): Uncomment a sanity check.
4252
4253 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4254
4255         * utils.c (long_to_string): Return a pointer after where the
4256         number ends.
4257         (long_to_string): Rename to number_to_string.
4258
4259 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4260
4261         * utils.c (path_simplify): Correctly handle the unlikely case that
4262         b starts out as path + 1.
4263
4264 2001-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
4265
4266         * utils.c (path_simplify): Rewrite, with better comments, and
4267         without the use of strcpy to move overlapping blocks.
4268
4269 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
4270
4271         * init.c (cmd_spec_progress): Resurrect.  Check whether VAL is a
4272         valid progress type before setting it.
4273
4274 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
4275
4276         * main.c (main): Remove stray debugging message.
4277
4278 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
4279
4280         * progress.c (create_image): Fix ETA padding when hours are prined.
4281
4282 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
4283
4284         * version.c: Wget 1.8 is released.
4285
4286 2001-12-09  Hrvoje Niksic  <hniksic@arsdigita.com>
4287
4288         * url.c (reencode_string): Declare static.
4289
4290         * res.c (registered_specs): Declare static.
4291
4292         * progress.c (current_impl_locked): Declare static.
4293
4294         * log.c (flush_log_p): Declare static.
4295         (needs_flushing): Ditto.
4296
4297         * http.c (digest_authentication_encode): Declare static.
4298
4299         * html-url.c (init_interesting): Declare static.
4300
4301         * host.c (host_name_addresses_map): Declare static.
4302
4303         * cookies.c (find_matching_chains): Declare static.
4304
4305         * ftp-ls.c (ftp_parse_vms_ls): Warn about the memory leak
4306         indicated by lint.
4307
4308         * utils.c (path_simplify): Remove unused variable STUB_CHAR.
4309
4310         * host.c (address_list_set_faulty): Document that INDEX is
4311         currently unused.
4312
4313         * url.c (rewrite_shorthand_url): Remove unused variable PATH.
4314
4315 2001-12-08  Hrvoje Niksic  <hniksic@arsdigita.com>
4316
4317         * version.c: Wget 1.8-pre2 is released.
4318
4319 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4320
4321         * progress.c (progress_handle_sigwinch): Set up the signal again.
4322
4323         * utils.c: Include <sys/termios.h>, where Solaris defines
4324         TIOCGWINSZ.
4325
4326         * progress.c (bar_create): Don't use the last column on the screen.
4327         (create_image): Pad ETA to constant size.  Pad SIZE to nine digits
4328         only until it exceeded them.
4329
4330 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4331
4332         * version.c: Wget 1.8-pre1 is released.
4333
4334 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4335
4336         * progress.c (progress_create): Make sure that, when the output is
4337         redirected, the progress implementation gets changed to the
4338         fallback one.
4339         (bar_set_params): Set current_impl_locked to 1 when "force" is
4340         specified.
4341         (progress_create): Don't change the progress implementation if
4342         current_impl_locked is non-zero.
4343
4344         * main.c (redirect_output_signal): Call
4345         progress_schedule_redirect.
4346
4347         * progress.c (progress_schedule_redirect): New function.
4348
4349 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4350
4351         * log.c (logvprintf): Restructure to allow being called multiple
4352         times.
4353         (logprintf): Call logvprintf in a loop.
4354         (debug_logprintf): Ditto.
4355
4356 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4357
4358         * gen_sslfunc.c (ssl_init_prng): Allow the user to disable EGD by
4359         setting egd_file it to empty string.
4360
4361         * main.c (main): Change the option name from --sslegdsock to
4362         --egd-file.
4363
4364 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4365
4366         * gen_sslfunc.c (ssl_init_prng): Make the printed message
4367         translatable.
4368
4369 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4370
4371         * url.c (scheme_disable): New function.
4372
4373         * main.c (main): Call ssl_init_prng from here rather than from
4374         init_ssl, so that it has a chance to disable support for https
4375         before a URL has been resolved.
4376
4377         * gen_sslfunc.c (ssl_init_prng): Seed with rand() if all else
4378         failed.
4379         (ssl_init_prng): Disable support for https if seeding the PRNG
4380         fails.
4381
4382 2001-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
4383
4384         * utils.c (read_whole_line): Handle lines beginning with \0.
4385
4386 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
4387
4388         * recur.c (convert_all_links): Guard against duplicates in
4389         downloaded_html_files.
4390         (register_download): Don't invalidate similar-looking URLs.
4391         (match_except_index): New function.
4392
4393 2001-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
4394
4395         * utils.c (path_simplify): Document with test cases.
4396
4397 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
4398
4399         * gen_sslfunc.c: Ditto.
4400
4401         * rbuf.c: Include <string.h>.
4402
4403 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
4404
4405         * recur.c (retrieve_tree): Check whether the URL was already
4406         downloaded before downloading it again.
4407         (descend_child_p): Renamed to download_child_p.
4408         (register_download): When one URL is downloaded to a file already
4409         "owned" by another URL, delete all references that map any URL to
4410         that file.
4411         (register_delete_file): New function.
4412         (retrieve_tree): Use it after deleting a file.
4413
4414         * url.c (url_parse): Re-canonicalize the URL also if the path is
4415         empty, so that e.g. "http://www.server.com" ->
4416         "http://www.server.com/".
4417         (lowercase_str): Use ISUPPER instead of !ISLOWER.
4418
4419         * retr.c (retrieve_url): Use the canonical URL form when calling
4420         register_download().
4421
4422 2001-12-04  Ian Abbott <abbotti@mev.co.uk>
4423
4424         * snprintf.c (dopr): Use `unsigned int' as the second argument to
4425         va_arg when casting to `unsigned short' is intended.
4426
4427 2001-12-04  Herold Heiko  <Heiko.Herold@previnet.it>
4428
4429         * gen_sslfunc.c: on windows provide ssl crypto random 
4430           initialization through RAND_screen(); could possibly
4431           be not enough for strong ssl communication (see the 
4432           relevant manual page from the openssl package).
4433
4434 2001-12-04  Hrvoje Niksic  <hniksic@arsdigita.com>
4435
4436         * url.c (local_quote_string): Reenable quoting of question marks,
4437         but only when `--html-extension' is used.
4438
4439 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
4440
4441         * version.c: Wget 1.8-beta3 is released.
4442
4443 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
4444
4445         * snprintf.c (dopr): Cast the result of va_arg to short int and
4446         short unsigned int where these types are expected to be used.
4447
4448 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
4449
4450         * snprintf.c (dopr): Replace `short int' and `unsigned short int'
4451         with `int' when using it as the second argument to `va_arg'.
4452
4453 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
4454
4455         * host.c (address_list_new_one): New function.
4456         (lookup_host): Use it.
4457
4458 2001-12-03  Andre Majorel  <amajorel@teaser.fr>
4459
4460         * host.c (lookup_host): Don't initialize TMPSTORE directly because
4461         it's not legal C.
4462
4463 2001-12-03  Hrvoje Niksic  <hniksic@arsdigita.com>
4464
4465         * ftp-basic.c (ftp_port): Don't return HOSTERR if we fail getting
4466         the socket data.
4467
4468         * ftp.c: Ditto.
4469
4470         * http.c: No need to declare h_errno.
4471
4472         * host.c: Declare h_errno.
4473
4474 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
4475
4476         * utils.c (file_merge): If BASE doesn't contain a slash, just
4477         return a copy of FILE.
4478
4479 2001-12-02  Hrvoje Niksic  <hniksic@arsdigita.com>
4480
4481         * version.c: Wget 1.8-beta2 is released.
4482
4483 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4484
4485         * ftp.c (getftp): When PWD fails, assume "/".
4486
4487         * ftp-basic.c (ftp_syst): Fix indentation.
4488
4489 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4490
4491         * url.c (get_urls_file): If opt.base_href is specified, merge each
4492         URL with the base.
4493
4494 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4495
4496         * main.c (print_help): Don't document the removed `-nh'.
4497
4498 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4499
4500         * url.c (url_full_path): Document better.
4501
4502         * http.c (gethttp): Use the full path when creating digest
4503         authorization.
4504
4505 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4506
4507         * cookies.c (path_matches): Return 0 if PREFIX doesn't begin with
4508         '/'.
4509
4510 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4511
4512         * cookies.c (path_matches): FULL_PATH doesn't begin with '/', but
4513         PREFIX does.
4514
4515 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4516
4517         * cookies.c (check_domain_match): Reimplement to match Netscape's
4518         "preliminary specification" for cookies.
4519
4520 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4521
4522         * url.c (replace_attr_refresh_hack): New function.
4523         (convert_links): Call replace_attr_refresh_hack for Refresh
4524         links.  It will add the "TMOUT; URL=" junk before the link.
4525
4526         * html-url.c (collect_tags_mapper): Set ID to the ID of the
4527         "content" attribute, not "http-equiv".
4528         (collect_tags_mapper): Don't use OFFSET to hack the raw_* values;
4529         instead, store the information that this entry belongs to a
4530         "refresh" link.
4531
4532 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4533
4534         * version.c: Wget 1.8-beta1 is released.
4535
4536 2001-12-01  Hrvoje Niksic  <hniksic@arsdigita.com>
4537
4538         * recur.c (retrieve_tree): Allow -p retrievals to exceed maximum
4539         depth by more than one.
4540
4541 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
4542
4543         * retr.c (retrieve_url): Don't allow more than 20 redirections.
4544
4545 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
4546
4547         * recur.c (retrieve_tree): Skip the non-inline entries when
4548         enqueuing the children of a leaf HTML node in -p mode.
4549         (descend_url_p): Ignore opt.no_parent when in -p mode and UPOS is
4550         "inline".
4551
4552         * html-url.c (get_urls_html): Don't accept dash_p_leaf_HTML.
4553         (collect_tags_mapper): When an entry is "inline", mark it as such.
4554
4555         * recur.c (descend_url_p): Fix test when checking for
4556         acceptance/rejection rules.
4557
4558 2001-10-31 Daniel BODEA <dali@dali-designs.com>
4559
4560         * netrc.c (search_netrc): When slack_default is 0, still look for
4561         an account with matching password, just not the "default account".
4562         HTTP Authorization using .netrc should now work as expected.
4563
4564 2001-11-30  T. Bharath  <TBharath@responsenetworks.com>
4565
4566         * http.c (persistent_available_p): Call SHUTDOWN_SSL if
4567         test_socket_open fails.
4568
4569 2001-11-30  Hrvoje Niksic  <hniksic@arsdigita.com>
4570
4571         * progress.c (display_image): Just print one CR to reset the
4572         cursor position.
4573
4574 2001-11-30  Christian Fraenkel  <c.fraenkel@gmx.net>
4575
4576         * init.c: New command `ssl_egd_sock'.
4577
4578         * main.c (main): New option `--sslegdsock'.
4579
4580         * gen_sslfunc.c (ssl_init_prng): Seed the RNG using EGD.
4581
4582 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
4583
4584         * cmpt.c (memmove): Include a simple memmove implementation.
4585
4586 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
4587
4588         * headers: Guard against header files being included twice.
4589
4590 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
4591
4592         * gen-md5.c: Use unsigned char * as the buffer argument to
4593         gen_md5_update.
4594
4595 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
4596
4597         * connect.h: Declare select_fd.
4598
4599 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
4600
4601         * recur.c (descend_url_p): When resolving no_parent, compare with
4602         start_url, not parent url.  Otherwise link from /a/b/ to /a/c/
4603         wouldn't be followed, although the download started from /a/.
4604
4605 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
4606
4607         * config.h.ms, mswindows.h: defined HAVE_ISATTY, use _isatty for
4608         MS VC; somebody with Borland compiler please check and provide
4609         patch if possible;
4610
4611         * cmpt.c: provided a usleep emulation.
4612
4613 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
4614
4615         * host.c (address_list_new): Initialize al->faulty.
4616
4617 2001-11-29  Hrvoje Niksic  <hniksic@arsdigita.com>
4618
4619         * http.c (http_process_range): Accept the broken output of
4620         "JavaWebServer/1.1.1".
4621
4622 2001-11-28  Hrvoje Niksic  <hniksic@arsdigita.com>
4623
4624         * progress.c (dot_set_params): If PARAMS is unspecified, use
4625         dot_style, if available.
4626
4627         * init.c: Ditto.
4628
4629         * main.c (main): Resurect --dot-style.
4630
4631         * progress.c (dot_finish): Print the quantity if we're left at the
4632         beginning of a row.
4633
4634 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4635
4636         * cmpt.c (random): Removed.
4637
4638         * retr.c (sleep_between_retrievals): Use the more portable rand()
4639         instead of random().
4640
4641 2001-11-27  Ian Abbott <abbotti@mev.co.uk>
4642
4643         * retr.c (retrieve_from_file): Initialize `new_file' to NULL to
4644         prevent seg fault.
4645
4646 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4647
4648         * connect.c (connect_to_many): Use address_list_set_faulty to
4649         prevent the faulty address from being reused.
4650
4651         * host.c (address_list_set_faulty): New function.
4652         (address_list_get_bounds): New function, instead of
4653         address_list_count.
4654
4655 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4656
4657         * url.c (convert_links): Don't translate %d-%d.
4658
4659         * main.c (print_help): Remove stray HAVE_RANDOM code.
4660
4661 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4662
4663         * ftp.c (getftp): Improve output after sending PASV.  Don't
4664         attempt to "look up" the IP address we already know; call
4665         connect_to_one directly.
4666
4667 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4668
4669         * progress.c: Change the default progress implementation to "bar".
4670
4671 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4672
4673         * progress.c (bar_create): Print two newlines.
4674
4675 2001-11-27  Hrvoje Niksic  <hniksic@arsdigita.com>
4676
4677         * cmpt.c (random): New function, a simple-minded replacement for
4678         random() on systems that don't have it.
4679
4680 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4681
4682         * config.h.in: Put a HAVE_USLEEP stub.
4683
4684         * cmpt.c (usleep): Replacement implementation of usleep using
4685         select.
4686
4687         * init.c: New option init_rate.
4688
4689         * main.c (main): New option --limit-rate.
4690
4691         * retr.c (limit_bandwidth): New function.
4692         (get_contents): Call it to limit the bandwidth used when
4693         downloading.
4694
4695         * progress.c (dot_update): Would print the wrong download speed on
4696         rows other than the first one when the download was continued.
4697         (dot_finish): Ditto.
4698
4699 2001-11-26  Ian Abbott <abbotti@mev.co.uk>
4700
4701         * http.c (gethttp): fix undeclared variable 'err' when compiled
4702         with HAVE_SSL.
4703
4704 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4705
4706         * progress.c: Don't allocate new timers; use the timing data
4707         propagated from the caller.
4708
4709         * retr.c (get_contents): Allocate and use a timer.
4710
4711 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4712
4713         * http.c (last_host_ip): Made into an address_list.
4714         (invalidate_persistent): Release pc_last_host_ip.
4715         (register_persistent): Use lookup_host.
4716         (persistent_available_p): Check for equality of hosts using
4717         address_list_match_all.  Call address_list_release.
4718         (http_cleanup): New function.
4719
4720         * ftp.c (getftp): Use lookup_host and connect_to_many.
4721
4722         * http.c (gethttp): Use lookup_host and connect_to_many.
4723
4724         * connect.c (make_connection): Removed.
4725         (connect_to_one): New function.
4726         (connect_to_many): Ditto.
4727         (set_connection_host_name): Ditto.
4728
4729         * host.c (lookup_host): New function; new return type.
4730         (address_list_new): New function.
4731         (address_list_count): Ditto.
4732         (address_list_copy_one): Ditto.
4733         (address_list_delete): Ditto.
4734         (address_list_release): Ditto.
4735         (pretty_print_address): Ditto.
4736
4737 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4738
4739         * recur.c (retrieve_tree): In case of followed redirection,
4740         blacklist the pre-redirection URL.
4741
4742 2001-11-26  Hrvoje Niksic  <hniksic@arsdigita.com>
4743
4744         * recur.c (descend_redirect_p): New function.
4745         (retrieve_tree): Make sure redirections are not blindly followed.
4746
4747 2001-11-04  Alan Eldridge  <alane@geeksrus.net>
4748
4749         * config.h.in: added HAVE_RANDOM.
4750
4751         * options.h: added random_wait to struct options.
4752
4753         * main.c (print_help [HAVE_RANDOM], main): added arg parsing, help
4754         for --random-wait.
4755
4756         * retr.c (sleep_between_retrievals) [HAVE_RANDOM]: added
4757         implementation of random wait times.
4758
4759         * init.c (commands): added "randomwait" keyword.
4760
4761 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
4762
4763         * recur.c (descend_url_p): Be more conservative with blacklisting
4764         URLs.
4765         (convert_all_links): Print how many files have been converted, and
4766         how long it took.
4767
4768         * progress.c (create_image): Place the number of downloaded bytes
4769         right after the progress bar.
4770
4771         * utils.c (suffix): Return a pointer into the string.
4772
4773 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
4774
4775         * url.c (convert_links): Handle CO_NULLIFY_BASE.
4776
4777         * recur.c (retrieve_tree): Ignore download-ignorable children.
4778         (convert_all_links): Specify CO_NULLIFY_BASE when link_base_p.
4779
4780         * html-url.c (handle_link): Return the newly created urlpos.
4781         (collect_tags_mapper): When dealing with BASE, store the base
4782         reference and mark it as download-ignorable.
4783
4784 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
4785
4786         * url.c (convert_links): Attempt to quote '?' as "%3F" when
4787         linking to local files.  Given up on the attempt, as it breaks
4788         local browsing.
4789
4790 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
4791
4792         * main.c (private_initialize): Removed.
4793         (main): Don't call private_initialize.
4794
4795         * http.c: Call lookup_host.
4796
4797         * host.c (host_init): Removed.
4798         (add_host_to_cache): Initialize host_name_address_map here, on
4799         demand.
4800         (ngethostbyname): Commented out.
4801
4802         * connect.c (make_connection): Remove dead code; use lookup_host.
4803
4804         * host.c (store_hostaddress): Renamed to lookup_host and reversed
4805         the args.
4806         Removed host_address_name_map and host_slave_master_map.
4807
4808 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
4809
4810         * progress.c (dot_create): Align the "[ skipping ... ]" string
4811         with the dots.
4812
4813         * retr.c (rate): Split into two functions: calc_rate and
4814         retr_rate.
4815
4816         * progress.c (create_image): Draw a dummy progress bar even when
4817         total size is unknown.
4818         (display_image): Place the text cursor at the end of the "image".
4819
4820 2001-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
4821
4822         * url.c (reencode_string): Use unsigned char, not char --
4823         otherwise the hex digits come out wrong for 8-bit chars such as
4824         nbsp.
4825         (lowercase_str): New function.
4826         (url_parse): Canonicalize u->url if needed.
4827         (get_urls_file): Parse each URL, and return only the valid ones.
4828         (free_urlpos): Call url_free.
4829         (mkstruct): Add :port if the port is non-standard.
4830         (mkstruct): Append the query string to the file name, if any.
4831         (urlpath_length): Use strpbrk_or_eos.
4832         (uri_merge_1): Handle the cases where LINK is an empty string,
4833         where LINK consists only of query, and where LINK consists only of
4834         fragment.
4835         (convert_links): Count and report both kinds of conversion.
4836         (downloaded_file): Use a hash table, not a list.
4837         (downloaded_files_free): Free the hash table.
4838
4839         * retr.c (retrieve_from_file): Ditto.
4840
4841         * main.c (main): Call either retrieve_url or retrieve_tree
4842         for each URL, not both.
4843
4844         * retr.c (register_all_redirections): New function.
4845         (register_redirections_mapper): Ditto.
4846         (retrieve_url): Register the redirections.
4847         (retrieve_url): Make the string "Error parsing proxy ..." 
4848         translatable.
4849
4850         * res.c (add_path): Strip leading slash from robots.txt paths so
4851         that the path representations are "compatible".
4852         (free_specs): Free each individual path, too.
4853         (res_cleanup): New function.
4854         (cleanup_hash_table_mapper): Ditto.
4855
4856         * recur.c (url_queue_new): New function.
4857         (url_queue_delete): Ditto.
4858         (url_enqueue): Ditto.
4859         (url_dequeue): Ditto.
4860         (retrieve_tree): New function, replacement for recursive_retrieve.
4861         (descend_url_p): New function.
4862         (register_redirection): New function.
4863
4864         * progress.c (create_image): Cosmetic changes.
4865
4866         * init.c (cleanup): Do all those complex cleanups only if
4867         DEBUG_MALLOC is defined.
4868
4869         * main.c: Removed --simple-check and the corresponding
4870         simple_host_check in init.c.
4871
4872         * html-url.c (handle_link): Parse the URL here, and propagate the
4873         parsed URL to the caller, who would otherwise have to parse it
4874         again.
4875
4876         * host.c (xstrdup_lower): Moved to utils.c.
4877         (realhost): Removed.
4878         (same_host): Ditto.
4879
4880 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4881
4882         * utils.c (path_simplify): Preserver the (non-)existence of
4883         leading slash.  Return non-zero if changes were made.
4884
4885 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4886
4887         * progress.c (bar_update): Don't modify bp->total_length if it is
4888         zero.
4889
4890 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4891
4892         * retr.c (retrieve_url): When the redirection URL doesn't parse,
4893         print the correct error message rather than "UNKNOWN".
4894
4895 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4896
4897         * progress.c (bar_finish): If the timer didn't record any time
4898         since the download beginning, fake 1ms.
4899
4900 2001-11-24  Hrvoje Niksic  <hniksic@arsdigita.com>
4901
4902         * recur.c (recursive_retrieve): Fix typo.
4903
4904 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
4905
4906         * progress.c (create_image): Don't translate "%ld ".
4907
4908 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
4909
4910         * progress.c (bar_set_params): Allow the user to force the use of
4911         the bar.
4912
4913 2001-11-23  Lemble Gregory  <gregory.lemble@st.com>
4914
4915         * gen_sslfunc.c (ssl_init_prng): New function; seed the SSL RNG.
4916
4917 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
4918
4919         * progress.c: Renamed dp_* functions to dot_* for greater clarity
4920         and consistency with bar_*.
4921         (print_download_speed): Get rid of the unneeded '@' character.
4922         (create_image): Fix download rate geometry.
4923
4924         * progress.c (print_elapsed): Remove spurious space.
4925         (print_elapsed): Renamed to print_download_speed, since that's
4926         what it does.
4927
4928 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
4929
4930         * progress.c (bar_update): If the downloaded amount becomes larger
4931         than the expected amount, adjust the expected amount accordingly.
4932
4933 2001-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
4934
4935         * utils.c (determine_screen_width): New function.
4936
4937         * main.c (main): New option `--progress=TYPE'.
4938         (main): Implement compatibility with the old option `--dot-style'.
4939
4940         * init.c: Removed cmd_spec_dotstyle -- that logic is now in
4941         dp_set_params.
4942         (cmd_spec_progress): New function.
4943
4944         * retr.c (get_contents): Use the progress_* functions instead of
4945         the old show_progress().
4946         (show_progress): Removed.
4947         (rate): Print "xxxx.xx K/s" instead of "KB/s".  Ditto for MB/s,
4948         etc.
4949
4950         * progress.c (set_progress_implementation): New function.
4951         (valid_progress_implementation_p): Ditto.
4952         (progress_create): Ditto.
4953         (progress_update): Ditto.
4954         (progress_finish): Ditto.
4955         (dp_create): Ditto.
4956         (dp_update): Ditto.
4957         (dp_finish): Ditto.
4958         (dp_set_params): Ditto.
4959         (print_elapsed): Ditto.
4960
4961 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
4962
4963         * retr.c (show_progress): Use it.
4964
4965         * log.c (log_set_flush): New function.
4966
4967 2001-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
4968
4969         * utils.c (path_simplify): Don't remove trailing slashes.
4970
4971         * ftp.c (ftp_get_listing): Use it.
4972
4973         * utils.c (file_merge): New function.
4974
4975         * url.c (opt_url): Removed.
4976
4977         * recur.c (recursive_retrieve): Inline "opt_url" logic.
4978
4979         * main.c (main): Use xfree(), not free().
4980
4981         * url.c (rewrite_url_maybe): Renamed to rewrite_shorthand_url.
4982
4983         * ftp.c (ccon): Move `ccon' typedef here, since it's only used
4984         internally.
4985
4986         * config.h.in: Include a stub for HAVE_STRPBRK.
4987
4988         * cmpt.c (strpbrk): Include a replacement for systems without
4989         strpbrk().
4990
4991         * ftp.c: Use url_set_dir and url_set_file when modifying the URL.
4992
4993         * url.c (url_set_dir): New function.
4994         (url_set_file): Ditto.
4995
4996         * ftp-basic.c (ftp_process_type): Process FTP type here; the URL
4997         parser makes the URL "params" available, so we can do that in this
4998         function.
4999
5000         * retr.c: Ditto.
5001
5002         * ftp.c: Ditto; pass the local file information in `ccon'.
5003
5004         * http.c: Get rid of the ugly kludge that had URL being replaced
5005         with the proxy URL when proxy retrieval was requested.  Use a
5006         separate parameter to http_loop and gethttp for the proxy URL.
5007
5008         * http.c: Changed to reflect the fact that local file, proxy, and
5009         referer information are no longer stored in struct url.  The local
5010         file information is passed in `struct hstat' now.
5011
5012         * url.c: Reworked URL parsing to be more regular.  Reencode the
5013         URL using reencode_string.
5014         Removed non-URL-related information from struct url.  This
5015         includes fields `proxy', `local', and `referer'.
5016
5017 2001-11-22  Jochen Hein  <jochen@jochen.org>
5018
5019         * main.c (main): Split the copyright notice for easier
5020         translation.
5021
5022 2001-08-21  Dave Turner <dct25@hermes.cam.ac.uk>
5023
5024         * ftp-basic.c (ftp_size): New function to send non-standard SIZE
5025           command to server to request file size.
5026         * ftp.h (ftp_size): Export it.
5027         * ftp.c (getftp): Use new ftp_size function if restoring
5028           transfer of a file with unknown size.
5029
5030 2001-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
5031
5032         * url.c (parseurl): Don't depend on the now-obsolete TYPE.
5033
5034 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5035
5036         * url.c (getproxy): Handle URL shorthands.
5037
5038 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5039
5040         * main.c: Remove --wait / --waitretry backwards compatibility
5041         code.
5042         
5043 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5044
5045         * main.c (main): Use it.
5046
5047         * url.c (rewrite_url_maybe): New function.
5048
5049 2001-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
5050
5051         * url.c: Clean up handling of URL schemes.
5052
5053 2001-05-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5054
5055         * url.c: Get rid of `protostrings'.
5056         (skip_proto): Don't use protostrings.
5057         (has_proto): Ditto.
5058
5059 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5060
5061         * Makefile.in: Conditionally compile getopt.o.
5062
5063 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5064
5065         * md5.h: Renamed to gnu-md5.h.
5066
5067         * md5.c: Renamed to gnu-md5.c.
5068
5069         * http.c: Ditto.
5070
5071         * ftp-opie.c: Use the new macros.
5072
5073         * sysdep.h: Define md5-related macros.
5074
5075         * config.h.in: Define HAVE_SOLARIS_MD5 or HAVE_BUILTIN_MD5
5076         depending on which md5 implementation is used.
5077
5078 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5079
5080         * res.c (res_register_specs): Initialize OLD and HP_OLD to appease
5081         the compiler.
5082
5083 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5084
5085         * http.c (gethttp): Print the whole response line when printing
5086         headers is requested.
5087
5088 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5089
5090         * res.c: New file.  Implement all RES-related code here.
5091
5092 2001-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5093
5094         * version.c: Wget 1.7.1 is released.
5095
5096 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
5097
5098         * headers.c (header_extract_number): Ignore trailing whitespace.
5099
5100 2001-08-24  Ian Abbott  <abbotti@mev.co.uk>
5101
5102         * html-url.c (collect_tags_mapper): Fix bug converting links
5103         with -k option for tags with multiple link attributes by
5104         handling links in the order they appear.
5105
5106 2001-08-15  Ian Abbott  <abbotti@mev.co.uk>
5107
5108         * ftp.c (ftp_loop_internal): Avoid a potential buffer overflow in
5109           the call to the 'rate' function by moving it past the error
5110           checking for the 'getftp' function return value.
5111
5112 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
5113
5114         * html-parse.c (advance_declaration): Use 0x22 instead of '"' or
5115         '\"'.  Different compilers' assert macros are broken in different
5116         ways.
5117
5118 2001-09-29  Christian Fraenkel  <c.fraenkel@gmx.net>
5119
5120         * http.c (gethttp): print debug output for errors occuring during
5121         the ssl handshake.
5122
5123 2001-11-16  Chris Seawood  <cls@seawood.org>
5124
5125         * init.c: Ditto.
5126
5127         * host.c: Ditto.
5128
5129         * connect.c: Ditto.
5130
5131         * sysdep.h: Support compilation under BEOS.
5132
5133 2001-06-08  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
5134
5135         * url.c (url_equal): Fix a memory leak when parseurl returns an
5136         error on the second URL. Also, since url_equal is not used at the
5137         moment, do not compile it.
5138
5139         * url.h: Ditto for the prototype of url_equal.
5140
5141 2001-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
5142
5143         * html-parse.c (map_html_tags): Support XML-style empty tags.
5144
5145 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5146
5147         * wget.h (DO_REALLOC_FROM_ALLOCA): Check for do_realloc_newsize in
5148         loop condition because we're no longer setting SIZEVAR here.
5149
5150 2001-06-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5151
5152         * wget.h (DO_REALLOC_FROM_ALLOCA): Set SIZEVAR after the memcpy()
5153         call because it needs the old value.
5154
5155 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5156
5157         * cookies.c (ATTR_NAME_CHAR): Allow almost any character to be in
5158         an attribute name.
5159
5160 2001-06-18  Hrvoje Niksic  <hniksic@arsdigita.com>
5161
5162         * url.c (url_filename): Make sure that slashes that sneak in to
5163         u->file via query string get protected.
5164         (file_name_protect_query_string): New function.
5165
5166 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5167
5168         * recur.c (recursive_retrieve): Also check undesirable_urls with
5169         canonicalized URL.
5170
5171 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5172
5173         * http.c (gethttp): Search `.netrc' with real host, not the proxy
5174         one.
5175
5176 2001-06-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5177
5178         * sysdep.h (MAP_FAILED): Provide MAP_FAILED for systems that don't
5179         define it.
5180
5181 2001-06-09  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
5182
5183         * ftp.h: Provide correct prototype for ftp_parse_ls().
5184
5185 2001-06-04  Hrvoje Niksic  <hniksic@arsdigita.com>
5186
5187         * version.c: Wget 1.7 is released.
5188
5189 2001-06-03  Karl Eichwalder  <ke@suse.de>
5190
5191         * ftp-ls.c (ftp_parse_ls): Fix typo.
5192
5193 2001-05-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5194
5195         * all: Update copyright information.
5196
5197 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5198
5199         * http.c (gethttp): Indicate that the continued download failed
5200         for *this* file.
5201
5202 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5203
5204         * version.c: Wget 1.7-pre1 is released.
5205
5206 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5207
5208         * version.c: Updated version to 1.7-pre1.
5209
5210 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5211
5212         * gen_sslfunc.c: Don't include <sys/time.h> directly.
5213
5214 2001-05-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5215
5216         * http.c (gethttp): Use real URL data for cookies, not the proxy
5217         stuff.
5218
5219 2001-05-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5220
5221         * main.c (print_help): Document `--no-http-keep-alive'.
5222
5223         * utils.c (numdigit): Handle negative numbers *correctly*.
5224
5225         * hash.c (make_nocase_string_hash_table): Use term "nocase" rather
5226         than the confusing "unsigned".
5227
5228         * utils.c (string_set_contains): Renamed from string_set_exists.
5229
5230         * hash.c (hash_table_contains): Renamed from hash_table_exists.
5231
5232         * cookies.c: Move case-insensitive hash tables to hash.c.
5233
5234 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5235
5236         * http.c (gethttp): Before concluding that the file is already
5237         fully retrieved, make sure that the file existed and `Range' was
5238         actually requested.
5239
5240 2001-05-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5241
5242         * cookies.c (eliminate_dups): New function.
5243         (build_cookies_request): Use it.
5244         (build_cookies_request): Set chain_store_size after reallocating
5245         all_chains.
5246         (check_domain_match): Annotated for easier future debugging.
5247         (store_cookie): In the debug message, print whether the cookie is
5248         permanent.
5249
5250 2001-05-08  Hrvoje Niksic  <hniksic@arsdigita.com>
5251
5252         * http.c (http_loop): Reset no_truncate before deciding whether to
5253         set it.
5254         (gethttp): Further clarify "-c conflicts with existing file" error
5255         message, based on input from Herold Heiko.
5256
5257 2001-05-07  Hrvoje Niksic  <hniksic@arsdigita.com>
5258
5259         * http.c (http_loop): If restval is set, set no_truncate to 1
5260         unconditionally.
5261
5262 2001-05-02  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
5263
5264         * ftp-ls.c (ftp_parse_winnt_ls): Assure months are being correctly
5265         converted. Pointed out by <Stefan.Weil@de.heidelberg.com>.
5266         (ftp_parse_vms_ls): Ditto.
5267
5268 2001-04-30  Hrvoje Niksic  <hniksic@arsdigita.com>
5269
5270         * init.c (cmd_address): Zero SIN before using it; apparently
5271         needed on *BSD.
5272
5273 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5274
5275         * ftp.c (ftp_loop_internal): Don't set NO_TRUNCATE if the file is
5276         empty.
5277
5278 2001-04-29  Hrvoje Niksic  <hniksic@arsdigita.com>
5279
5280         * main.c (main): Make `--cookies' respect its argument.
5281
5282 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
5283
5284         * main.c (main): Removed undocumented option `--email-address'.
5285
5286         * netrc.c: Use the latest read_whole_line.
5287
5288         * init.c (defaults): Set opt.ftp_pass to "-wget@".
5289
5290         * mswindows.c (pwd_cuserid): Ditto.
5291
5292         * utils.c (pwd_cuserid): Removed.
5293
5294         * host.c (ftp_getaddress): Removed.
5295
5296 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
5297
5298         (http_loop): Allocate space for filename_plus_orig_suffix with
5299         alloca; this is more efficient and removes the need to free it
5300         before each and every return.
5301
5302 2001-04-28  Hrvoje Niksic  <hniksic@arsdigita.com>
5303
5304         * http.c (gethttp): Return RETRUNNEEDED when the retrieval is
5305         unneeded because the file is already there and fully downloaded,
5306         and -c is specified.
5307         (http_loop): Handle RETRUNNEEDED.
5308
5309         * wget.h (uerr_t): New value RETRUNNEEDED.
5310
5311         * http.c (http_loop): Set no_truncate for files that both exist
5312         and are non-empty.
5313         (gethttp): Consider the download finished when restval >= contlen,
5314         not only when restval==contlen.
5315         (gethttp): Handle redirection before giving up due to -c.
5316         (gethttp): Clarify error message which explains that -c will not
5317         truncate the file.
5318         (gethttp): When returning CONTNOTSUPPORTED, don't forget to free
5319         the stuff that needs freeing and release the socket.
5320
5321 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5322
5323         * main.c (print_help): Wget booleans accept "off", not "no".
5324
5325 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5326
5327         * http.c (http_loop): If allow_cache is zero, always disable
5328         caching, not only when retrieving through proxy.
5329
5330         * init.c: Ditto.
5331
5332         * options.h (struct options): Rename proxy_cache to allow_cache.
5333
5334 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5335
5336         * http.c (mktime_from_utc): Improve documentation.
5337         (http_atotm): Put format strings into a separate array.
5338
5339 2001-04-27  Hrvoje Niksic  <hniksic@arsdigita.com>
5340
5341         * safe-ctype.h: Instead of throwing #error when isalpha is
5342         defined, redefine it to something that will throw a compile-time
5343         error if actually *used*.  Do the same for the rest of the
5344         standard C macros.
5345
5346 2001-04-26  Hrvoje Niksic  <hniksic@arsdigita.com>
5347
5348         * url.c (getproxy): Ignore empty proxy vars.
5349
5350 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5351
5352         * http.c (http_loop): Would load cookies every time.
5353
5354         * cookies.c (load_cookies): Handle cookies whose values contain
5355         embedded spaces.
5356
5357 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5358
5359         * utils.c: Define each DIGITS_* in one line.
5360
5361 2001-04-25  Roger L. Beeman  <beeman@cisco.com>
5362
5363         * http.c (http_atotm): Initialize t.tm_isdst to 0.
5364         (mktime_from_utc): Prevent mktime() from having discontinuities at
5365         DST transition points.
5366
5367 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5368
5369         * html-url.c (get_urls_html): Fix documentation.
5370
5371 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5372
5373         * url.c (UNSAFE_CHAR): Reimplement using a static table.
5374         (url_init): Removed.
5375         (init_unsafe_char_table): Removed.
5376
5377 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5378
5379         * snprintf.c (dopr): Replace ISDIGIT with '0' <= ch && ch <= '9'.
5380
5381 2001-04-25  Hrvoje Niksic  <hniksic@arsdigita.com>
5382
5383         * utils.c: Document timer functions.
5384
5385         * retr.c (rate): Use it.
5386         (rate): Print in GB/s if transfer rate exceeds 1 GB/s.
5387
5388         * utils.c (wtimer_granularity): New function.
5389
5390 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5391
5392         * retr.c (show_progress): Ditto.
5393
5394         * ftp.c (getftp): Ditto.
5395
5396         * http.c (gethttp): Use new timer functions.
5397
5398         * utils.c (wtimer_allocate): New function.
5399         (wtimer_new): Ditto.
5400         (wtimer_delete): Ditto.
5401         (wtimer_reset): Ditto.
5402         (wtimer_elapsed): Ditto.
5403
5404 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5405
5406         * utils.c (long_to_string): New, faster version.  Favors smaller
5407         numbers; much of the calculation is now done at compile-time.
5408
5409 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
5410
5411         * utils.c (numdigit): Handle negative numbers.
5412
5413 2001-04-23  Hrvoje Niksic  <hniksic@arsdigita.com>
5414
5415         * retr.c (show_progress): Print the download rate even when the
5416         percentages are not available.
5417
5418 2001-04-21  Hrvoje Niksic  <hniksic@arsdigita.com>
5419
5420         * ftp.c (getftp): Adjust expected_bytes if the length is
5421         authoritative.
5422
5423 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5424
5425         * url.c: Don't declare `construct'.
5426
5427         * hash.c (grow_hash_table): Speed up rehashing; inline storing of
5428         mappings to new locations.
5429         (hash_table_new): Make resize_threshold a field in the hash table,
5430         so we don't have to recalculate it in each hash_table_put.
5431         (grow_hash_table): Update resize_threshold.
5432         (MAX): Remove unused macro.
5433         (prime_size): Made static.
5434
5435 2001-04-14  Hrvoje Niksic  <hniksic@arsdigita.com>
5436
5437         * retr.c (retrieve_url): Call uri_merge, not url_concat.
5438
5439         * html-url.c (collect_tags_mapper): Call uri_merge, not
5440         url_concat.
5441
5442         * url.c (mkstruct): Use encode_string instead of xstrdup followed
5443         by URL_CLEANSE.
5444         (path_simplify_with_kludge): Deleted.
5445         (contains_unsafe): Deleted.
5446         (construct): Renamed to uri_merge_1.
5447         (url_concat): Renamed to uri_merge.
5448
5449 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5450
5451         * url.c (str_url): Use encode_string instead of the unnecessary
5452         CLEANDUP.
5453         (encode_string_maybe): New function, returns input string if no
5454         encoding is needed.
5455         (encode_string): Call encode_string_maybe to do the dirty work,
5456         xstrdup if no work needed.
5457
5458 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5459
5460         * wget.h (XDIGIT_TO_xchar): Define here.
5461
5462         * url.c (decode_string): Use new name.
5463         (encode_string): Ditto.
5464
5465         * http.c (XDIGIT_TO_xchar): Rename HEXD2asc to XDIGIT_TO_xchar.
5466         (dump_hash): Use new name.
5467
5468         * wget.h: Rename ASC2HEXD and HEXD2ASC to XCHAR_TO_XDIGIT and
5469         XDIGIT_TO_XCHAR respectively.
5470
5471 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5472
5473         * init.c: Include cookies.h.
5474
5475         * cookies.h: Declare cookies_cleanup.
5476
5477         * cookies.c (check_domain_match): Remove unused variable.
5478         (save_cookies): Remove extraneous argument from debug statement.
5479
5480         * host.c (same_host): Don't call skip_url.
5481
5482         * url.c (skip_url): Removed.  Removed its calls from various
5483         functions in url.c.
5484
5485 2001-04-13  Hrvoje Niksic  <hniksic@arsdigita.com>
5486
5487         * cookies.c (unsigned_string_hash): Use the new code in
5488         string_hash as reference.
5489
5490         * hash.c (hash_table_map): Allow deletion and change of the
5491         element processed by MAPFUN.
5492         (string_hash): Use the function from glib.
5493
5494 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5495
5496         * config.h.in: Include #undef stub.
5497
5498         * hash.c (hash_table_remove): Rewrite to actually clear deleted
5499         entries instead of just marking them as deleted.
5500
5501 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5502
5503         * hash.h: Declare hash_table_get_pair and hash_table_count.
5504
5505 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5506
5507         * cookies.c: Declare http_atotm.
5508
5509 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5510
5511         * ftp-ls.c (ftp_parse_unix_ls): Use octal constants for
5512         permissions.  A compiler that doesn't accept octal constants is
5513         seriously broken and shouldn't be used -- octal constants were
5514         present in K&R C!
5515
5516 2001-01-20  Karl Eichwalder  <ke@suse.de>
5517
5518         * Makefile.in: Provide and use DESTDIR according to the Coding
5519         Standards.
5520
5521 2001-04-12  Hrvoje Niksic  <hniksic@arsdigita.com>
5522
5523         * ftp-ls.c (ftp_parse_vms_ls): Make seconds optional in time
5524         specification.
5525
5526 2001-04-11  Hrvoje Niksic  <hniksic@arsdigita.com>
5527
5528         * url.c (parseurl): Don't strip trailing slash when u->dir is "/"
5529         because that strips the *leading* slash, thus forcing relative
5530         FTP retrieval.
5531
5532 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
5533
5534         * ftp.c (getftp): Convert initial FTP directory from VMS to UNIX
5535         notation for VMS servers. 
5536         (ftp_retrieve_dirs): Do not prepend '/' to f->name when
5537         odir is an empty string.
5538
5539 2001-04-10  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
5540
5541         * ftp-ls.c (ftp_parse_winnt_ls): Made the fix for AM/PM more
5542         effective. Suggested by Edward J. Sabol.
5543
5544 2001-04-10  Hrvoje Niksic  <hniksic@arsdigita.com>
5545
5546         * cookies.c (build_cookies_request): Use and sort cookies from all
5547         matching domains.
5548         (build_cookies_request): Check for duplicates before generating
5549         the `Cookies' header.
5550
5551         * main.c (main): Don't load cookies here.
5552         (main): Make loadcookies and savecookies call the correct command.
5553
5554         * http.c (http_loop): Load cookies on-demand.
5555
5556 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5557
5558         * http.c (gethttp): Fix indentation of SSL ifdef.
5559
5560 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5561
5562         * ftp.c (ftp_retrieve_dirs): Don't forcibly prepend "/" to u->dir;
5563         that hack is no longer necessary.
5564         (getftp): Prepend initial directory to *non*-absolute u->dir's.
5565
5566 2001-04-09  Hrvoje Niksic  <hniksic@arsdigita.com>
5567
5568         * init.c (cmd_file): New function.
5569         (enable_tilde_expansion): New variable.
5570         (run_wgetrc): Use it.
5571         (cmd_file): Use it.
5572
5573 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
5574
5575         * init.c: Include cookie-related options.
5576
5577         * main.c (main): Include cookie-specific options.
5578         (main): Load cookies before download is finished.
5579         (main): Save cookies when done.
5580
5581         * http.c (gethttp): Process the `Set-Cookie' header.
5582         (gethttp): Include cookies in the response.
5583
5584         * cookies.c: New file.
5585
5586 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
5587
5588         * utils.c (datetime_str): New function.
5589
5590 2001-04-08  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
5591
5592         * ftp-ls.c (ftp_parse_winnt_ls): The AM/PM change did assume
5593         12:01PM == 00:01, which was obviously wrong. Taken care of this
5594         anomaly.
5595
5596         * ChangeLog: Removed an excess conflict marker. Reformatted the
5597         entry by Philipp Thomas from 2001-03-09.
5598
5599         * ftp-ls.c (ftp_parse_winnt_ls): Ensure that adjusted PM hours lay
5600         between 0 and 23. Elminate unused variable `sec'.
5601
5602 2001-04-08  Hrvoje Niksic  <hniksic@arsdigita.com>
5603
5604         * hash.c (hash_table_count): New function.
5605
5606 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5607
5608         * utils.c (read_file): Cast MAP_FAILED to char *.  Enforced by
5609         Digital Unix cc.
5610
5611 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5612
5613         * config.h.in: Oops, do the namespace tweaks only on systems we
5614         know about.
5615
5616 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5617
5618         * hash.c: Include <string.h>.
5619
5620 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5621
5622         * config.h.in: Define "compilation environment" options that work
5623         under Linux and Solaris.  To be reviewed on other OS'es.
5624
5625 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5626
5627         * http.c (gethttp): Prepend literal newline with `\n\'.
5628
5629 2001-04-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5630
5631         * sysdep.h: Don't define VERY_LONG_FORMAT.
5632
5633         * utils.c (very_long_to_string): New function.
5634         (legible_very_long): Use it; don't use VERY_LONG_FORMAT.
5635
5636 2001-04-04  Christian Fraenkel  <christian.fraenkel@gmx.net>
5637
5638         * url.c (parse_uname): Would run past the end of the string if the
5639         username was present, but the URL did not contain a slash, e.g.
5640         http://foo:bar@myhost.
5641
5642 2001-04-03  KOJIMA Hajime  <kjm@rins.ryukoku.ac.jp>
5643
5644         * http.c (http_atotm): Use %A instead of %a to match full
5645         weekday.  (On most systems there is no difference.)
5646
5647 2001-04-03  Paul Bludov  <paul@ozero.net>
5648
5649         * mswindows.c (sleep): Use SleepEx() instead of Sleep().
5650         (ws_changetitle): Use alloca() instead of malloc() to avoid memory
5651         leak.
5652         (ws_mypath): Use GetModuleFileName instead of argv[0].
5653         (ws_startup): Use data.wVersion for comparison.
5654
5655 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
5656
5657         * http.c (http_loop): Ditto.
5658
5659         * ftp.c (ftp_loop_internal): Made the check whether to continue
5660         retrieval `-O'-friendly.
5661
5662 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
5663
5664         * netrc.c (parse_netrc): Don't trim the line endings explicitly;
5665         they will be handled as whitespace.
5666         (parse_netrc): Correctly handle lines that end with whitespace.
5667
5668 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
5669
5670         * retr.c (retrieve_url): New variable global_download_count used
5671         to identify first retrieval.
5672
5673         * ftp.c (getftp): Ditto.
5674
5675         * http.c (gethttp): Rewind opt.dfp only on first retrieval.
5676
5677 2001-04-02  Hrvoje Niksic  <hniksic@arsdigita.com>
5678
5679         * init.c (cmd_address): Heap-allocate the address that gets stored
5680         to CLOSURE.  Old code would simply assign an address on the stack.
5681
5682 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
5683
5684         * ftp.c (ftp_get_listing): Propagate error status.
5685         (ftp_retrieve_glob): Use it.
5686         (ftp_loop): Ditto.
5687
5688 2001-04-01  Nicolas Lichtmaier <nick@debian.org>
5689
5690         * main.c (main): Add -C to the string that is the third arg to
5691         getopt_long().
5692
5693 2001-04-01  Hrvoje Niksic  <hniksic@arsdigita.com>
5694
5695         * ftp.c (getftp): Don't start the download from scratch if `-c'
5696         was specified, but the file is already fully downloaded.
5697
5698         * http.c (gethttp): Don't truncate a pre-existing file if `-c' was
5699         specified and the server doesn't support continued download.
5700         (gethttp): Don't start the download from scratch if `-c' was
5701         specified, but the file is already fully downloaded.
5702
5703 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
5704
5705         (recursive_retrieve): Don't clear the hash tables at this point at
5706         all; it interferes with the normal operation of register_download.
5707
5708 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
5709
5710         * recur.c (recursive_retrieve): Clear the hash tables only when
5711         they are defined.
5712
5713 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
5714
5715         * http.c (gethttp): Make sure the socket is closed with
5716         CLOSE_INVALIDATE before we have drained the body.
5717
5718 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
5719
5720         * retr.c (retrieve_url): Call register_download() for downloaded
5721         files and register_html() for downloaded HTML files.
5722
5723         * recur.c (register_download): New function; register here that a
5724         file has been downloaded, rather than in recursive_retrieve().
5725         (register_html): New function; enqueue the location of HTML files
5726         here rather than in recursive_retrieve().
5727
5728 2001-03-31  Hrvoje Niksic  <hniksic@arsdigita.com>
5729
5730         * main.c (print_help): Use multiple fputs instead of a single ugly
5731         printf().
5732         (main): Consistently assign numbers >128 to options without a
5733         corresponding character.
5734
5735 2001-03-09  Philipp Thomas  <pthomas@suse.de>
5736
5737         * safe-ctype.h: New file. Locale independent ctype.h replacement
5738         taken from libiberty.
5739
5740         * safe-ctype.c: New file. Tables for above.
5741
5742         * Makefile.in: Add safe-ctype$o to OBJS.  Add dependencies for
5743         safe-ctype$o.
5744
5745         * cmpt.c: Remove include of ctype.h. Use ISSPACE instead of
5746         isspace.
5747
5748         * ftp-basic.c: Don't include ctype.h.
5749
5750         * ftp-ls.c: Likewise.
5751
5752         * ftp.c: Likewise.
5753
5754         * headers.c: Likewise.
5755
5756         * host.c: Likewise.
5757
5758         * html-parse.c: Likewise.
5759
5760         * html-url.c: Likewise.
5761
5762         * http.c: Likewise.
5763
5764         * init.c: Likewise.
5765
5766         * main.c: Likewise. Set LC_CTYPE along with LC_MESSAGES.
5767
5768         * netrc.c: Likewise.
5769
5770         * recur.c: Likewise.
5771
5772         * retr.c: Likewise.
5773
5774         * snprintf.c: Replace ctype.h with safe-ctype.h. Use ISDIGIT
5775         instead of isdigit.
5776
5777         * sysdep.h: Remove defines of ctype macros as they aren't needed
5778         for safe-ctype-h.
5779
5780         * url.c: Don't include ctype.h.
5781
5782         * utils.c: Likewise.
5783
5784         * wget.h: Include safe-ctype.h.
5785
5786 2001-03-27  Dan Harkless  <wget@harkless.org>
5787
5788         * Makefile.in: Moved top_builddir out of "User configuration
5789         section" of top Makefile and analogous spot in this one.
5790
5791 2001-03-17  Dan Harkless  <wget@harkless.org>
5792
5793         * Makefile.in: Include @SSL_INCLUDES@ substition in INCLUDES.
5794         Define top_builddir.  Link wget with libtool so the user doesn't
5795         have to supply a bunch of custom environment variables to 
5796         correctly link with the OpenSSL shared libraries.
5797
5798 2001-03-06  Hack Kampbjorn  <hack@hackdata.com>
5799
5800         * http.c (gethttp): skip :port in host header if it is the
5801         DEFAULT_HTTPS_PORT when using SSL.
5802
5803         * url.c: move the #define of DEFAULT_HTTP_PORT, DEFAULT_FTP_PORT
5804         and DEFAULT_HTTPS_PORT to the header file so it can be use in the
5805         rest of the code. 
5806         * url.h: Ditto
5807
5808 2001-03-01  Jonas Jensen  <bones@huleboer.dk>
5809
5810         * retr.c (show_progress): Correctly calculate the number of bytes
5811         in the first line of the download that have been actually
5812         downloaded in this run.
5813
5814 2001-02-23  Dan Harkless  <wget@harkless.org>
5815
5816         * main.c (print_help): --help documentation for -N said it would
5817         re-download files if they had the _same_ timestamp on server.
5818         (print_help): -nr belongs in "FTP options" section of --help
5819         output, not "Recursive retrieval" section.  Alphabetized FTP
5820         options by long option name.
5821
5822 2001-02-16  Dan Harkless  <wget@harkless.org>
5823
5824         * init.c (commands): Hack Kampbjørn <hack@hackdata.com> discovered
5825         that "httpsproxy" had been inserted into commands[] out of
5826         alphabetical order, causing "BUG: unknown command `httpuser'".
5827
5828 2001-02-13  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
5829
5830         * ftp-ls.c (ftp_parse_ls): Added support of ST_MACOS (Unix-like
5831         listing without correct permissons).
5832
5833         * ftp.h (stype): Added ST_MACOS to identify the NetPresenz MacOS
5834         FTP server. 
5835
5836         * ftp.c (ftp_retrieve_list): New mirroring logic: A remote file
5837         shall be donwloaded only when it's newer than the local copy or
5838         when it has the same timeestamp but its size is different. ST_VMS
5839         and ST_MACOS as special cases that lie about file size. 
5840
5841         * ftp-ls.c (ftp_parse_ls): Support for ST_MACOS.
5842
5843         * Makefile.in: Removed dependency on ftpparse library due to unclear
5844         copyright issues and absence of any feedback to our queries. 
5845
5846         * ftp-ls.c: Removed dependency on ftpparse library due to unclear
5847         copyright issues and absence of any feedback to our queries.   
5848         (ftp_parse_ls): Added a warning message when remote server system
5849         does not seem to be suported by wget. 
5850         (ftp_parse_vms_ls): New function for parsing VMS ftp
5851         server listing output.
5852         (clean_line): New function responsible for removing
5853         end-of-line characters from FTP listing texts.
5854
5855         * ftp.c (getftp): Global variables pwd and host_type are now
5856         member of the ccon structure under names ccon.id and ccon.rs. 
5857
5858         * ftp.h (struct ccon): Added formed global variables from ftp.c,
5859         enum stype rs (remote system identification) and char *id (initial
5860         working directory), as suggested by Hrvoje.
5861
5862         * url.c (parse_uname): Added support for passwords containing '@'
5863         characters.
5864         (skip_uname): Ditto.
5865
5866 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
5867
5868         * ftp.c (ftp_loop): Reset con.
5869
5870 2001-01-06  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
5871
5872         * url.c (parse_uname): Added support for passwords containing '@'
5873         characters.
5874         (skip_uname): Ditto.
5875
5876 2001-02-11  Hack Kampbjørn  <hack@hackdata.com>
5877
5878         * url.c (parseurl): Debug-print u->ftp_type.
5879
5880 2001-02-11  Hrvoje Niksic  <hniksic@arsdigita.com>
5881
5882         * ftp.c (ftp_loop_internal): Disable padding.
5883         (getftp): Ditto.
5884
5885         * http.c (http_loop): Disable padding.
5886
5887         * retr.c (show_progress): Use it to enable padding.
5888
5889         * retr.c (rate): Optional parameter PAD for padding the rate.
5890
5891 2001-02-10  Hrvoje Niksic  <hniksic@arsdigita.com>
5892
5893         * retr.c (show_progress): Make sure that the last output line
5894         includes progress.
5895
5896 2001-02-10  Jonas Jensen  <bones@huleboer.dk>
5897
5898         * retr.c (show_progress): Print the download rate along with the
5899         percentages.
5900         Along with Anders Thorsby <anders@thorsby.dk>.
5901
5902 2001-02-10  Tim Mooney  <mooney@dogbert.cc.ndsu.NoDak.edu>
5903
5904         * ftp.h: Rename enums `command' to `wget_ftp_command' and
5905         `fstatus' to `wget_ftp_status' because old names clash with Tru64
5906         net/if.h.
5907
5908 2001-02-08  Christian Fraenkel <christian.fraenkel@gmx.net>
5909
5910         * gen_sslfunc.c: verify_callback is now static
5911
5912         * gen_sslfunc.c (init_ssl): load certificate if specified
5913
5914         * gen_sslfunc.c (ssl_printerr): new function
5915
5916         * init.c: added new --sslcertfile and --sslcertkey switches
5917
5918         * main.c: ditto
5919
5920         * options.h: ditto
5921
5922         * http.c (gethttp): abort when init_ssl fails
5923
5924 2001-01-23  Herold Heiko  <Heiko.Herold@previnet.it>
5925
5926         * mswindows.h: Include <malloc.h>; it's needed for alloca().
5927
5928 2001-01-10  Dan Harkless  <wget@harkless.org>
5929
5930         * url.c (str_url): Clarified this function's comment header after
5931         Hrvoje answered my question on the list as to when hide != 1.
5932         Also Hrvoje pointed out I need to use xstrdup() on the string literal.
5933
5934 2001-01-06  Hrvoje Niksic  <hniksic@arsdigita.com>
5935
5936         * connect.c (bindport): Declare addrlen as int.  Diagnosed by
5937         Drazen Kacar <dave@arsdigita.com>.
5938         (conaddr): Ditto.
5939
5940 2001-01-09  Dan Harkless  <wget@harkless.org>
5941
5942         * html-url.c: A bunch of fixup of `--page-requisites'-related
5943         comments to reflect Hrvoje's changes to my code when transplanting
5944         it into this new file, to fix spelling mistakes, to clarify, etc.
5945
5946         * url.c (write_backup_file): Clarified a comment.
5947         (str_url): Henrik van Ginhoven pointed out on the list that we
5948         shouldn't give away the number of characters in the password by
5949         replacing each character with a 'x'.  Use "<password>" instead.
5950
5951         * ftp.c (ftp_retrieve_dirs): The bug where recursion into FTP
5952         directories didn't work if logging in put you in a directory other
5953         than "/" is fixed now.  Removed the comment here warning of the bug.
5954
5955         * main.c (print_help): --continue's description was misleading.
5956         We don't "restart", we "resume".  Also, better to say
5957         "partially-downloaded file" rather than just "existing file".
5958
5959 2001-01-06  Dan Harkless  <wget@harkless.org>
5960
5961         * ChangeLog: The '[Not in 1.6 branch.]'s were decided not to be
5962         the best way to go about my aim.  Removed them in favor of:
5963
5964         * ChangeLog-branches/1.6_branch.ChangeLog: New file.
5965
5966 2001-01-04  Hrvoje Niksic  <hniksic@arsdigita.com>
5967
5968         * url.c (replace_attr): New function, to be used by both
5969         TO_COMPLETE and TO_RELATIVE case in convert_links.
5970         (find_fragment): New function for finding URL fragments.
5971         (replace_attr): Better handle the case where the original string
5972         is not quoted.  Use find_fragment.
5973         (convert_links): Use replace_attr().
5974
5975 2000-12-31  Dan Harkless  <wget@harkless.org>
5976
5977         * ChangeLog: Since this flat file doesn't have multiple branches,
5978         looking at the dates would make you think that things went into
5979         1.6 that actually just went into the 1.7-dev branch.  Added "[Not
5980         in 1.6 branch.]" where appropriate to clarify.
5981         
5982 2000-12-30  Dan Harkless  <wget@harkless.org>
5983
5984         * ftp.c, http.c:  Applied Hack Kampbjørn <hack@hackdata.com>'s
5985         patch to deal with h_errno not being defined in netdb.h under Cygwin.
5986
5987 2000-12-18  Csaba Raduly  <csaba.raduly@sophos.com>
5988
5989         * sysdep.h: Include <malloc.h> and <io.h> under Watcom.
5990
5991 2000-12-17  Igor Khristophorov  <igor@atdot.org>
5992
5993         * http.c (check_end): Fix test for '+' or '-'.
5994
5995 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
5996
5997         * url.c (parseurl): Rename inner loop var from i to ind to avoid
5998         clash with the function top-level-declared variable i.
5999         (str_url): Likewise, rename inner-loop i to j.
6000
6001         * recur.c (parse_robots): Don't declare LEN at top of function.
6002         (robots_match): Renamed parameter FORBIDDEN to avoid hiding of
6003         global variable.
6004
6005         * main.c (main): Change erroneous use of bitwise and to logical.
6006
6007         * init.c (cmd_address): Don't heap-allocate `sin'; it can be on
6008         the stack because it will be copied to closure.
6009
6010         Thanks to Csaba Raduly's run of PC-LINT over the sources.
6011
6012 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6013
6014         * http.c (basic_authentication_encode): Use xmalloc(), not
6015         malloc().  Thanks to Csaba Raduly's run of PC-LINT over the
6016         sources.
6017
6018 2000-12-17  Csaba Raduly  <csaba.raduly@sophos.com>
6019
6020         * sysdep.h: Test for __EMX__ rather than for EMXOS2 for OS/2
6021         compilation.
6022
6023 2000-12-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6024
6025         * mswindows.c: Include <errno.h>.
6026
6027         * gen_sslfunc.c: Include <errno.h>.
6028
6029         * ftp-basic.c: Don't attempt to declare errno or h_errno because
6030         they're not used.
6031
6032         * main.c: Include <errno.h> because errno is used.
6033
6034         * ftp.c: Ditto.
6035
6036         * http.c: Include <netdb.h> for h_errno.
6037
6038 2000-12-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6039
6040         * html-parse.c (advance_declaration): MSVC assert() chokes on
6041         '\"'.  Use '"' instead.
6042
6043 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6044
6045         * utils.c (xfree_real): Removed.
6046         (xfree_debug): Just call free().
6047
6048         * wget.h (xfree): Make it an alias for free.
6049
6050 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6051
6052         * http.c (http_loop): Furthermore, touch output_document only if
6053         it is known to be an existing regular file.
6054
6055 2000-12-11  Hrvoje Niksic  <hniksic@arsdigita.com>
6056
6057         * ftp.c (ftp_retrieve_list): Ditto.
6058
6059         * http.c (http_loop): Touch output_document if that is used for
6060         output.
6061
6062 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6063
6064         * http.c: Include gen_sslfunc.h after including Wget's headers.
6065         (persistent_available_p): Needed coma before `int ssl'.
6066
6067 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6068
6069         * ftp.c (ftp_loop_internal): Ditto.
6070
6071         * http.c (http_loop): Use it.
6072
6073         * retr.c (sleep_between_retrievals): New function that handles the
6074         logic of opt.wait and opt.waitretry.
6075
6076 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6077
6078         * rbuf.h: Implement only a single version of RBUF_READCHAR, using
6079         rbuf_read_bufferful when the buffer is depleted.
6080
6081         * rbuf.c (rbuf_read_bufferful): New function.
6082
6083 2000-12-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6084
6085         * gen_sslfunc.h: Use ansi2knr style function declarations.
6086
6087         * gen_sslfunc.c: Reformat according to the GNU coding standards.
6088         More should be done.
6089
6090         * http.c (persistent_available_p): Place the cheap SSL test nearer
6091         the top of the function.
6092         (CLOSE_FINISH, CLOSE_INVALIDATE): Define only one version of each.
6093
6094 2000-12-05  Hrvoje Niksic  <hniksic@arsdigita.com>
6095
6096         * url.c (init_unsafe_char_table): Reinstate space as an unsafe
6097         char.
6098
6099 2000-12-03  Christian Fraenkel <christian.fraenkel@gmx.net>
6100
6101         * Makefile.in: added gen_sslfunc object
6102         * config.h.in: added HAVE_SSL define
6103         * connect.c: changed select_fd from static int to int
6104         * connect.h: ditto
6105         * gen_sslfunc.h: New file
6106         * gen_sslfunc.c: ditto
6107         * http.c: added HTTPS fuctionality
6108         * retrc.c: ditto
6109         * url.c: ditto
6110         * init.c: added opt.httpsproxy
6111         * options.h: ditto
6112         * rbuf.h: added alternate rbuf struct
6113         * wget.h: added CONSSLERR
6114         * rbuf.c: ditto
6115
6116         * http.c: Added HTTPS fuctionality.
6117
6118         * retrc.c: Ditto.
6119
6120         * url.c: Ditto.
6121
6122         * init.c: Added opt.httpsproxy.
6123
6124         * options.h: Ditto.
6125
6126         * rbuf.h: Added alternate rbuf struct.
6127
6128         * wget.h: Added CONSSLERR.
6129
6130         * rbuf.c: Ditto.
6131
6132 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6133
6134         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
6135         "ignore_perms" to ignore file and directory permissions for
6136         Windows NT FTP server listings.
6137         (ftp_parse_winnt_ls): New function.
6138         (ftp_parse_ls): Parses UNIX and Windows NT listings
6139         separately. Simple heuristics for distinguishing between UNIX and
6140         MS-DOS-like FTP listing provided by Windows NT FTP service.
6141
6142 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6143
6144         * ftpparse.c, ftpparse.h: New files.
6145
6146         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
6147         only. Use ftp_parse_nonunix_ls otherwise.
6148         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
6149         exotic FTP servers.
6150
6151         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
6152         FTP servers.
6153
6154         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
6155         (getftp): Support for VMS. Support for FTP servers that do not
6156         place you in the root directory after login.
6157         (ftp_retrieve_list): VMS is silent about the real file size, issue
6158         a more appropriate message.
6159         (ftp_get_listing): Pass host_type to ftp_parse_ls.
6160
6161         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
6162
6163 2000-11-30  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6164
6165         * ftp-ls.c (ftp_parse_unix_ls): Added second parameter
6166         "ignore_perms" to ignore file and directory permissions for
6167         Windows NT FTP server listings.
6168         (ftp_parse_winnt_ls): New function.
6169         (ftp_parse_ls): Parses UNIX and Windows NT listings
6170         separately. Simple heuristics for distinguishing between UNIX
6171         and MS-DOS-like FTP listing provided by Windows NT FTP service.
6172
6173 2000-11-29  John Summerfield  <summer@OS2.ami.com.au>
6174
6175         * netrc.c (parse_netrc): Get rid of line ending.
6176
6177 2000-11-25  Hrvoje Niksic  <hniksic@arsdigita.com>
6178
6179         * ftp.c (ftp_retrieve_list): Undo typo "fix" until resolution by
6180         Dan.
6181
6182 2000-11-24  Karl Eichwalder  <ke@suse.de>
6183
6184         * main.c (print_help): Untabify.
6185
6186 2000-11-23  Hrvoje Niksic  <hniksic@arsdigita.com>
6187
6188         * utils.c (xrealloc_debug): Do the unregister/register thing only
6189         if the pointer has actually changed.
6190         (xmalloc_real): Declare `static' in DEBUG_MALLOC builds.
6191         (xfree_real): Ditto.
6192         (xrealloc_real): Ditto.
6193         (xstrdup_real): Ditto.
6194
6195 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
6196
6197         * ftp.c (getftp): ftp_getaddress() returns a malloc'ed copy of the
6198         string; no need to strdup() it.
6199         (getftp): Make pwd_len a local variable.
6200         (ftp_loop): Free PWD before returning.
6201
6202         * init.c (cleanup): Free opt.ftp_pass only if it's non-NULL.
6203
6204 2000-11-22  Hrvoje Niksic  <hniksic@arsdigita.com>
6205
6206         * all: Use xfree() instead of free.
6207
6208         * utils.c (xfree): New function.
6209
6210 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
6211
6212         * url.c (convert_links): HTML-quote the converted string.
6213
6214         * utils.c (html_quote_string): Move here from ftp-ls.c
6215         (html_quote_string): Make non-static; declare in utils.h.
6216         (html_quote_string): Convert SP to &#32;.
6217
6218 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
6219
6220         * ftp.c (getftp): Reformat Jan's code according to GNU coding
6221         standards; remove (debugging?) printf's; use '\0' for the ASCII
6222         zero character.  Use alloca() instead of malloc() for
6223         inter-function temporary allocations.
6224
6225 2000-11-18  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6226
6227         * ftpparse.c, ftpparse.h: New files.
6228
6229         * ftp-ls.c (ftp_parse_ls): Use ftp_parse_unix_ls for UNIX servers
6230         only. Use ftp_parse_nonunix_ls otherwise.
6231         (ftp_parse_nonunix_ls): Stub to the ftpparse library handling all
6232         exotic FTP servers.
6233
6234         * ftp.h (stype): New enum, distinguishes UNIX, VMS, and "other"
6235         FTP servers.
6236
6237         * ftp.c: New static wariables host_type, pwd, and pwd_len. 
6238         (getftp): Support for VMS. Support for FTP servers that do not
6239         place you in the root directory after login.
6240         (ftp_retrieve_list): VMS is silent about the real file size, issue
6241         a more appropriate message.
6242         (ftp_get_listing): Pass host_type to ftp_parse_ls.
6243
6244         * ftp-basic.c (ftp_pwd, ftp_syst): New functions.
6245
6246 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
6247
6248         * hash.c (hash_table_put): Don't overwrite deleted mappings.
6249
6250 2000-11-21  Hrvoje Niksic  <hniksic@arsdigita.com>
6251
6252         * hash.c (find_mapping): New function.
6253         (hash_table_get): Use it.
6254         (hash_table_get_pair): Ditto.
6255         (hash_table_exists): Ditto.
6256         (hash_table_remove): Ditto.
6257         (hash_table_remove): Really delete the entry if the mapping
6258         following LOCATION is empty.
6259
6260         * utils.c (string_set_add): Check whether the element has existed
6261         before.
6262
6263         * hash.c (hash_table_get_pair): New function.
6264
6265 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6266
6267         * http.c (http_process_type): Ignore trailing whitespace; use
6268         strdupdelim().
6269
6270         * recur.c (recursive_retrieve): Use the new `convert' field.
6271         (convert_all_links): Ditto.
6272         (convert_all_links): Don't respect meta_disallow_follow.
6273
6274         * html-url.c (handle_link): Fill out link_relative_p and
6275         link_complete_p.
6276
6277         * url.h (struct _urlpos): Make elements more readable.
6278
6279         * recur.c (recursive_retrieve): Call slist_prepend instead of
6280         slist_append.
6281         (convert_all_links): Call slist_nreverse before iterating through
6282         urls_html.
6283
6284         * utils.c (slist_prepend): New function.
6285         (slist_nreverse): Ditto.
6286
6287 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6288
6289         * http.c (check_end): Constify.
6290
6291 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6292
6293         * http.c (http_loop): If username and password are known, try the
6294         `Basic' authentication scheme by default.
6295
6296         * connect.h: Declare test_socket_open.
6297
6298 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6299
6300         * version.c: Bump version from 1.5.3+dev to 1.7-dev.
6301
6302 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6303
6304         * http.c (gethttp): Don't use the return value of sprintf().
6305         (gethttp): Inhibit keep-alive if opt.http_keep_alive is 0.
6306
6307 2000-11-20  Hrvoje Niksic  <hniksic@arsdigita.com>
6308
6309         * recur.c (recursive_retrieve): Print the "so we don't load"
6310         debugging message only if we really don't load.
6311
6312         * http.c (gethttp): Inhibit keep-alive if proxy is being used.
6313         (gethttp): Don't request keep-alive if keep-alive is inhibited.
6314
6315 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6316
6317         * http.c (gethttp): Make the HTTP persistent connections more
6318         robust.
6319
6320 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6321
6322         * retr.c (get_contents): If use_expected, make sure that the
6323         appropriate amount of data is being read.
6324
6325         * http.c (gethttp): Check for both `Keep-Alive: ...' and
6326         `Connection: Keep-Alive'.
6327
6328         * wget.h (DEBUGP): Call debug_logprintf only if opt.debug is
6329         turned on.
6330
6331 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6332
6333         * http.c (connection_available_p): Use it.
6334
6335         * connect.c (test_socket_open): New function.
6336
6337         * http.c (gethttp): Support persistent connections.  Based on the
6338         ideas, and partly on code, by Sam Horrocks <sam@daemoninc.com>.
6339         (register_persistent): New function.
6340         (connection_available_p): Ditto.
6341         (invalidate_connection): Ditto.
6342
6343 2000-11-19  Hrvoje Niksic  <hniksic@arsdigita.com>
6344
6345         * url.c (convert_links): Handle UREL2ABS case.
6346
6347         * recur.c (recursive_retrieve): Instead of the list
6348         urls_downloaded, use hash tables dl_file_url_map and
6349         dl_url_file_map.
6350         (convert_all_links): Use them to retrieve data.
6351
6352         * host.c (clean_hosts): Free the hash tables.
6353
6354         * main.c (private_initialize): Call host_init().
6355
6356         * host.c (store_hostaddress): Use a saner, hash table-based data
6357         model.
6358         (realhost): Ditto.
6359         (host_init): Initialize the hash tables.
6360
6361 2000-11-18  Hrvoje Niksic  <hniksic@arsdigita.com>
6362
6363         * utils.c (slist_append): Eviscerate NOSORT.  Hash tables are now
6364         used for what the sorted slists used to be used for.
6365         (slist_contains): Don't rely on the list being sorted.
6366         (slist_append): Simplify the code.
6367
6368         * recur.c (recursive_cleanup): Use free_string_set.
6369
6370         * utils.c (string_set_add, string_set_exists, string_set_free):
6371         New functions for easier freeing of hash tables whose keys are
6372         strdup'ed strings.
6373
6374         * recur.c (recursive_retrieve): Use the hash table functions for
6375         storing undesirable URLs.
6376
6377         * hash.c: New file.
6378
6379 2000-11-17  Hrvoje Niksic  <hniksic@arsdigita.com>
6380
6381         * main.c (private_initialize): Call url_init.
6382         (main): Call private_initialize.
6383
6384         * url.c (unsafe_char_table): New table.
6385         (UNSAFE_CHAR): Use it.
6386         (init_unsafe_char_table): New function.
6387         (url_init): New function; call init_unsafe_char_table.
6388
6389 2000-11-16  Hrvoje Niksic  <hniksic@arsdigita.com>
6390
6391         * mswindows.h: Define snprintf and vsnprintf to _snprintf and
6392         _vsnprintf respectively.
6393
6394 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
6395
6396         * config.h.in: Do the _XOPEN_SOURCE and _SVID_SOURCE things only
6397         on Linux.
6398
6399 2000-11-15  Hrvoje Niksic  <hniksic@arsdigita.com>
6400
6401         * html-url.c (handle_link): Handle HTML fragment identifiers.
6402
6403         * recur.c (recursive_retrieve): If norobot info is respected and
6404         the file is specified not to be followed by robots, respect that.
6405
6406         * html-url.c (collect_tags_mapper): Handle <meta name=robots
6407         content=X>.  For us the important cases are where X is NONE or
6408         where X contains NOFOLLOW.
6409         (get_urls_html): Propagate that information to the caller.
6410
6411 2000-11-13  Hrvoje Niksic  <hniksic@arsdigita.com>
6412
6413         * url.c (convert_links): Unlink the file we might be reading from
6414         before writing to it.
6415         (convert_links): Use alloca instead of malloc for
6416         filename_plus_orig_suffix.
6417
6418 2000-11-12  Hrvoje Niksic  <hniksic@arsdigita.com>
6419
6420         * host.c (realhost): Add HOST to the list with quality==0 only if
6421         it wasn't already there.
6422         Based on analysis by Lu Guohan <feng@public.bjnet.edu.cn>.
6423
6424 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6425
6426         * url.c (get_urls_file): Ditto.
6427         (convert_links): Ditto.
6428
6429         * html-url.c (get_urls_html): Use read_file() instead of
6430         load_file().
6431
6432         * utils.c (read_file): New function, instead of the old
6433         load_file().
6434         (read_file_free): Ditto.
6435
6436         * url.c (findurl): Search only for the supported protocols.
6437         (convert_links): Use fwrite() when writing out a region of
6438         characters.
6439
6440 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6441
6442         * ftp-ls.c: Move html_quote_string and ftp_index here.
6443
6444         * url.c: Remove get_urls_html, since that's now in html-url.c.
6445
6446         * html-url.c: New file.
6447
6448         * html-parse.c: New file.
6449
6450 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6451
6452         * init.c (run_wgetrc): Don't bother killing off '\r' since
6453         pars_line() skips whitespace at end of line anyway.
6454         (parse_line): Oops, it didn't.  Now it does.
6455
6456         * recur.c (parse_robots): Ditto here.
6457
6458         * ftp-ls.c (ftp_parse_unix_ls): Kill off the newline character
6459         manually because read_whole_line no longer does.
6460
6461         * utils.c (read_whole_line): Rewrite to: a) use less memory
6462         (reallocates to needed size after work), b) work faster -->
6463         fgets() instead of getc, c) be more correct --> doesn't kill the
6464         newline character at the end of line.
6465
6466 2000-11-10  Hrvoje Niksic  <hniksic@arsdigita.com>
6467
6468         * init.c (comind): Initialize MAX to array size - 1.
6469
6470 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6471
6472         * url.c (construct): Changed last_slash[-1] to *(last_slash - 1).
6473         Suggested by Edward J. Sabol.
6474
6475 2000-11-08  Hrvoje Niksic  <hniksic@arsdigita.com>
6476
6477         * url.c (construct): Handle the case where host name is not
6478         followed by a slash.
6479
6480 2000-11-06  Hrvoje Niksic  <hniksic@arsdigita.com>
6481
6482         * init.c: commands[] need to be sorted!  ("base" wasn't.)
6483
6484 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
6485
6486         * wget.h (DO_REALLOC_FROM_ALLOCA): Use braces to disambiguate
6487         `if'.
6488
6489 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
6490
6491         * url.c (construct): Insert unneeded initialization for the
6492         compiler to shut up.
6493
6494         * config.h.in: Define _XOPEN_SOURCE to 500 to get the prototype
6495         for strptime() (*duh*).  Define _SVID_SOURCE to get S_IFLNK which
6496         otherwise gets lost when you define _XOPEN_SOURCE.
6497
6498         * utils.c (touch): Include the file name in the error message.
6499         From Debian.
6500
6501 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
6502
6503         * log.c (logvprintf): Use vsnprintf() in all cases.  If necessary,
6504         resize the buffer to fit the formated message.  That way, messages
6505         of arbitrary size may be printed.
6506         (logvprintf): Use saved_append() to optionally log the last
6507         several lines of output.
6508         (logputs): Ditto.
6509         (log_close): Adapt to new data structures.
6510         (log_dump): Ditto.
6511         (redirect_output): Print messages to stderr, not to stdout.
6512
6513         * log.c (saved_append_1): New function.  Replaces the old logging
6514         system ("log all output until 10M characters") with a new, much
6515         more reasonable one ("log last screenful of text").
6516         (saved_append): New function; call saved_append_1.
6517         (free_log_line): New function.
6518
6519 2000-11-05  Hrvoje Niksic  <hniksic@arsdigita.com>
6520
6521         * url.c (construct): Fix comment.
6522         (find_last_char): Document.
6523
6524 2000-11-04  Hrvoje Niksic  <hniksic@arsdigita.com>
6525
6526         * snprintf.c: New file.
6527
6528 2000-11-03  Hrvoje Niksic  <hniksic@arsdigita.com>
6529
6530         * wget.h: If HAVE_STDARG_H is not defined, don't declare argument
6531         types to logprintf() and debug_logprintf().
6532
6533 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
6534
6535         * ftp.c (ftp_loop_internal): Hide the password from the URL when
6536         printing non-verbose.  Problem spotted by Dariusz Mlynarczyk
6537         <darekm@bydg.lomac.com.pl>.
6538
6539 2000-11-02  Junio Hamano  <junio@twinsun.com>
6540
6541         * ftp-basic.c (ftp_login): Make comparison case-insensitive.
6542
6543 2000-11-02  Tyler Riddle  <triddle@liquidmarket.com>
6544
6545         * http.c (known_authentication_scheme_p): Recognize NTML
6546         authentication.
6547         (create_authorization_line): Treat NTML the same as `Basic'.
6548
6549 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
6550
6551         * retr.c (retrieve_url): Free url before returning.
6552         (retrieve_url): Free mynewloc before returning.
6553         Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
6554
6555 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
6556
6557         * url.c (parseurl): Remove possible reading past the end of
6558         sup_protos[].  Spotted by Mark A. Mankins <Mankins_Mark@prc.com>.
6559
6560 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6561
6562         * main.c (main): In case of opt.downloaded overflowing, print
6563         <overflow> instead of a totally bogus random value.
6564
6565         * retr.c (retrieve_from_file): Ditto.
6566
6567         * recur.c (recursive_retrieve): Ditto.
6568
6569         * main.c (main): Ditto.
6570
6571         * http.c (http_loop): Ditto.
6572
6573         * ftp.c (ftp_loop_internal): Use downloaded_increase() instead of
6574         `+=', and downloaded_exceeds_quota() instead of the simple-minded
6575         check.
6576         (ftp_retrieve_list): Ditto.
6577         (ftp_retrieve_dirs): Ditto.
6578         (ftp_retrieve_glob): Ditto.
6579
6580         * retr.c (downloaded_increase): New function.  Notice overflows of
6581         opt.downloaded.
6582         (downloaded_exceeds_quota): Make sure that opt.downloaded is not
6583         used if it overflowed.
6584
6585         * options.h (struct options): New member downloaded_overflow.
6586
6587 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6588
6589         * wget.h (enum): Remove extra space after last enumeration.
6590
6591 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6592
6593         * main.c (main): Use legible_very_long() for printing
6594         opt.downloaded.
6595
6596         * utils.c (legible_1): New function that operates on strings and
6597         does the brunt of legible()'s work.
6598         (legible): Use legible_1().
6599         (legible_very_long): New function; dump the argument with
6600         sprintf(), and call legible_1().
6601
6602         * options.h (struct options): Use VERY_LONG_TYPE for
6603         opt.downloaded.
6604
6605         * sysdep.h (VERY_LONG_TYPE): Define it to have a 64-bit or greater
6606         type.
6607
6608         * config.h.in: Make sure that SIZEOF_LONG and SIZEOF_LONG_LONG get
6609         defined.  Define HAVE_LONG_LONG if long long is available.
6610
6611 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6612
6613         * utils.c (long_to_string): Update with a later, better version.
6614
6615 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6616
6617         * url.c (path_simplify_with_kludge): New function.
6618         (path_simplify_with_kludge): Disable it.  Instead...
6619         (parse_dir): ...make sure that at this point the right thing is
6620         done, i.e. that "query" part of the URL (?...) is always assigned
6621         to the file, never to the directory portion of the path.
6622
6623 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6624
6625         * retr.c (retrieve_url): Detect redirection cycles.
6626
6627 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6628
6629         * url.c (get_urls_html): Decode HTML entities using
6630         html_decode_entities.
6631
6632         * html.c (htmlfindurl): Don't count the `#' in numeric entities
6633         (&#NNN;) as an HTML fragemnt.
6634         (html_decode_entities): New function.
6635
6636 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6637
6638         * html.c (htmlfindurl): Fix recognition of # HTML fragments.
6639
6640 2000-11-01  Hrvoje Niksic  <hniksic@arsdigita.com>
6641
6642         * url.c (construct): Rewritten for clarity.  Avoids the
6643         unnecessary copying and stack-allocation the old version
6644         performed.
6645
6646 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
6647
6648         * ftp.c (getftp): Ditto.
6649
6650         * http.c (gethttp): Rewind the stream when retrying from scratch.
6651
6652 2000-10-31  Hrvoje Niksic  <hniksic@arsdigita.com>
6653
6654         * retr.c (retrieve_url): Use url_concat() to handle relative
6655         redirections instead of /ad hoc/ code.
6656
6657         * url.c (url_concat): New function encapsulating weird
6658         construct().
6659         (urllen_http_hack): New function.
6660         (construct): When constructing new URLs, recognize that `?' does
6661         not form part of the file name in HTTP.
6662
6663 2000-10-13  Adrian Aichner  <adrian@xemacs.org>
6664
6665         * retr.c: Add msec timing support for WINDOWS.
6666         * retr.c (reset_timer): GetSystemTime() on WINDOWS.
6667         * retr.c (elapsed_time): Calculate delta time to msec on WINDOWS.
6668
6669 2000-10-27  Dan Harkless  <wget@harkless.org>
6670
6671         * retr.c (retrieve_url): Manually applied T. Bharath
6672         <TBharath@responsenetworks.com>'s patch to get wget to grok
6673         illegal relative URL redirects.  Reformatted and re-commented it.
6674
6675 2000-10-23  Dan Harkless  <wget@harkless.org>
6676
6677         * connect.c (make_connection and bindport): Manually applied Rob
6678         Mayoff <mayoff@dqd.com>'s 1.5.3 patch to add --bind-address,
6679         changing coding style to GNU's.
6680
6681         * ftp.c (ftp_loop_internal): --delete-after wasn't implemented for
6682         files downloaded via FTP.  Per a comment, .listing files were not
6683         counted towards number of bytes and files downloaded because they're 
6684         deleted anyway.  Well, they aren't under -nr, so count them then.
6685
6686         * init.c: Manually applied Rob Mayoff's 1.5.3 patch to add
6687         --bind-address, alphabetizing, changing coding style to GNU's,
6688         commenting, and renaming cmd_ip_address() to cmd_address() to
6689         imply hostnames also okay.
6690                 
6691         * main.c (main): --delete-after didn't delete the root of the
6692         tree.  Ignore --convert-links if --delete-after was specified.
6693         Manually applied Rob Mayoff's 1.5.3 patch to add --bind-address,
6694         fixing duplicate use of added-since-1.5.3 case value.
6695         (print_help): Clarified that --delete-after deletes local files.
6696         Rob forgot to add a line for his new --bind-address option.
6697                 
6698         * options.h (struct options): Manually applied Rob Mayoff's patch
6699         to add --bind-address (bind_address structure member).
6700                 
6701         * recur.c (recursive_retrieve): Improved comment; added DEBUGP().
6702         Ignore --convert-links if --delete-after was specified.
6703                 
6704         * retr.c (retrieve_from_file): Just added a DEBUGP().
6705                 
6706 2000-10-19  Dan Harkless  <wget@harkless.org>
6707
6708         * ftp.c (ftp_loop_internal): downloaded_file() enumerators changed.
6709         (getftp): Applied Piotr Sulecki <Piotr.Sulecki@ios.krakow.pl>'s
6710         patch to work around FTP servers that incorrectly respond to the
6711         "REST" command with the remaining size rather than the total file size.
6712                 
6713         * http.c (gethttp): Improved a comment and added code to tack on
6714         ".html" to text/html files without that extension when -E specified.
6715         (http_loop): Use new downloaded_file() enumerators and deal with
6716         the case of gethttp() called xrealloc() on u->local.
6717
6718         * init.c (commands): Added new "htmlextension" command.
6719         Also renamed John Daily's cmd_quad() to the more descriptive
6720         cmd_lockable_boolean(), alpha-sorted the CMD_DECLARE()s and
6721         removed duplicate cmd_boolean() declaration.
6722
6723         * main.c (print_help): Added my new -E / --html-extension option.
6724         (main): Undocumented --email-address option previously used -E synonym.
6725         Stole it away for the much more deserving --html-extension's use.
6726
6727         * options.h (struct options): Added html_extension field.
6728
6729         * url.c (convert_links): URL X that we saved as X.html locally due
6730         to -E needs to be backed up as X.orig, not X.html.orig.  Added comments.
6731         (downloaded_file): Now remembers if we added .html extension to a file.
6732
6733         * url.h (downloaded_file_t): Added extra enumerators to support above.
6734         (downloaded_file): Now takes and returns a downloaded_file_t.
6735
6736         * wget.h (unnamed "dt" enum): Added ADDED_HTML_EXTENSION enumerator.
6737         
6738 2000-10-09  Dan Harkless  <wget@harkless.org>
6739
6740         * html.c (htmlfindurl): Added unneeded initialization to quiet warning.
6741                 
6742         * main.c (print_help): Clarified what --retr-symlinks does.
6743         
6744 2000-09-15  John Daily  <jdaily@cyberdude.com>
6745
6746         * init.c: Add support for "always" and "never" values to allow
6747         .wgetrc to override commandline (useful e.g. with .pm files
6748         calling `wget --passive-ftp' when your firewall doesn't allow that).
6749
6750         * ftp.c (getftp): passive_ftp is first option to support always/never.
6751
6752 2000-08-30  Dan Harkless  <wget@harkless.org>
6753
6754         * ftp.c (ftp_retrieve_list): Use new INFINITE_RECURSION #define.
6755         
6756         * html.c: htmlfindurl() now takes final `dash_p_leaf_HTML' parameter.
6757         Wrapped some > 80-column lines.  When -p is specified and we're at a 
6758         leaf node, do not traverse <A>, <AREA>, or <LINK> tags other than 
6759         <LINK REL="stylesheet">.
6760         
6761         * html.h (htmlfindurl): Now takes final `dash_p_leaf_HTML' parameter.
6762         
6763         * init.c: Added new -p / --page-requisites / page_requisites option.
6764
6765         * main.c (print_help): Clarified that -l inf and -l 0 both allow
6766         infinite recursion.  Changed the unhelpful --mirrior description
6767         to simply give the options it's equivalent to.  Added new -p option.
6768         (main): Added some comments; handle new -p / --page-requisites.
6769         
6770         * options.h (struct options): Added new page_requisites field.
6771
6772         * recur.c: Changed "URL-s" to "URLs" and "HTML-s" to "HTMLs".
6773         Calculate and pass down new `dash_p_leaf_HTML' parameter to
6774         get_urls_html().  Use new INFINITE_RECURSION #define.
6775
6776         * retr.c: Changed "URL-s" to "URLs".  get_urls_html() now takes
6777         final `dash_p_leaf_HTML' parameter.
6778
6779         * url.c: get_urls_html() and htmlfindurl() now take final
6780         `dash_p_leaf_HTML' parameter.
6781
6782         * url.h (get_urls_html): Now takes final `dash_p_leaf_HTML' parameter.
6783
6784         * wget.h: Added some comments and new INFINITE_RECURSION #define.
6785         
6786 2000-08-23  Dan Harkless  <wget@harkless.org>
6787
6788         * main.c (print_help): -B / --base was not mentioned.
6789
6790 2000-08-22  Dan Harkless  <wget@harkless.org>
6791
6792         * main.c (print_help): Modified -nc description to mention that it
6793         also prevents the creation of multiple versions of the same file
6794         with ".<number>" suffixes.
6795
6796 2000-07-14  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
6797
6798         * retr.c (retrieve_url): Consistently strdup opt.referer when
6799         setting u->referer.
6800
6801 2000-06-09  Dan Harkless  <wget@harkless.org>
6802
6803         * main.c (print_help): --help output for --waitretry was over 80 cols.
6804
6805 2000-06-09  Hrvoje Niksic  <hniksic@iskon.hr>
6806
6807         * url.c (encode_string): Fix comment.
6808         Suggested by Herold Heiko <Heiko.Herold@previnet.it>.
6809
6810 2000-06-01  Const Kaplinsky  <const@ce.cctpu.edu.ru>
6811
6812         * ftp.c (ftp_retrieve_list): Change permissions only on plain
6813         files.
6814
6815 2000-06-01  Hrvoje Niksic  <hniksic@iskon.hr>
6816
6817         * url.c (str_url): Print the port number only if it's different
6818         from the default port number for that protocol.
6819
6820 2000-05-22  Dan Harkless  <wget@harkless.org>
6821
6822         * main.c (print_help): Added --help line for Damir Dzeko
6823         <ddzeko@zesoi.fer.hr>'s until-now-undocumented --referer option.
6824         Removed comments that --referer and --waitretry were undocumented.
6825         Changed "`.wgetrc' command" to "`.wgetrc'-style command" on --help
6826         line for --execute.
6827
6828 2000-05-18  Hrvoje Niksic  <hniksic@iskon.hr>
6829
6830         * ftp.c (getftp): Ditto.
6831
6832         * http.c (gethttp): Check for return value of fclose/fflush.
6833
6834 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
6835
6836         * host.c (store_hostaddress): Instead of shifting ADDR, start
6837         copying from the correct address.
6838
6839 2000-04-12  Hrvoje Niksic  <hniksic@iskon.hr>
6840
6841         * http.c (gethttp): Don't free REQUEST -- it was allocated with
6842         alloca().
6843         Pointed out by Gisle Vanem <gvanem@eunet.no>.
6844
6845 2000-04-04  Dan Harkless  <wget@harkless.org>
6846
6847         * host.c (store_hostaddress): R. K. Owen's patch introduces a
6848         "left shift count >= width of type" warning on 32-bit
6849         architectures.  Got rid of it by tricking the compiler w/ a variable.
6850         
6851         * url.c (UNSAFE_CHAR): The macro didn't include all the illegal
6852         characters per RFC1738, namely everything above '~'.  It also
6853         generated a warning on OSes where char =~ unsigned char.  Fixed.
6854         
6855 1998-10-17  Hrvoje Niksic  <hniksic@srce.hr>
6856
6857         * http.c (http_process_type): Removed needless strdup(), a memory
6858         leak.
6859
6860 1998-09-25  Hrvoje Niksic  <hniksic@srce.hr>
6861
6862         * html.c (htmlfindurl): Set PH to the first occurrence of `#'.
6863
6864 1998-09-25  Simon Munton  <simonm@m4data.co.uk>
6865
6866         * init.c (wgetrc_file_name): Don't free HOME under Windows.
6867
6868 1998-12-01  "R. K. Owen"  <rkowen@Nersc.GOV>
6869
6870         * host.c (store_hostaddress): Fix for big endian 64-bit machines.
6871
6872 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
6873
6874         * url.c (UNSAFE_CHAR): New macro.
6875         (contains_unsafe): Use it.
6876         (encode_string): Ditto.
6877
6878 1998-12-01  Hrvoje Niksic  <hniksic@srce.hr>
6879
6880         * main.c (i18n_initialize): Use LC_MESSAGES only if available.
6881
6882 2000-03-31  Hrvoje Niksic  <hniksic@srce.hr>
6883
6884         * Use TOUPPER/TOLOWER.
6885
6886 1998-12-22  Alexander V. Lukyanov  <lav@yars.free.net>
6887
6888         * ftp-opie.c (btoe): Zero-terminate OSTORE.
6889
6890 2000-03-21  Hrvoje Niksic  <hniksic@iskon.hr>
6891
6892         * wget.h (DO_REALLOC_FROM_ALLOCA): Ditto.
6893
6894         * sysdep.h (ISALNUM): New macro.
6895         (TOLOWER): Ditto.
6896         (TOUPPER): Ditto.
6897
6898 2000-03-10  Dan Harkless  <wget@harkless.org>
6899
6900         * html.c (idmatch): Implemented checking of my new --follow-tags
6901         and --ignore-tags options.
6902         
6903         * init.c (commands): Added comment reminding people adding new
6904         entries doing allocation to add corresponding freeing in cleanup().
6905         (commands): Added new followtags and ignoretags commands.
6906         (cleanup): Free storage for new followtags and ignoretags.
6907         
6908         * main.c: Use of "comma-separated list" was random -- normalized
6909         it.  Did some alphabetization.  Added comments pointing out
6910         "Options without arguments" and "Options accepting an argument"
6911         sections of long_options[].  Added new options --follow-tags and
6912         -G / --ignore-tags.  Added comment that Damir's --referer is
6913         currently undocumented.  Added comment that Heiko's --waitretry is
6914         partially undocumented (mentioned in --help but not in
6915         wget.texi).  Moved improperly sorted 24, 129, and 'G' cases.
6916         
6917         * options.h (struct options): Added new fields follow_tags and
6918         ignore_tags. 
6919         
6920         * wget.h: Added "#define EQ 0" so we can say "strcmp(a, b) == EQ".
6921         
6922 2000-03-02  Dan Harkless  <wget@harkless.org>
6923
6924         * ftp.c (ftp_loop_internal): Heiko introduced "suggest explicit
6925         braces to avoid ambiguous `else'" warnings.  Eliminated them.
6926         
6927         * http.c (gethttp): Dan Berger's query string patch is totally
6928         bogus.  If you have two different URLs, gen_page.cgi?page1 and
6929         get_page.cgi?page2, they'll both be saved as get_page.cgi and the
6930         second will overwrite the first.  Also, parameters to implicit
6931         CGIs, like "http://www.host.com/db/?2000-03-02" cause the URLs to
6932         be printed with trailing garbage characters, and could seg fault.
6933         Backing out the patch, which Dan B. informed me by email was just
6934         a kludge to download StarOffice from Sun made necessary due to
6935         wget's unconditional escaping of certain characters (room for an
6936         option there?).
6937         (http_loop): Heiko introduced "suggest explicit braces to avoid
6938         ambiguous `else'" warnings.  Eliminated them.
6939         
6940         * main.c: Heiko's --wait / --waitretry backwards compatibility
6941         code looks to have been totally untested -- automatic variable
6942         'wr' was used without being initialized, and a long int was passed
6943         into setval()'s char* val parameter.
6944         
6945         * recur.c (parse_robots): Applied Edward J. Sabol
6946         <sabol@alderaan.gsfc.nasa.gov>'s patch for Guan Yang's reported
6947         problem with "User-agent:<space>*<space>" lines in robots.txt.
6948         
6949         * url.c (parseurl, str_url): Removing Dan Berger's code (see
6950         http.c above for explanation).
6951         
6952 1999-08-25  Heiko Herold  <Heiko.Herold@previnet.it>
6953
6954         * ftp.c: Respect new option waitretry.
6955
6956 2000-01-30  Damir Dzeko  <ddzeko@zesoi.fer.hr>
6957
6958         * http.c (gethttp): Send custom Referer, if required.
6959
6960 1999-09-24  Charles G Waldman  <cgw@fnal.gov>
6961
6962         * netrc.c (parse_netrc): Allow passwords to contain spaces.
6963
6964         * netrc.c (parse_netrc): New function.
6965
6966 1999-09-17  Dan Berger  <dberger@ix.netcom.com>
6967
6968         * http.c (gethttp): Send it.
6969
6970         * url.c (parseurl): Detect query string in HTTP URL-s.
6971         (str_url): Print it.
6972
6973 2000-03-02  HIROSE Masaaki  <hirose31@t3.rim.or.jp>
6974
6975         * html.c (html_allow): Add <link href=...> and <script src=...>.
6976
6977 1999-05-02  andrew deryabin  <djsf@softhome.net>
6978
6979         * http.c (gethttp): Specify port in `Host' header only if it's
6980         different from 80.
6981
6982 1998-11-03  Edward J. Sabol  <sabol@alderaan.gsfc.nasa.gov>
6983
6984         * recur.c (recursive_retrieve): If a finite maximum depth is
6985         specified, and we're are already at that depth, don't download the
6986         HTML file for parsing.
6987
6988 2000-03-01  Dan Harkless  <wget@harkless.org>
6989
6990         * ftp.c (ftp_loop_internal): Call new downloaded_file() function,
6991         even though we don't do conversion on HTML files retrieved via
6992         FTP, so _current_ usage of downloaded_file() makes this call unneeded. 
6993         (ftp_retrieve_list): Added a comment saying where we need to
6994         stat() a .orig file if FTP'd HTML file conversion is ever implemented.
6995         (ftp_retrieve_list): "Local file '%s' is more recent," is sometimes
6996         a lie -- reworded as "Server file no newer than local file '%s' --".
6997         
6998         * http.c (http_loop): Fixed a typo and clarified a comment.
6999         (http_loop): When -K and -N are specified together, compare size
7000         and timestamp of server file X against local file X.orig (if
7001         extant) rather than converted local file X.
7002         (http_loop): "Local file '%s' is more recent," is sometimes a lie
7003         -- reworded as "Server file no newer than local file '%s' --".
7004         (http_loop): Call new downloaded_file() function to prevent
7005         wrongful overwriting of .orig file when -N is specified.
7006         
7007         * url.c (convert_links): When -K specified, only rename X to
7008         X.orig if downloaded_file() returns TRUE.  Otherwise when we skip
7009         file X due to -N, we clobber an X.orig from a previous invocation.
7010         (convert_links): Call the failsafe xstrdup(), not the real strdup().
7011         (convert_links): Added a note asking anyone who understands how
7012         multiple URLs can correspond to a single file to comment it.
7013         (downloaded_file): Added this new function.
7014         
7015         * url.h (downloaded_file): Added prototype for this new function
7016         as well as its downloaded_file_t enum type.
7017
7018         * wget.h (boolean): Added this new typedef and TRUE and FALSE #defines.
7019
7020 2000-02-29  Dan Harkless  <wget@harkless.org>
7021
7022         * version.c: Upped version to developer-only "1.5.3+dev".
7023
7024 2000-02-18  Dan Harkless  <wget@harkless.org>
7025
7026         * init.c (backup_converted): Added this new option.
7027
7028         * main.c (-K / --backup-converted): Added this new option.
7029
7030         * options.h (backup_converted): Added this new option.
7031
7032         * url.c (convert_links): When backup_converted is specified, save
7033         file X as X.orig before converting.
7034
7035         * url.h (urlpos): Fixed typo -- said "Rekative" instead of "Relative".
7036
7037 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
7038
7039         * version.c: Wget 1.5.3 is released.
7040
7041 1998-09-21  Hrvoje Niksic  <hniksic@srce.hr>
7042
7043         * host.c (ftp_getaddress): Don't warn when reverse-lookup of local 
7044         address doesn't yield FQDN.
7045
7046 1998-09-21  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
7047
7048         * cmpt.c (strerror): Fix declaration of sys_errlist.
7049
7050 1998-09-11  Hrvoje Niksic  <hniksic@srce.hr>
7051
7052         * main.c (main): Don't use an array subscript as the first
7053         argument to STRDUP_ALLOCA.
7054         From Kaveh R. Ghazi.
7055
7056 1998-09-11  Szakacsits Szabolcs  <szaka@sienet.hu>
7057
7058         * html.c (htmlfindurl): Download table background.
7059
7060 1998-09-11  Hans Grobler  <grobh@conde.ee.sun.ac.za>
7061
7062         * init.c (parse_line): Would free *com before allocating it.
7063         (parse_line): Would free com instead of *com.
7064
7065 1998-09-10  Howard Gayle  <howard@fjst.com>
7066
7067         * url.c (get_urls_html): Would drop the last character of the
7068         link.
7069
7070 1998-09-10  Hrvoje Niksic  <hniksic@srce.hr>
7071
7072         * http.c (http_loop): Don't print status code if quiet.
7073
7074 1998-09-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7075
7076         * log.c: Use <stdarg.h> only when __STDC__.
7077
7078 1998-09-10  Adam D. Moss  <adam@foxbox.org>
7079
7080         * html.c (htmlfindurl): Download <layer src=...>.
7081
7082 1998-09-10  Howard Gayle  <howard@fjst.com>
7083
7084         * ftp.c (ftp_retrieve_list): Don't update the time stamp of a file 
7085         not retrieved.
7086
7087 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
7088
7089         * utils.c: Include <libc.h> on NeXT.
7090
7091 1998-06-26  Heinz Salzmann  <heinz.salzmann@intermetall.de>
7092
7093         * url.c (get_urls_html): Fix calculation of URL position.
7094
7095 1998-06-23  Hrvoje Niksic  <hniksic@srce.hr>
7096
7097         * version.c: Wget 1.5.2 is released.
7098
7099 1998-06-23  Dave Love  <d.love@dl.ac.uk>
7100
7101         * ftp.c, init.c, netrc.c: Include errno.h.
7102
7103         * http.c: Include errno.h and time header.
7104
7105         * Makefile.in (exext): Define.
7106         (install.bin, uninstall.bin): Use it.
7107
7108 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
7109
7110         * http.c (http_loop): Don't attempt to compare local and remote
7111         sizes if the remote size is unknown.
7112
7113 1998-06-16  Hrvoje Niksic  <hniksic@srce.hr>
7114
7115         * url.c (get_urls_html): Use malloc() instead of alloca in the
7116         loop.
7117
7118 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
7119
7120         * version.c: Wget 1.5.2-b4 is released.
7121
7122 1998-06-13  Hrvoje Niksic  <hniksic@srce.hr>
7123
7124         * url.c (get_urls_html): Ignore spaces before and after the URI.
7125
7126 1998-06-08  Wanderlei Antonio Cavassin  <cavassin@conectiva.com.br>
7127
7128         * ftp.c (getftp): Translate `done'.
7129
7130 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
7131
7132         * version.c: Wget 1.5.2-b3 is released.
7133
7134 1998-06-06  Alexander Kourakos  <awk@bnt.com>
7135
7136         * init.c (cleanup): Close dfp, don't free it.
7137
7138 1998-06-06  Hrvoje Niksic  <hniksic@srce.hr>
7139
7140         * utils.c (make_directory): Twiddle.
7141
7142         * config.h.in: Added template for access().
7143
7144 1998-06-05  Mathieu Guillaume  <mat@cythere.com>
7145
7146         * html.c (htmlfindurl): Download <input src=...>
7147
7148 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
7149
7150         * utils.c (file_exists_p): Use access() with two arguments.
7151
7152 1998-05-27  Martin Kraemer  <Martin.Kraemer@mch.sni.de>
7153
7154         * netrc.c (parse_netrc): Correct logic.
7155
7156 1998-05-27  Hrvoje Niksic  <hniksic@srce.hr>
7157
7158         * ftp.c (getftp): Added `break'; suggested by Lin Zhe Min
7159         <ljm@ljm.wownet.net>.
7160
7161 1998-05-24  Hrvoje Niksic  <hniksic@srce.hr>
7162
7163         * version.c: Wget 1.5.2-b2 is released.
7164
7165 1998-05-18  Juan Jose Rodriguez  <jcnsoft@jal1.telmex.net.mx>
7166
7167         * mswindows.h: Don't translate mkdir to _mkdir under Borland.
7168
7169 1998-05-17  Hrvoje Niksic  <hniksic@srce.hr>
7170
7171         * retr.c (elapsed_time): Return correct value when
7172         HAVE_GETTIMEOFDAY is undefined.
7173
7174 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
7175
7176         * version.c: Wget 1.5.2-b1 is released.
7177
7178 1998-05-08  Hrvoje Niksic  <hniksic@srce.hr>
7179
7180         * getopt.c (_getopt_internal): Use exec_name instead of argv[0].
7181         (_getopt_internal): Don't translate `#if 0'-ed strings.
7182
7183 1998-05-06  Douglas E. Wegscheid  <wegscd@whirlpool.com>
7184
7185         * mswindows.c (ws_handler): Use fork_to_background().
7186
7187 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
7188
7189         * version.c: Wget 1.5.1 is released.
7190
7191 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
7192
7193         * http.c (parse_http_status_line): Avoid `minor' and `major'
7194         names.
7195
7196 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
7197
7198         * utils.c (mkdirhier): Renamed to make_directory.
7199
7200 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
7201
7202         * mswindows.c (fork_to_background): Define under Windows.
7203
7204         * utils.c (fork_to_background): New function.
7205
7206         * html.c (htmlfindurl): Removed rerdundant casts.
7207
7208 1998-05-01  Douglas E. Wegscheid  <wegscd@whirlpool.com>
7209
7210         * mswindows.c (ws_mypath): Cache the path.
7211
7212 1998-04-30  Douglas E. Wegscheid  <wegscd@whirlpool.com>
7213
7214         * ftp.h: Prefix enum ftype members with FT_.
7215
7216         * ftp-ls.c, ftp.c, html.h: Adjust accordingly.
7217
7218         * mswindows.h: Use stat under Borland, _stat under MSVC.
7219
7220 1998-04-28  Hrvoje Niksic  <hniksic@srce.hr>
7221
7222         * http.c (known_authentication_scheme_p): New function.
7223         (gethttp): Handle authorization more correctly.
7224
7225         * ftp-basic.h: Removed.
7226
7227         * cmpt.h: Removed.
7228
7229         * utils.c: Include <unistd.h> before <pwd.h>; needed under SunOS
7230         with gcc 2.8.
7231         (numdigit): Use `while' loop.
7232
7233         * http.c (create_authorization_line): Detect authentication
7234         schemes case-insensitively.
7235
7236         * http.c (extract_header_attr): Use strdupdelim().
7237         (digest_authentication_encode): Move declaration of local
7238         variables to smaller scope.
7239         (digest_authentication_encode): Reset REALM, OPAQUE and NONCE.
7240         (create_authorization_line): Detect authentication schemes
7241         case-insensitively.
7242
7243         * utils.c (touch): Constify.
7244
7245         * http.c (gethttp): Report a nicer error when no data is received.
7246
7247         * rbuf.h (RBUF_READCHAR): Ditto.
7248
7249         * ftp-basic.c (ftp_response): Use sizeof.
7250
7251 1998-04-27  Hrvoje Niksic  <hniksic@srce.hr>
7252
7253         * retr.c (print_percentage): EXPECTED is long, not int.
7254         (print_percentage): Use floating-point arithmetic to avoid
7255         overflow with large files' sizes multiplied with 100.
7256
7257 1998-04-27  Gregor Hoffleit  <flight@mathi.uni-heidelberg.de>
7258
7259         * config.h.in: Added pid_t stub.
7260
7261         * sysdep.h (S_ISREG): Moved here from mswindows.h (NeXT doesn't
7262         define it).
7263
7264 1998-04-20  Hrvoje Niksic  <hniksic@srce.hr>
7265
7266         * version.c: Wget 1.5.0 is released.
7267
7268 1998-04-18  Hrvoje Niksic  <hniksic@srce.hr>
7269
7270         * url.c (str_url): Ditto.
7271
7272         * ftp-basic.c (ftp_rest): Use new name.
7273
7274         * utils.c (long_to_string): Renamed from prnum().
7275
7276 1998-04-16  Hrvoje Niksic  <hniksic@srce.hr>
7277
7278         * version.c: Wget 1.5-b17 is released.
7279
7280 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
7281
7282         * headers.c (header_get): New argument FLAGS.
7283
7284         * http.c (gethttp): If request is malformed, bail out of the
7285         header loop.
7286         (gethttp): Check for empty header *after* the status line checks.
7287         (gethttp): Disallow continuations for status line.
7288
7289 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
7290
7291         * version.c: Wget 1.5-b16 is released.
7292
7293 1998-04-08  Hrvoje Niksic  <hniksic@srce.hr>
7294
7295         * init.c (commands): Renamed `always_rest' to `continue'.
7296
7297 1998-04-05  Hrvoje Niksic  <hniksic@srce.hr>
7298
7299         * all: Use it.
7300
7301         * log.c (logputs): New argument.
7302         (logvprintf): Ditto.
7303         (logprintf): Ditto.
7304
7305 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
7306
7307         * http.c (http_atotm): Update comment.
7308
7309         * main.c (i18n_initialize): Set LC_MESSAGES, not LC_ALL.
7310
7311         * wget.h: Renamed ENABLED_NLS to HAVE_NLS.
7312
7313         * main.c (i18n_initialize): New function.
7314         (main): Use it.
7315
7316         * log.c: Include <unistd.h>.
7317
7318         * retr.c (show_progress): Cast alloca to char *.
7319
7320 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
7321
7322         * version.c: Wget 1.5-b15 is released.
7323
7324 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
7325
7326         * utils.h: Declare file_non_directory_p().
7327
7328 1998-04-03  Hrvoje Niksic  <hniksic@srce.hr>
7329
7330         * main.c (main): It's `tries', not `numtries' now.
7331
7332 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
7333
7334         * init.c (getperms): Removed.
7335
7336 1998-04-01  Tim Charron  <tcharron@interlog.com>
7337
7338         * log.c (logvprintf): Don't use ARGS twice.
7339
7340 1998-04-01  John  <john@futuresguide.com>
7341
7342         * mswindows.c: Cleaned up.
7343
7344 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
7345
7346         * version.c: Wget 1.5-b14 is released.
7347
7348 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
7349
7350         * ftp-opie.c (STRLEN4): New macro.
7351         (btoe): Use it.
7352
7353 1998-04-01  Junio Hamano  <junio@twinsun.com>
7354
7355         * http.c: Document all the Digest functions.
7356
7357 1998-04-01  Hrvoje Niksic  <hniksic@srce.hr>
7358
7359         * utils.c (file_non_directory_p): Renamed from isfile().
7360
7361         * mswindows.h (S_ISREG): New macro, suggested by Tim Adam.
7362
7363 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
7364
7365         * utils.c (mkdirhier): Use 0777 instead of opt.dirmode.
7366
7367         * init.c (cmd_spec_dotstyle): Use 48 dots per line for binary
7368         style.
7369         (cmd_permissions): Removed.
7370
7371         * config.h.in: Add template for WORDS_BIGENDIAN.
7372
7373 1998-03-31  Junio Hamano  <junio@twinsun.com>
7374
7375         * http.c (HEXD2asc): New macro.
7376         (dump_hash): Use it.
7377
7378 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
7379
7380         * version.c: Wget 1.5-b13 is released.
7381
7382 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
7383
7384         * main.c (main): Don't try to use `com'.
7385
7386 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
7387
7388         * init.c (cmd_permissions): New function.
7389
7390 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
7391
7392         * version.c: Wget 1.5-b12 is released.
7393
7394 1998-03-30  Hrvoje Niksic  <hniksic@srce.hr>
7395
7396         * init.c (commands): Renamed `numtries' to `tries'.
7397         (cmd_spec_debug): Removed.
7398         (home_dir): Under Windows, return `C:\' if HOME is undefined.
7399
7400 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
7401
7402         * config.h.in: Define _XOPEN_SOURCE.
7403
7404         * init.c (check_user_specified_header): New function.
7405         (cmd_spec_header): Use it.
7406         (cmd_spec_useragent): New function.
7407
7408 1998-03-29  Hrvoje Niksic  <hniksic@srce.hr>
7409
7410         * version.c: Wget 1.5-b11 is released.
7411
7412 1998-03-28  Hrvoje Niksic  <hniksic@srce.hr>
7413
7414         * wget.h: Include <libintl.h> only if NLS is enabled.
7415
7416 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
7417
7418         * options.h (struct options): Made `wait' a long.
7419         (struct options): Ditto for `timeout'.
7420
7421 1998-03-19  Hrvoje Niksic  <hniksic@srce.hr>
7422
7423         * utils.c (exists): Renamed to file_exists_p.
7424         (file_exists_p): Use access() if available.
7425
7426 1998-03-17  Hrvoje Niksic  <hniksic@srce.hr>
7427
7428         * utils.c (memfatal): Set save_log_p to 0 to avoid potential
7429         infloop.
7430
7431         * log.c: do_logging -> save_log_p.
7432
7433         * config.h.in: Added template for HAVE_VSNPRINTF.
7434
7435 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
7436
7437         * init.c: Ditto.
7438
7439         * http.c: Protect declaration against non-ANSI compiler.
7440
7441         * log.c (logvprintf): Use vsnprintf() if available.
7442
7443         * getopt.c (main): Don't translate test stuff.
7444
7445 1998-03-16  Hrvoje Niksic  <hniksic@srce.hr>
7446
7447         * version.c: Wget 1.5-b10 is released.
7448
7449 1998-03-11  Hrvoje Niksic  <hniksic@srce.hr>
7450
7451         * ftp.c (getftp): Don't translate "CWD %s".
7452
7453         * wget.h (GCC_FORMAT_ATTR): Renamed from FORMAT_ATTR.
7454
7455 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
7456
7457         * ftp-opie.c (btoe): Use memcpy() instead of strncat().
7458
7459         * log.c (logputs): New function.
7460         (logvprintf): Renamed from vlogmsg; use logputs().
7461
7462         * retr.c (show_progress): Print `[100%]' when the retrieval is
7463         finished.
7464
7465         * init.c (run_wgetrc): Use FILE, not PATH.
7466         (wgetrc_file_name): Ditto.
7467
7468 1998-03-07  Tim Adam  <tma@osa.com.au>
7469
7470         * recur.c (parse_robots): Correctly reset `entries' on empty
7471         disallow.
7472
7473 1998-03-07  Hrvoje Niksic  <hniksic@srce.hr>
7474
7475         * init.c (cmd_spec_debug): Use cmd_boolean().
7476
7477 1998-02-23  Hrvoje Niksic  <hniksic@srce.hr>
7478
7479         * http.c (gethttp): Create proxy-authorization correctly.
7480
7481 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
7482
7483         * md5.c: Ditto.
7484
7485         * getopt.c: Use ANSI function definitions.
7486
7487         * ftp-opie.c: New file.
7488
7489         * options.h: Don't redefine EXTERN.
7490
7491         * init.c: Sort it correctly.
7492
7493 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
7494
7495         * version.c: Wget 1.5-b9 is released.
7496
7497 1998-02-22  Hrvoje Niksic  <hniksic@srce.hr>
7498
7499         * recur.c (recursive_retrieve): Reset `first_time'.
7500
7501         * ftp.c (getftp): Added `default' clause to switches of uerr_t.
7502
7503         * rbuf.c (rbuf_peek): Simplified.
7504         (rbuf_flush): Use MINVAL.
7505
7506         * wget.h (MINVAL): Moved from url.h.
7507
7508         * rbuf.h (RBUF_FD): New macro.
7509
7510         * url.c (add_url): Add to the head of the list.
7511
7512         * ftp.c (ftp_retrieve_list): Set the permissions to downloaded
7513         file.
7514         (getftp): Set the default permissions to 0600.
7515
7516 1998-02-21  Hrvoje Niksic  <hniksic@srce.hr>
7517
7518         * url.c (get_urls_html): Ditto.
7519         (convert_links): Ditto.
7520
7521         * recur.c (parse_robots): Ditto.
7522
7523         * html.c (ftp_index): Ditto.
7524
7525         * ftp-ls.c (ftp_parse_unix_ls): Open file as binary.
7526
7527         * init.c (defaults): Initialize `opt' to zero via memset.
7528
7529         * http.c (digest_authentication_encode): goto considered harmful.
7530
7531 1998-02-19  Hrvoje Niksic  <hniksic@srce.hr>
7532
7533         * ftp.c (delelement): Simplify and fix leak.
7534
7535 1998-02-18  Hrvoje Niksic  <hniksic@srce.hr>
7536
7537         * http.c (dump_hash): Use HEXD2ASC instead of home-grown stuff.
7538
7539         * url.h (HEXD2ASC): Removed warning.
7540
7541         * init.c (comind): Use binary search.
7542         (commands): Reorganized.
7543         (setval): Ditto.
7544         (cmd_boolean): New function.
7545         (cmd_number): Ditto.
7546         (cmd_number_inf): Ditto.
7547         (cmd_string): Ditto.
7548         (cmd_vector): Ditto.
7549         (cmd_directory_vector): Ditto.
7550         (cmd_bytes): Ditto.
7551         (cmd_time): Ditto.
7552         (cmd_spec_debug): Ditto.
7553         (cmd_spec_dirmode): Ditto.
7554         (cmd_spec_dirstruct): Ditto.
7555         (cmd_spec_dotstyle): Ditto.
7556         (cmd_spec_header): Ditto.
7557         (cmd_spec_htmlify): Ditto.
7558         (cmd_spec_mirror): Ditto.
7559         (cmd_spec_outputdocument): Ditto.
7560         (cmd_spec_recursive): Ditto.
7561         (settime): Merged with cmd_time().
7562         (setbytes): Merged with cmd_bytes().
7563         (setonoff): Merged with cmd_boolean().
7564         (onoff): Ditto.
7565
7566 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
7567
7568         * Makefile.in (distclean): Remove `config.h'.
7569
7570 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
7571
7572         * version.c: Wget 1.5-b8 is released.
7573
7574 1998-02-17  Hrvoje Niksic  <hniksic@srce.hr>
7575
7576         * http.c (digest_authentication_encode): New function.
7577         (create_authorization_line): Use it.
7578         (dump_hash): New function.
7579         (digest_authentication_encode): Use it.
7580
7581         * fnmatch.c: Renamed from `mtch.c'.
7582
7583 1998-02-15  Karl Eichwalder  <ke@suse.de>
7584
7585         * main.c (main): Tag "Written by..." string as translatable.
7586
7587 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
7588
7589         * wget.h (FREE_MAYBE): New macro.
7590
7591         * http.c (create_authorization_line): Don't use ANSI C string
7592         concatenation feature.
7593         (basic_authentication_encode): Use alloca() for temporary
7594         variables.
7595
7596         * recur.h: Ditto.
7597
7598         * http.c: Ditto.
7599
7600         * headers.h: Ditto.
7601
7602         * ftp-basic.c: Protect declaration against non-ANSI compiler.
7603
7604         * http.c (create_authorization_line): Cast `unsigned char *' to
7605         `char *' for sprintf, to shut up the noisy Digital Unix cc.
7606
7607 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
7608
7609         * version.c: Wget 1.5-b7 is released.
7610
7611 1998-02-15  Hrvoje Niksic  <hniksic@srce.hr>
7612
7613         * cmpt.c (strstr): Synched with glibc-2.0.6.
7614
7615         * ftp-basic.c (calculate_skey_response): Ditto.
7616         (calculate_skey_response): Use alloca().
7617
7618         * http.c (create_authorization_line): Work with FSF's version of
7619         md5.c.
7620
7621         * md5.c: New file, from GNU libc.
7622
7623 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
7624
7625         * url.h (URL_CLEANSE): Name the temporary variable more carefully.
7626
7627 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
7628
7629         * http.c (basic_authentication_encode): New function, instead of
7630         the macro.
7631
7632 1998-02-13  Junio Hamano  <junio@twinsun.com>
7633
7634         * http.c: Add HTTP-DA support.
7635         * ftp-basic.c: Add Opie/S-key support.
7636         * config.h.in, Makefile.in: Add HTTP-DA and Opie/S-key support.
7637         * md5.c, md5.h: New files.
7638
7639 1998-02-13  Hrvoje Niksic  <hniksic@srce.hr>
7640
7641         * http.c (http_process_range): Renamed from hprocrange().
7642         (http_process_range): Parse the whole header.
7643
7644         * headers.c: New file.
7645         (header_process): New function.
7646         (header_get): Renamed from fetch_next_header.
7647
7648         * all: Include utils.h only where necessary.
7649
7650         * wget.h: Declare xmalloc(), xrealloc() and xstrdup() here.
7651
7652         * wget.h: Add provisions for dmalloc.
7653
7654 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
7655
7656         * version.c: Wget 1.5-b6 is released.
7657
7658 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
7659
7660         * ftp.c (ftp_loop): Determine `filename' more precisely.
7661
7662         * init.c (setval): Don't set `opt.quiet' if output-document is
7663         `-'.
7664
7665         * log.c (log_init): Print to STDERR instead of STDOUT.
7666         (vlogmsg): Use STDERR by default.
7667         (logflush): Ditto.
7668
7669 1998-02-11  Simon Josefsson  <jas@pdc.kth.se>
7670
7671         * host.c: Use addr_in again.
7672
7673 1998-02-08  Karl Eichwalder  <karl@suse.de>
7674
7675         * http.c (gethttp): Fixed typo.
7676
7677 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
7678
7679         * version.c: Wget 1.5-b5 is released.
7680
7681 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
7682
7683         * retr.c (show_progress): Use it.
7684
7685         * log.c (logflush): New function.
7686
7687         * wget.h: Utilize __attribute__ if on gcc.
7688
7689 1998-02-07  Hrvoje Niksic  <hniksic@srce.hr>
7690
7691         * http.c (base64_encode_line): New argument LENGTH.
7692         (BASIC_AUTHENTICATION_ENCODE): Use it.
7693         (BASIC_AUTHENTICATION_ENCODE): Take length of HEADER into account.
7694
7695         * main.c (main): Fixed fprintf() format mismatch.
7696
7697 1998-02-06  Hrvoje Niksic  <hniksic@srce.hr>
7698
7699         * version.c: Wget 1.5-b4 is released.
7700
7701 1998-02-03  Simon Josefsson  <jas@pdc.kth.se>
7702
7703         * host.c: use sockaddr_in instead of addr_in.
7704
7705 1998-02-04  Hrvoje Niksic  <hniksic@srce.hr>
7706
7707         * init.c (cleanup): Use it.
7708
7709         * recur.c (recursive_cleanup): New function.
7710
7711         * retr.c (retrieve_from_file): Ditto.
7712
7713         * main.c (main): Use it.
7714
7715         * recur.c (recursive_reset): New function.
7716
7717         * retr.c (retrieve_from_file): Ditto.
7718
7719         * main.c (main): Simplify call to recursive_retrieve().
7720
7721         * recur.c (recursive_retrieve): Removed FLAGS argument.
7722
7723         * http.c (gethttp): Changed call to iwrite().
7724
7725 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
7726
7727         * url.c (get_urls_html): Ditto.
7728         (free_urlpos): Ditto.
7729         (mkstruct): Ditto.
7730         (construct): Ditto.
7731
7732         * retr.c (retrieve_url): Move declaration of local variables to
7733         smaller scope.
7734
7735         * url.c (urlproto): Use it.
7736         (parseurl): Ditto.
7737         (str_url): Ditto.
7738         (get_urls_html): Ditto.
7739
7740         * utils.h (ARRAY_SIZE): New macro.
7741
7742         * url.c (proto): Moved from url.h.
7743
7744         * url.h (URL_CLEANSE): Reformatted.
7745         (USE_PROXY_P): Renamed from USE_PROXY.
7746
7747         * ftp-basic.c: Adjust to the new interface of iwrite().
7748
7749         * ftp-basic.c (ftp_port): Use alloca().
7750
7751 1998-02-03  Hrvoje Niksic  <hniksic@srce.hr>
7752
7753         * version.c: Wget 1.5-b3 is released.
7754
7755         * host.c (ftp_getaddress): Don't print to stderr directly.
7756
7757         * init.c (setbytes): Support `g' for gigabytes.
7758         (cmdtype): New specification CTIME.
7759         (setval): Use it with settime().
7760         (commands): Use it for WAIT and TIMEOUT.
7761
7762 1998-02-02  Hrvoje Niksic  <hniksic@srce.hr>
7763
7764         * http.c (BASIC_AUTHENTICATION_ENCODE): New macro.
7765         (gethttp): Use it.
7766
7767         * utils.c (unique_name_1): Moved from url.c.
7768         (unique_name): Ditto.
7769
7770         * url.c (url_filename): Ditto.
7771
7772         * log.c (redirect_output): Changed call to unique_name().
7773
7774         * url.c (unique_name_1): Renamed from unique_name().
7775         (unique_name): Changed interface.
7776
7777         * init.c (enum cmdid): Moved from init.h.
7778         (cmdtype): Ditto.
7779         (struct cmd): Ditto.
7780
7781         * main.c (main): Use it.
7782         (main): Moved `--backups' to not have a short option.
7783
7784         * options.h (struct options): New member BACKGROUND.
7785
7786         * main.c (print_help): Rearranged.
7787         (main): New long options for -n* short options: --no-directories,
7788         --no-host-directories, --non-verbose, --no-host-lookup and
7789         --dont-remove-listing.
7790
7791 1998-02-01  Hrvoje Niksic  <hniksic@srce.hr>
7792
7793         * main.c (main): Use log_close().
7794
7795         * log.c: New variable LOGFP.
7796         (vlogmsg): Use it.
7797         (redirect_output): Don't open /dev/null; set LOGFP to stdin
7798         instead.
7799         (log_close): New function.
7800
7801         * options.h (struct options): Removed LFILE.
7802
7803         * log.c (log_enable): Removed.
7804
7805         * main.c (main): Use it.
7806
7807         * log.c (log_init): New function.
7808
7809         * url.c (get_urls_html): Removed needless assignment to BASE.
7810
7811         * host.c (add_hlist): Don't set CMP needlessly.
7812
7813         * utils.c (match_backwards): Ditto.
7814         (in_acclist): Ditto.
7815
7816         * url.c (findurl): Ditto.
7817
7818         * netrc.c (parse_netrc): Ditto.
7819
7820         * log.c (log_dump): Ditto.
7821
7822         * html.c (html_quote_string): Ditto.
7823
7824         * ftp-basic.c (ftp_request): Made static.
7825
7826         * connect.c: Made global variables static.
7827
7828         * url.c (construct): Ditto.
7829
7830         * init.c (init_path): Avoid assignment inside `if'-condition.
7831
7832         * ftp.c: Don't include in.h or winsock.h.
7833
7834         * ftp.c (ftp_loop): Use SZ.
7835
7836         * connect.c (bindport): Cast &addrlen to int *.
7837         (conaddr): Ditto.
7838
7839         * init.c (initialize): Don't use SYSTEM_WGETRC unconditionally.
7840
7841 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
7842
7843         * ftp.c (getftp): Initialize opt.ftp_pass here.
7844         (ftp_retrieve_dirs): Use alloca().
7845
7846         * init.c (defaults): Don't initialize opt.ftp_pass.
7847
7848         * sysdep.h (S_ISLNK): Declare for OS/2; ditto for lstat.
7849         From Ivan F. Martinez <ivanfm@ecodigit.com.br>.
7850
7851 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
7852
7853         * recur.c (parse_robots): Check for comments more correctly.
7854
7855         * host.c (ftp_getaddress): Use STRDUP_ALLOCA.
7856         (ftp_getaddress): Add diagnostics when reverse-lookup yields only
7857         hostname.
7858
7859 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
7860
7861         * version.c: Wget 1.5-b2 is released.
7862
7863         * netrc.c (NETRC_FILE_NAME): Moved from netrc.h.
7864
7865         * utils.c (proclist): Pass FNM_PATHNAME to fnmatch().
7866
7867         * ftp-basic.c (ftp_pasv): Avoid unnecessary casting to unsigned
7868         char.
7869
7870         * log.c: Don't attempt to hide arguments from ansi2knr.
7871
7872         * cmpt.c: Synched strptime() and mktime() with glibc-2.0.6.
7873
7874         * ansi2knr.c: Use a later version, from fileutils-3.16l alpha.
7875
7876         * ftp.c (getftp): Ditto.
7877
7878         * http.c (gethttp): Use it.
7879
7880         * retr.c (get_contents): New argument EXPECTED; pass it to
7881         show_progress().
7882         (show_progress): New argument EXPECTED; use it to display
7883         percentages.
7884
7885         * init.c (setval): Ditto.
7886
7887         * http.c (gethttp): Ditto.
7888         (http_loop): Ditto.
7889
7890         * ftp.c (getftp): Ditto.
7891         (ftp_loop_internal): Ditto.
7892
7893         * ftp-ls.c (ftp_parse_unix_ls): Use abort() instead of assert(0).
7894
7895         * sysdep.h (CLOSE): Simplify; use DEBUGP.
7896
7897         * netrc.c (search_netrc): Use alloca().
7898
7899         * init.c (defaults): Initialize no_flush.
7900
7901         * log.c (vlogmsg): Don't flush if no_flush.
7902
7903         * options.h (struct options): New variable no_flush.
7904
7905         * main.c (main): Don't play games with buffering.
7906
7907         * log.c (vlogmsg): Flush the output after every message.
7908
7909 1998-01-31  Hrvoje Niksic  <hniksic@srce.hr>
7910
7911         * init.c (parse_line): Ditto.
7912
7913         * url.c (get_urls_html): Ditto.
7914
7915         * main.c (main): Don't cast to unsigned char.
7916
7917         * init.c (run_wgetrc): Don't cast to unsigned char.
7918         (parse_line): Accept char instead of unsigned char.
7919
7920         * html.c (htmlfindurl): Use char instead of unsigned char.
7921
7922         * all: Use them.
7923
7924         * sysdep.h: Add wrappers to ctype macros to make them
7925         eight-bit-clean:
7926
7927 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
7928
7929         * html.c (htmlfindurl): Download <img lowsrc=...>
7930
7931         * main.c (main): Ignore SIGPIPE.
7932
7933         * connect.c (select_fd): New argument WRITEP.
7934         (iwrite): Call select_fd().
7935
7936 1997-02-27  Fila Kolodny <fila@ibi.com>
7937
7938         * ftp.c (ftp_retrieve_list): If retrieving symlink and the proper
7939         one already exists, just skip it.
7940
7941 1998-01-30  Hrvoje Niksic  <hniksic@srce.hr>
7942
7943         * http.c (gethttp): Cosmetic changes.
7944
7945         * http.c (check_end): Allow `+D...' instead of `GMT'.
7946         From Fabrizio Pollastri <pollastri@cstv.to.cnr.it>.
7947
7948         * url.c (process_ftp_type): New function.
7949         (parseurl): Use it.
7950
7951         * connect.c (iwrite): Allow writing in a few chunks.
7952         (bindport): Made SRV static, so addr can point to it.
7953         (select_fd): Removed HPUX kludge.
7954
7955         * host.c (free_hlist): Incorporated into clean_hosts().
7956
7957 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
7958
7959         * host.c (hlist): Made static.
7960         (search_address): Cosmetic change.
7961
7962 1998-01-29  Hrvoje Niksic  <hniksic@srce.hr>
7963
7964         * version.c: Wget v1.5-b1 is released.
7965
7966         * http.c (hgetlen): Use sizeof() to get the header length.
7967         (hgetrange): Ditto.
7968         (hgettype): Ditto.
7969         (hgetlocation): Ditto.
7970         (hgetmodified): Ditto.
7971         (haccepts_none): Ditto.
7972
7973         * main.c (main): Updated `--version' and `--help' output, as per
7974         Francois Pinard's suggestions.
7975
7976         * main.c: Include locale.h; call setlocale(), bindtextdomain() and 
7977         textdomain().
7978
7979         * config.h.in: Define stubs for I18N3.
7980
7981         * wget.h: Include libintl.h.
7982
7983 1998-01-28  Hrvoje Niksic  <hniksic@srce.hr>
7984
7985         * url.c (mkstruct): Check for opt.cut_dirs.
7986         (mkstruct): alloca()-te more, xmalloc() less.
7987
7988         * utils.c (load_file): Check for ferror().
7989
7990         * url.c (get_urls_file): Close only the files we opened.
7991         (get_urls_html): Ditto.
7992         (count_slashes): New function.
7993
7994         * http.h: Removed.
7995
7996         * http.c (gethttp): Respect username and password provided by
7997         proxy URL.
7998         (base64_encode_line): Write into an existing buffer instead of
7999         malloc-ing a new one.
8000         (struct http_stat): Moved from http.h
8001
8002         * retr.c (retrieve_url): Free SUF.
8003
8004         * all: Removed lots of unnecessary .h dependencies.
8005
8006         * html.c (global_state): Made static.
8007
8008         * utils.h (ALLOCA_ARRAY): New macro.
8009
8010         * main.c (main): New option `--cut-dirs'.
8011
8012         * url.c (construct): Use alloca() for T.
8013
8014         * utils.c (mkdirhier): Use STRDUP_ALLOCA.
8015
8016         * host.c (_host_t): Moved from host.h.
8017         (struct host): Renamed from _host_t.
8018         (store_hostaddress): Use STRDUP_ALLOCA for INET_S.
8019         (realhost): Ditto.
8020
8021         * host.h: Don't include url.h.
8022
8023         * ftp.c (LIST_FILENAME): Moved from ftp.h.
8024
8025         * init.c (DEFAULT_FTP_ACCT): Moved from ftp.h.
8026
8027         * main.c (main): Enable log if the output goes to a TTY.
8028
8029         * connect.h: Removed unused constant `BACKLOG'.
8030
8031         * config.h.in: Check for isatty().
8032
8033         * Makefile.in (LINK): Use CFLAGS when linking.
8034
8035 1998-01-27  Hrvoje Niksic  <hniksic@srce.hr>
8036
8037         * mswindows.c (ws_hangup): Use redirect_output().
8038
8039         * main.c (redirect_output_signal): New function; use
8040         redirect_output().
8041
8042         * log.c (redirect_output): New function, based on hangup(), which
8043         is deleted.
8044
8045         * log.c (vlogmsg): New function.
8046
8047         * wget.h (DEBUGP): Use debug_logmsg().
8048
8049         * main.c (hangup): Use it.
8050
8051         * log.c (log_dump): New function.
8052
8053         * utils.h (DO_REALLOC): Use `long' for various sizes.
8054
8055         * http.c (hskip_lws): Use `while', for clarity.
8056         (HTTP_DYNAMIC_LINE_BUFFER): New constant.
8057         (fetch_next_header): Use it instead of DYNAMIC_LINE_BUFFER.
8058
8059         * ftp-basic.c (FTP_DYNAMIC_LINE_BUFFER): New constant.
8060         (ftp_response): Use it instead of DYNAMIC_LINE_BUFFER.
8061
8062         * utils.c (DYNAMIC_LINE_BUFFER): Moved from utils.c.
8063         (LEGIBLE_SEPARATOR): Ditto.
8064         (FILE_BUFFER_SIZE): Ditto.
8065
8066         * retr.c (BUFFER_SIZE): Moved from retr.h.
8067
8068         * log.c: New file.
8069         (logmsg): Moved from utils.c.
8070         (debug_logmsg): New function.
8071
8072         * mswindows.h: Include it here.
8073
8074         * init.c: Ditto.
8075
8076         * utils.c: Don't include <windows.h>.
8077
8078 1998-01-25  Hrvoje Niksic  <hniksic@srce.hr>
8079
8080         * host.c (ftp_getaddress): Ditto.
8081
8082         * main.c (main): Use it.
8083
8084         * utils.h (STRDUP_ALLOCA): New macro.
8085
8086         * init.c: Prepend `wget: ' to error messages printed on stderr.
8087
8088         * utils.c (mkdirhier): Renamed from mymkdir.
8089         (touch): Renamed from my_touch.
8090         (pwd_cuserid): Renamed from my_cuserid().
8091
8092 1998-01-24  Andy Eskilsson  <andy.eskilsson@telelogic.se>
8093
8094         * utils.c (accdir): Process wildcards.
8095         (proclist): New function.
8096         (accdir): Use it to avoid code repetition.
8097
8098 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
8099
8100         * recur.c (parse_robots): Respect opt.useragent; use alloca().
8101
8102         * http.c (gethttp): Construct useragent accordingly.
8103
8104         * version.c: Changed version string to numbers-only.
8105
8106         * main.c (print_help): List all the options.
8107
8108         * mswindows.c (windows_main_junk): Initialize argv0 here.
8109
8110 1998-01-24  Karl Heuer  <kwzh@gnu.org>
8111
8112         * netrc.c (search_netrc): Initialize `l' only after processing
8113         netrc.
8114
8115         * main.c (main): Don't trap SIGHUP if it's being ignored.
8116
8117 1998-01-24  Hrvoje Niksic  <hniksic@srce.hr>
8118
8119         * all: Use logmsg().
8120
8121         * utils.c (time_str): Moved from retr.c.
8122         (logmsg): New function.
8123         (logmsg_noflush): Ditto.
8124
8125         * rbuf.c: New file, moved buf_* functions here.
8126
8127         * ftp.c (ftp_expected_bytes): Moved from ftp-basic.c.
8128
8129         * ftp-basic.c (ftp_rest): Use prnum().
8130
8131         * ftp-basic.c: Ditto.
8132
8133         * ftp.c: Use the new reading functions and macros.
8134
8135         * retr.c (buf_initialize): New function.
8136         (buf_initialized_p): Ditto.
8137         (buf_uninitialize): Ditto.
8138         (buf_fd): Ditto.
8139
8140         * http.c (fetch_next_header): Use the BUF_READCHAR macro for
8141         efficiency.
8142         (gethttp): Use alloca() where appropriate.
8143
8144         * retr.c (buf_readchar): Use it.
8145         (buf_peek): Use rstreams.
8146
8147         * retr.h (BUF_READCHAR): New macro.
8148
8149         * init.c (home_dir): Rewritten for clarity.
8150         (init_path): Ditto.
8151
8152         * mswindows.c (ws_backgnd): Made static.
8153         (read_registry): Ditto.
8154         (ws_cleanup): Ditto.
8155         (ws_handler): Ditto.
8156
8157 1998-01-23  Hrvoje Niksic  <hniksic@srce.hr>
8158
8159         * alloca.c: New file.
8160
8161         * Makefile.in (ALLOCA): Define.
8162
8163         * mswindows.c (ws_help): Constify.
8164         (ws_help): Use alloca.
8165
8166         * mswindows.c: Reformat.
8167
8168         * all: Added _(...) annotations for I18N snarfing and translation.
8169
8170         * host.c (ftp_getaddress): Nuke SYSINFO.
8171         (ftp_getaddress): Don't use getdomainname().
8172         (ftp_getaddress): Use uname(), where available.
8173
8174         * http.c (gethttp): Protect a stray fprintf().
8175
8176         * init.c (settime): New function.
8177         (setval): Treat WAIT specially, allowing suffixes like `m' for
8178         minutes, etc.
8179
8180 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
8181
8182         * url.c (get_urls_html): Use alloca() for TEMP.
8183
8184 1998-01-21  Jordan Mendelson  <jordy@wserv.com>
8185
8186         * url.c (rotate_backups): New function.
8187
8188         * http.c (gethttp): Ditto.
8189
8190         * ftp.c (getftp): Rotate backups.
8191
8192 1997-12-18  Hrvoje Niksic  <hniksic@srce.hr>
8193
8194         * all: Renamed nmalloc(), nrealloc() and nstrdup() to xmalloc(),
8195         xrealloc() and xstrdup().  Use the new functions.
8196
8197         * url.c (decode_string): Made static.
8198         (has_proto): Ditto.
8199         (parse_dir): Ditto.
8200         (parse_uname): Ditto.
8201         (mkstruct): Ditto.
8202         (construct): Ditto.
8203         (construct_relative): Ditto.
8204
8205         * retr.c (show_progress): Made static.
8206
8207         * recur.c (robots_url): Made static.
8208         (retrieve_robots): Ditto.
8209         (parse_robots): Ditto.
8210         (robots_match): Ditto.
8211
8212         * main.h: Removed.
8213
8214         * main.c (printhelp): Made static.
8215         (hangup): Ditto.
8216
8217         * init.c (comind): Made static.
8218         (defaults): Ditto.
8219         (init_path): Ditto.
8220         (run_wgetrc): Ditto.
8221         (onoff): Ditto.
8222         (setonoff): Ditto.
8223         (setnum): Ditto.
8224         (myatoi): Ditto.
8225         (getperms): Ditto.
8226         (setbytes): Ditto.
8227
8228         * http.c (fetch_next_header): Made static.
8229         (hparsestatline): Ditto.
8230         (hskip_lws): Ditto.
8231         (hgetlen): Ditto.
8232         (hgetrange): Ditto.
8233         (hgettype): Ditto.
8234         (hgetlocation): Ditto.
8235         (hgetmodified): Ditto.
8236         (haccepts_none): Ditto.
8237         (gethttp): Ditto.
8238         (base64_encode_line): Ditto.
8239         (mktime_from_utc): Ditto.
8240         (http_atotm): Ditto.
8241
8242         * html.c (idmatch): Made static.
8243
8244         * host.c (search_host): Made static.
8245         (search_address): Ditto.
8246         (free_hlist): Ditto.
8247
8248         * ftp.c (getftp): Made static.
8249         (ftp_loop_internal): Ditto.
8250         (ftp_get_listing): Ditto.
8251         (ftp_retrieve_list): Ditto.
8252         (ftp_retrieve_dirs): Ditto.
8253         (ftp_retrieve_glob): Ditto.
8254         (freefileinfo): Ditto.
8255         (delelement): Ditto.
8256
8257         * ftp-ls.c (symperms): Made static.
8258         (ftp_parse_unix_ls): Ditto.
8259
8260         * connect.c (select_fd): Made static.
8261
8262         * utils.c (xmalloc): Renamed from nmalloc.
8263         (xrealloc): Renamed from nrealloc.
8264         (xstrdup): Renamed from nstrdup.
8265
8266         * getopt.c (exchange): Use alloca.
8267
8268         * mswindows.c (mycuserid): Use strncpy.
8269
8270         * New files mswindows.c, mswindows.h, sysdep.h.  winjunk.c,
8271         systhings.h, windecl.h and winjunk.h removed.
8272
8273         * mswindows.c (sleep): New function.
8274
8275         * utils.c: Include <windows.h> under Windows.
8276
8277 1997-06-12  Darko Budor  <dbudor@zesoi.fer.hr>
8278
8279         * url.h (URL_UNSAFE): Change default under Windows.
8280
8281         * retr.c (retrieve_from_file): Respect opt.delete_after.
8282
8283         * main.c (main): Call ws_help on Windows.
8284
8285         * winjunk.c (windows_main_junk): New function.
8286
8287         * main.c (main): Junk-process argv[0].
8288
8289         * http.c (mktime_from_utc): Return -1 if mktime failed.
8290
8291         * http.c (http_loop): Ditto.
8292
8293         * ftp.c (ftp_loop_internal): Change title on Windows when using a
8294         new URL.
8295
8296         * winjunk.c (getdomainname): Lots of functions.
8297
8298 1997-06-12  Hrvoje Niksic  <hniksic@srce.hr>
8299
8300         * cmpt.c (strptime_internal): Handle years more correctly for
8301         `%y'.
8302
8303 1997-06-09  Mike Thomas <mthomas@reality.ctron.com>
8304
8305         * http.c (gethttp): Allocate enough space for
8306         `Proxy-Authorization' header.
8307
8308 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
8309
8310         * version.c: Wget/1.4.5 is released.
8311
8312 1997-05-10  Hrvoje Niksic  <hniksic@srce.hr>
8313
8314         * retr.c (get_contents): Check return value of fwrite more
8315         carefully.
8316
8317 1997-03-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
8318
8319         * cmpt.c (strptime_internal) [case 'Y']: Always subtract 1900 from
8320         year, regardless of century.
8321
8322 1997-03-30  Hrvoje Niksic  <hniksic@srce.hr>
8323
8324         * utils.c (isfile): Use `lstat' instead of `stat'.
8325
8326 1997-03-29  Hrvoje Niksic  <hniksic@srce.hr>
8327
8328         * utils.c (numdigit): Use explicit test.
8329
8330 1997-03-21  Hrvoje Niksic  <hniksic@srce.hr>
8331
8332         * http.c (http_loop): Always use `url_filename' to get u->local.
8333
8334 1997-03-20  Hrvoje Niksic  <hniksic@srce.hr>
8335
8336         * url.c: Recognize https.
8337
8338 1997-03-13  Hrvoje Niksic  <hniksic@srce.hr>
8339
8340         * recur.c (recursive_retrieve): Lowercase just the host name.
8341
8342 1997-03-09  Hrvoje Niksic  <hniksic@srce.hr>
8343
8344         * url.c (get_urls_file): Use the correct test.
8345         (get_urls_html): Ditto.
8346
8347 1997-03-07  Hrvoje Niksic  <hniksic@srce.hr>
8348
8349         * connect.c: Reverted addrlen to int.
8350
8351         * init.c (parse_line): Check for -1 instead of NONE.
8352
8353         * version.c: Changed version to 1.4.5.
8354
8355 1997-02-17  Hrvoje Niksic  <hniksic@srce.hr>
8356
8357         * init.c: New option netrc.
8358         (initialize): Don't parse .netrc.
8359
8360         * cmpt.c (recursive): Return rp.
8361         (strptime_internal): Match the long strings first, the abbreviated
8362         second.
8363
8364 1997-02-16  Hrvoje Niksic  <hniksic@srce.hr>
8365
8366         * http.c (check_end): New function.
8367         (http_atotm): Use it.
8368  
8369 1997-02-13  gilles Cedoc  <gilles@cedocar.fr>
8370
8371         * http.c (gethttp): Use them.
8372
8373         * init.c: New options proxy_user and proxy_passwd.
8374
8375 1997-02-14  Hrvoje Niksic  <hniksic@srce.hr>
8376
8377         * ftp.c (ftp_retrieve_list): Create links even if not relative.
8378
8379 1997-02-10  Hrvoje Niksic  <hniksic@srce.hr>
8380
8381         * recur.c (recursive_retrieve): Lowercase the host name, if the
8382         URL is not "optimized".
8383
8384         * host.c (realhost): Return l->hostname, even if it matches with
8385         host.
8386
8387 1997-02-10  Marin Purgar  <pmc@asgard.hr>
8388
8389         * connect.c: Make addrlen size_t instead of int.
8390         (conaddr): Ditto.
8391
8392 1997-02-09  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
8393
8394         * systhings.h: Define S_ISLNK on NeXT too.
8395
8396 1997-02-09  Hrvoje Niksic  <hniksic@srce.hr>
8397
8398         * version.c: Released 1.4.3.
8399
8400         * url.c: Futher update to list of protostrings.
8401         (skip_proto): Skip `//' correctly for FTP and HTTP.
8402
8403         * url.c (get_urls_html): Handle bogus `http:' things a little
8404         different.
8405
8406         * main.c (main): Removed `follow-ftp' from `f'.
8407         (main): Dumped the `prefix-files' and `file-prefix' options and
8408         features; old and bogus.
8409         (main): Exit on failed setval() in `-e'.
8410
8411         * http.c (fetch_next_header): Use it to detect header continuation
8412         correctly.
8413
8414         * retr.c (buf_peek): New function.
8415
8416 1997-02-08  Hrvoje Niksic  <hniksic@srce.hr>
8417
8418         * wget.h: Include time.h and stuff.
8419
8420 1997-02-08  Roger Beeman  <beeman@cisco.com>
8421
8422         * ftp.c: Include <time.h>
8423
8424 1997-02-07  Hrvoje Niksic  <hniksic@srce.hr>
8425
8426         * url.c (findurl): Would read over buffer limits.
8427
8428 1997-02-06  Hrvoje Niksic  <hniksic@srce.hr>
8429
8430         * ftp-ls.c (ftp_parse_unix_ls): Allow spaces in file names.
8431
8432 1997-02-05  Hrvoje Niksic  <hniksic@srce.hr>
8433
8434         * http.c (http_atotm): Initialize tm.is_dst.
8435
8436 1997-02-02  Hrvoje Niksic  <hniksic@srce.hr>
8437
8438         * http.c (gethttp): Don't print the number of retrieved headers.
8439
8440         * main.c (main): New option `--no-clobber', alias for `-nc'.
8441
8442         * url.c: Recognize `https://'.
8443
8444 1997-02-01  Hrvoje Niksic  <hniksic@srce.hr>
8445
8446         * host.c (herrmsg): Don't use h_errno.
8447
8448 1997-01-30  Hrvoje Niksic  <hniksic@srce.hr>
8449
8450         * host.c (accept_domain): Use it.
8451
8452         * main.c (main): New option `--exclude-domains'.
8453
8454         * retr.c (retrieve_url): Use it.
8455         (retrieve_url): Bail out when an URL is redirecting to itself.
8456
8457         * url.c (url_equal): New function.
8458
8459 1997-01-29  Hrvoje Niksic  <hniksic@srce.hr>
8460
8461         * connect.c: Include arpa/inet.h instead of arpa/nameser.h.
8462
8463         * http.c (mk_utc_time): New function.
8464         (http_atotm): Use it; handle time zones correctly.
8465
8466 1997-01-28  Hrvoje Niksic  <hniksic@srce.hr>
8467
8468         * http.c: Ditto.
8469
8470         * ftp-basic.c: Use it instead of WRITE.
8471
8472         * connect.c (iwrite): New function.
8473
8474 1997-01-27  Hrvoje Niksic  <hniksic@srce.hr>
8475
8476         * cmpt.c (mktime): New function.
8477
8478         * netrc.c: Include <sys/types.h>.
8479
8480         * main.c (main): Wouldn't recognize --spider.
8481
8482         * retr.c (rate): Use `B', `KB' and `MB'.
8483         (reset_timer,elapsed_time): Moved from utils.c.
8484
8485         * ftp.c (ftp_retrieve_list): Ditto.
8486
8487         * http.c (http_loop): Don't touch the file if opt.dfp.
8488
8489 1997-01-24  Hrvoje Niksic  <hniksic@srce.hr>
8490
8491         * cmpt.c: New file.
8492
8493         * ftp.c (ftp_retrieve_glob): New argument semantics.
8494         (ftp_retrieve_dirs): Use it.
8495         (ftp_loop): Ditto.
8496
8497         * html.c (htmlfindurl): Recognize `'' as the quote char.
8498
8499 1997-01-23  Hrvoje Niksic  <hniksic@srce.hr>
8500
8501         * ftp.c (ftp_loop_internal): Use it.
8502
8503         * utils.c (remove_link): New function.
8504
8505 1997-01-22  Hrvoje Niksic  <hniksic@srce.hr>
8506
8507         * retr.c (retrieve_url): Require STRICT redirection URL.
8508
8509         * url.c (parseurl): New argument STRICT.
8510
8511         * http.c (hparsestatline): Be a little-bit less strict about
8512         status line format.
8513
8514 1997-01-21  Hrvoje Niksic  <hniksic@srce.hr>
8515
8516         * http.c (gethttp): Use it.
8517
8518         * main.c (main): Don't use '<digit>' as options.
8519
8520         * init.c: New option ignore_length.
8521
8522         * http.c (gethttp): Ditto.
8523         (http_loop): Check for redirection without Location:.
8524         (gethttp): Don't print Length unless RETROKF.
8525
8526         * ftp.c (getftp): Use it.
8527
8528         * url.c (mkalldirs): New function.
8529
8530         * utils.c (mymkdir): Don't check for existing non-directory.
8531
8532         * url.c (mkstruct): Don't create the directory.
8533
8534 1997-01-20  Hrvoje Niksic  <hniksic@srce.hr>
8535
8536         * init.c (setval): Removed NO_RECURSION checks.
8537
8538 1997-01-19  Hrvoje Niksic  <hniksic@srce.hr>
8539
8540         * version.c: "Released" 1.4.3-pre2.
8541
8542         * recur.c (recursive_retrieve): Bypass host checking only if URL
8543         is ftp AND parent URL is not ftp.
8544
8545         * ftp-basic.c (ftp_request): Print out Turtle Power.
8546
8547         * ftp.c (ftp_loop): Call ftp_retrieve_glob with 0 if there's no
8548         wildcard.
8549         (ftp_retrieve_glob): Call ftp_loop_internal even on empty list, if
8550         not glob.
8551
8552         * http.c (gethttp): Be a little bit smarter about status codes.
8553
8554         * recur.c (recursive_retrieve): Always reset opt.recursive when
8555         dealing with FTP.
8556
8557 1997-01-18  Hrvoje Niksic  <hniksic@srce.hr>
8558
8559         * retr.c (retrieve_url): New variable location_changed; use it for
8560         tests instead of mynewloc.
8561         (retrieve_url): Allow heuristic adding of html.
8562
8563         * url.c (url_filename): Don't use the `%' in Windows file names.
8564
8565         * http.c (http_loop): Always time-stamp the local file.
8566
8567         * http.c (http_loop): Ditto.
8568
8569         * ftp.c (ftp_retrieve_list): Use it.
8570
8571         * utils.c (my_touch): New function.
8572
8573         * ftp.c (ftp_retrieve_list): Use #ifdef HAVE_STRUCT_UTIMBUF
8574         instead of #ifndef NeXT.
8575
8576         * utils.c (strptime): New version, by Ulrich Drepper.
8577
8578 1997-01-17  Hrvoje Niksic  <hniksic@srce.hr>
8579
8580         * http.c (haccepts_none): Renamed from `haccepts_bytes'.
8581         (gethttp): If haccepts_none(), disable ACCEPTRANGES.
8582         (http_loop): Would remove ACCEPTRANGES.
8583
8584         * ftp.c (getftp): Call ftp_list with NULL.
8585
8586 1997-01-15  Hrvoje Niksic  <hniksic@srce.hr>
8587
8588         * html.c (ftp_index): Don't print minutes and seconds if we don't
8589         know them; beautify the output.
8590
8591         * ftp.c (getftp): Don't close the socket on FTPNSFOD.
8592
8593 1997-01-14  Hrvoje Niksic  <hniksic@srce.hr>
8594
8595         * utils.c (strptime): New function.
8596         (strptime): Don't use get_alt_number.
8597         (strptime): Don't use locale.
8598         (match_string): Made it a function.
8599
8600 1997-01-12  Hrvoje Niksic  <hniksic@srce.hr>
8601
8602         * http.c (http_atotm): New function.
8603         (http_loop): Use it.
8604
8605         * atotm.c: Removed from the distribution.
8606
8607         * http.c (base64_encode_line): Rewrite.
8608
8609 1997-01-09  Hrvoje Niksic  <hniksic@srce.hr>
8610
8611         * ftp.c (getftp): Use ftp_expected_bytes; print size.
8612
8613         * ftp-basic.c (ftp_response): Use ftp_last_respline.
8614         (ftp_expected_bytes): New function.
8615
8616         * ftp.c (getftp): Print the unauthoritative file length.
8617
8618         * ftp-ls.c: Renamed from ftp-unix.c.
8619         (ftp_parse_ls): Moved from ftp.c.
8620         (ftp_parse_unix_ls): Recognize seconds in time spec.
8621         (ftp_parse_unix_ls): Recognize year-less dates of the previous
8622         year.
8623
8624 1997-01-08  Hrvoje Niksic  <hniksic@srce.hr>
8625
8626         * ftp-basic.c: Don't declare errno if #defined.
8627
8628         * host.c (ftp_getaddress): Check for sysinfo legally.
8629
8630 1997-01-08  Darko Budor  <dbudor@diana.zems.fer.hr>
8631
8632         * connect.c (iread): Use READ.
8633
8634 1996-12-23  Hrvoje Niksic  <hniksic@srce.hr>
8635
8636         * url.c: Recognize finger, rlogin, tn3270, mid and cid as valid
8637         schemes.
8638
8639 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
8640
8641         * host.c (ftp_getaddress): Allow `.' in hostname.
8642
8643 1996-12-26  Darko Budor <dbudor@zems.fer.hr>
8644
8645         * wget.h: READ and WRITE macros for use instead of read and write
8646         on sockets, grep READ *.c, grep WRITE *.c
8647
8648         * wsstartup.c: new file - startup for winsock
8649
8650         * wsstartup.h: new file
8651
8652         * win32decl.h: new file - fixup for <errno.h> and winsock trouble
8653
8654         * configure.bat: Configure utility for MSVC
8655
8656         * src/Makefile.ms,config.h.ms: new files for use with MSVC 4.x
8657
8658 1996-12-22  Hrvoje Niksic  <hniksic@srce.hr>
8659
8660         * version.c: Released 1.4.3-pre.
8661
8662         * utils.c (prnum): Accept long.
8663         (legible): Use prnum().
8664
8665         * connect.c (make_connection): Accept port as short.
8666         (bindport): Ditto.
8667
8668         * http.c (gethttp): Use search_netrc.
8669
8670 1996-12-21  Hrvoje Niksic  <hniksic@srce.hr>
8671
8672         * ftp.c (getftp): Use search_netrc.
8673
8674         * netrc.c (free_netrc): New function.
8675
8676         * init.c (home_dir): New function.
8677
8678         * url.c (convert_links): Allow REL2ABS changes.
8679
8680 1996-12-21  Gordon Matzigkeit  <gord@gnu.ai.mit.edu>
8681
8682         * netrc.c: New file.
8683         (parse_netrc, maybe_add_to_list): New functions.
8684
8685 1996-12-17  Hrvoje Niksic  <hniksic@srce.hr>
8686
8687         * retr.c (retrieve_url): Reset opt.recursion before calling
8688         ftp_loop if it is reached through newloc.
8689
8690         * init.c (run_wgetrc): Print the wgetrc path too, when reporting
8691         error; don't use "Syntax error", since we don't know if it is
8692         really a syntax error.
8693
8694 1996-12-16  Hrvoje Niksic  <hniksic@srce.hr>
8695
8696         * utils.c (acceptable): Extract the filename part of the path.
8697
8698         * recur.c (recursive_retrieve): Call acceptable() with the right
8699         argument; would bug out on wildcards.
8700
8701         * init.c (parse_line): Likewise.
8702
8703         * html.c (htmlfindurl): Cast to char * when calling stuff.
8704
8705 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
8706
8707         * ftp.c (getftp): Use ftp_pasv.
8708
8709         * ftp-basic.c (ftp_request): Accept NULL value.
8710         (ftp_pasv): New function.
8711
8712         * options.h (struct options): Add passive FTP option.
8713
8714 1996-12-15  Hrvoje Niksic  <hniksic@srce.hr>
8715
8716         * url.c (parseurl): Debug output.
8717
8718         * utils.c (path_simplify): New one, adapted from bash's
8719         canonicalize_pathname().
8720
8721 1996-12-14  Hrvoje Niksic  <hniksic@srce.hr>
8722
8723         * ftp.c (getftp): Don't discard the buffer.
8724
8725         * retr.c (get_contents): New parameter nobuf.
8726
8727 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
8728
8729         * html.c (htmlfindurl): Recognize <meta contents="d; URL=...".
8730
8731         * init.c (setval): Strip the trailing slashes on CVECDIR.
8732
8733 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
8734
8735         * init.c: Make excludes and includes under CVECDIR instead of
8736         CVEC.
8737
8738 1996-12-13  Shawn McHorse  <riffraff@txdirect.net>
8739
8740         * url.c (get_urls_html): Skip "http:".
8741
8742 1996-12-13  Hrvoje Niksic  <hniksic@srce.hr>
8743
8744         * utils.c (strcasecmp): From glibc.
8745         (strncasecmp): Also.
8746         (strstr): Also.
8747
8748         * url.c: Added javascript: to the list of URLs prefixes.
8749
8750 1996-12-12  Shawn McHorse  <riffraff@txdirect.net>
8751
8752         * recur.c (retrieve_robots): Print the warning message only if
8753         verbose.
8754
8755 1996-12-12  Gregor Hoffleit  <flight@mathi.uni-heidelberg.DE>
8756
8757         * ftp.c (ftp_retrieve_list): Use NeXT old utime interface.
8758
8759 1996-12-12  Hrvoje Niksic  <hniksic@srce.hr>
8760
8761         * systhings.h: New file.
8762
8763         * ../configure.in: Check for utime.h
8764
8765         * ftp.c: Check whether we have unistd.h.
8766
8767 1996-11-27  Hrvoje Niksic  <hniksic@srce.hr>
8768
8769         * recur.c (recursive_retrieve): Send the canonical URL as referer.
8770         (recursive_retrieve): Call get_urls_html with the canonical URL.
8771
8772 1996-12-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8773
8774         * (configure.in, config.h.in, src/Makefile.in, src/*.[ch]): Add
8775         ansi2knr support for compilers which don't support ANSI style
8776         function prototypes and signatures.
8777
8778         * (aclocal.m4, src/ansi2knr.c, src/ansi2knr.1): New files.
8779
8780 1996-11-26  Hrvoje Niksic  <hniksic@srce.hr>
8781
8782         * url.c: Use it; Recognize paths ending with "." and ".." as
8783         directories.
8784         (url_filename): Append .n whenever file exists and could be a
8785         directory.
8786
8787         * url.h (ISDDOT): New macro.
8788
8789         * init.c (parse_line): Use unsigned char.
8790
8791         * url.c (get_urls_html): Cast to unsigned char * when calling
8792         htmlfindurl.
8793
8794         * html.c (htmlfindurl): Use unsigned char.
8795
8796         * version.c: Changed version to 1.4.3.
8797
8798 1996-11-25  Hrvoje Niksic  <hniksic@srce.hr>
8799
8800         * version.c: Released 1.4.2.
8801
8802         * ftp.c (getftp): Simplified assertion.
8803         (ftp_loop_internal): Remove symlink before downloading.
8804         (ftp_retrieve_list): Unlink the symlink name before attempting to
8805         create a symlink!
8806
8807         * options.h (struct options): Renamed print_server_response to
8808         server_response.
8809
8810         * ftp.c (rel_constr): Removed.
8811         (ftp_retrieve_list): Don't use it.
8812         (ftp_retrieve_list): Use opt.retr_symlinks.
8813
8814 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
8815
8816         * main.c (main): New option retr_symlinks.
8817
8818         * url.c (convert_links): Print verbose message.
8819
8820 1996-11-24  Hrvoje Niksic  <hniksic@srce.hr>
8821
8822         * http.c (http_loop): Reset newloc in the beginning of function;
8823         would cause FMR in retrieve_url.
8824
8825 1996-11-23  Hrvoje Niksic  <hniksic@srce.hr>
8826
8827         * recur.c (convert_all_links): Find the URL of each HTML document,
8828         and feed it to get_urls_html; would bug out.
8829         (convert_all_links): Check for l2 instead of dl; removed dl.
8830
8831         * url.c (convert_links): Don't refer to freed newname.
8832
8833         * recur.c (recursive_retrieve): Add this_url to urls_downloaded.
8834
8835         * main.c (main): Print the OS_TYPE in the debug output, too.
8836
8837         * recur.c (recursive_retrieve): Check for opt.delete_after.
8838
8839         * main.c (main): New option delete-after.
8840
8841         * init.c (setval): Cleaned up.
8842
8843 1996-11-21  Hrvoje Niksic  <hniksic@srce.hr>
8844
8845         * Makefile.in (wget): Make `wget' the default target.
8846
8847         * ftp.c (ftp_loop_internal): Move noclobber checking out of the
8848         loop.
8849         (ftp_retrieve_list): Warn about non-matching sizes.
8850
8851         * http.c (http_loop): Made -nc non-dependent on opt.recursive.
8852
8853         * init.c (setnum): Renamed from setnuminf; New argument flags.
8854         (setval): Use it.
8855
8856         * main.c (main): Sorted the options.
8857         (main): New option --wait.
8858
8859 1996-11-21  Shawn McHorse  <riffraff@txdirect.net>
8860
8861         * html.c (htmlfindurl): Reset s->in_quote after getting out of
8862         quotes.
8863
8864 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
8865
8866         * version.c: Changed version to 1.4.2.
8867
8868 1996-11-20  Hrvoje Niksic  <hniksic@srce.hr>
8869
8870         * version.c: Released 1.4.1.
8871
8872         * html.c (html_quote_string): New function.
8873         (ftp_index): Use it.
8874         (htmlfindurl): A more gentle ending debug message.
8875
8876         * ftp.c (ftp_loop): Check for opt.htmlify.
8877
8878         * init.c: New command htmlify.
8879
8880         * ftp.c (getftp): Nicer error messages, with `'-encapsulated
8881         strings.
8882         (ftp_loop): Print size of index.html.
8883
8884         * init.c (setval): Implement "styles".
8885
8886         * main.c (main): New option dotstyle.
8887
8888 1996-11-19  Hrvoje Niksic  <hniksic@srce.hr>
8889
8890         * ftp.c (getftp): Close the master socket in case of errors, after
8891         bindport().
8892
8893         * connect.c (bindport): Initialize msock to -1.
8894
8895         * ftp.c (getftp): Initialize dtsock to -1.
8896
8897         * connect.c (closeport): Don't close sock if sock == -1.
8898
8899 1996-11-18  Hrvoje Niksic  <hniksic@srce.hr>
8900
8901         * init.c (setnuminf): Nuked default value -- just leave unchanged.
8902         (setval): Don't send default values.
8903         (defaults): Use DEFAULT_TIMEOUT -- aaargh.
8904
8905         * options.h (struct options): Use long for dot_bytes.
8906
8907         * init.c (setquota): Renamed to setbytes.
8908         (setval): Use setbytes on DOTBYTES.
8909
8910 1996-11-17  Hrvoje Niksic  <hniksic@srce.hr>
8911
8912         * ftp.c (getftp): Initialize con->dltime.
8913
8914         * recur.c (recursive_retrieve): Use same_host instead of
8915         try_robots; simply load robots_txt whenever the host is changed.
8916         (recursive_retrieve): Free forbidden before calling parse_robots.
8917
8918 1996-11-16  Hrvoje Niksic  <hniksic@srce.hr>
8919
8920         * retr.c (show_progress): Use them.
8921
8922         * options.h (struct options): New options dot_bytes, dots_on_line
8923         and dot_spacing.
8924
8925 1996-11-16  Mark Boyns  <boyns@sdsu.edu>
8926
8927         * recur.c (recursive_retrieve): Retrieve directories regardless of
8928         acc/rej rules; check for empty u->file.
8929
8930 1996-11-14  Hrvoje Niksic  <hniksic@srce.hr>
8931
8932         * init.c (setval): Use it.
8933
8934         * utils.c (merge_vecs): New function.
8935
8936         * init.c (setval): Reset the list-type functions when encountering
8937         "".
8938
8939 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
8940
8941         * recur.c (recursive_retrieve): Use base_url instead of this_url
8942         for no_parent.
8943
8944 1996-11-14  Shawn McHorse  <riffraff@txdirect.net>
8945
8946         * html.c (htmlfindurl): Reset s->in_quote after exiting the quote.
8947
8948 1996-11-13  Hrvoje Niksic  <hniksic@srce.hr>
8949
8950         * utils.c (sepstring): Rewrote; don't use strtok.
8951
8952         * recur.c (recursive_retrieve): Enter assorted this_url to slist
8953         when running the first time.
8954         (retrieve_robots): Warn to ignore errors when robots are loaded.
8955
8956         * utils.c (load_file): Moved from url.c.
8957
8958         * http.c: Made static variables const too in h* functions.
8959
8960         * main.c (main): Renamed --continue-ftp to --continue.
8961
8962         * recur.c (recursive_retrieve): Use it.
8963
8964         * utils.c (frontcmp): New function.
8965
8966         * url.c (accdir): New function.
8967
8968         * html.c (htmlfindurl): Recognize <area href=...>.
8969
8970         * ftp.c (ftp_retrieve_dirs): Implemented opt.includes.
8971
8972         * init.c (setval): Free the existing opt.excludes and
8973         opt.includes, if available.
8974
8975         * main.c (main): New option -I.
8976
8977 1996-11-12  Hrvoje Niksic  <hniksic@srce.hr>
8978
8979         * ftp.c (ftp_retrieve_glob): Do not weed out directories.
8980
8981         * version.c: Changed version to 1.4.1.
8982
8983 1996-11-11  Hrvoje Niksic  <hniksic@srce.hr>
8984
8985         * version.c: Released 1.4.0.
8986
8987 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
8988
8989         * main.c (main): Free com and val after parse_line.
8990         (printhelp): Reorder the listing.
8991
8992         * http.c: More robust header parsing.
8993
8994         * http.c: Allow any number of spaces, or no spaces, precede ':'.
8995         (hskip_lws): New function.
8996         (haccepts_bytes): New function.
8997         (gethttp): Use it.
8998
8999         * init.c (setval): Check header sanity.
9000         (setval): Allow resetting of headers.
9001
9002 1996-11-10  Hrvoje Niksic  <hniksic@srce.hr>
9003
9004         * http.c (http_loop): Don't use has_wildcards.
9005
9006         * http.c (gethttp): Free all_headers -- would leak.
9007
9008         * recur.c (recursive_retrieve): Initialize depth to 1 instead of
9009         0 -- this fixes a long-standing bug in -rl.
9010
9011 1996-11-09  Hrvoje Niksic  <hniksic@srce.hr>
9012
9013         * ftp.c: Use -1 as "impossible" value for con->fd.
9014
9015         * url.h (URL_SEPARATOR): Don't treat `*' and `+' as separators.
9016
9017         * init.c (parse_line): Use isalpha.
9018
9019         * ftp-unix.c: Use HAVE_UNISTD_H.
9020
9021         * mtch.c (has_wildcards): Don't match \.
9022
9023         * http.c (http_loop): Warn on HTTP wildcard usage.
9024
9025 1996-11-08  Hrvoje Niksic  <hniksic@srce.hr>
9026
9027         * url.c (url_filename): Do not create numbered suffixes if
9028         opt.noclobber -- would bug out on -nc.
9029
9030 1996-11-07  Hrvoje Niksic  <hniksic@srce.hr>
9031
9032         * recur.c (parse_robots): Don't chuck out the commands without
9033         arguments (`Disallow:<empty>' didn't work).
9034         (parse_robots): Compare versions lowercase.
9035         (parse_robots): Match on base_version, not version_string!
9036         (parse_robots): Handle comments properly.
9037         (parse_robots): Match versions in a sane way.
9038
9039         * init.c: Print nicer error messages.
9040
9041         * version.c: Changed version to 1.4.0.
9042
9043 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
9044
9045         * version.c: Released 1.4.0-test2.
9046
9047         * init.c (run_wgetrc): Close fp.
9048
9049         * ftp.c (ftp_retrieve_dirs): Allocate the correct length for
9050         u->dir.
9051
9052 1996-11-06  Hrvoje Niksic  <hniksic@srce.hr>
9053
9054         * init.c (setquota): Allow inf as quota specification.
9055
9056 1996-11-05  Hrvoje Niksic  <hniksic@srce.hr>
9057
9058         * ftp.c (ftp_retrieve_dirs): Return QUOTEXC if quota exceeded.
9059         (ftp_retrieve_glob): Return QUOTEXC on quota exceeded.
9060
9061         * main.c (main): Check for quota by comparison with downloaded
9062         stuff, not from status.
9063
9064         * connect.c (select_fd): Should compile on HPUX without warnings now.
9065
9066         * ftp.c (ftp_get_listing): Check whether ftp_loop_internal
9067         returned RETROK.
9068
9069 1996-11-04  Hrvoje Niksic  <hniksic@srce.hr>
9070
9071         * ftp.c (ftp_retrieve_glob): Print the pattern nicely.
9072         (getftp): Return FTPRETRINT on control connection error.
9073
9074         * html.c (htmlfindurl): Recognize <embed src=...> and
9075         <bgsound src=...>.
9076         (ftp_index): Handle username and password correctly.
9077
9078         * main.c (main): Made `-np' a synonim for --no-parent.
9079
9080 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
9081
9082         * ftp.c (ftp_loop): Check for opt.ftp_glob too before calling
9083         ftp_retrieve_glob.
9084
9085         * version.c: Changed version to 1.4.0-test2.
9086
9087 1996-11-02  Hrvoje Niksic  <hniksic@srce.hr>
9088
9089         * version.c: Released 1.4.0-test1.
9090
9091         * url.c (str_url): Don't use sprintf when creating %2F-prefixed
9092         directory.
9093         (convert_links): Removed definition of make_backup.
9094
9095         * http.h: Removed definition of MAX_ERROR_LENGTH.
9096
9097         * host.c (ftp_getaddress): Check for "(none)" domains.
9098
9099         * ftp.c (ftp_retrieve_dirs): Docfix.
9100
9101         * http.c (gethttp): Use ou->referer instead of u->referer.
9102
9103         * retr.c (retrieve_url): Reset u to avoid freeing pointers twice;
9104         this was known to cause coredumps on Linux.
9105
9106         * html.c (ftp_index): Cast the argument to local_time to time_t *.
9107
9108 1996-11-01  Hrvoje Niksic  <hniksic@srce.hr>
9109
9110         * connect.c (select_fd): Use exceptfds -- once and for all.
9111
9112         * retr.c (retrieve_from_file): Free filename after
9113         recursive_retrieve.
9114         (retrieve_from_file): Send RFIRST_TIME to recursive_retrieve on
9115         first-time retrieval.
9116         (retrieve_from_file): Return uerr_t; new argument, count.
9117         (retrieve_from_file): Break on QUOTEXC.
9118
9119         * init.c (setquota): Fixed a bug that caused rejection of
9120         non-postfixed values..
9121
9122 1996-10-30  Hrvoje Niksic  <hniksic@srce.hr>
9123
9124         * version.c: Changed name to wget.
9125
9126         * connect.c (iread): Smarter use of select.
9127         (select_fd): Set errno on timeout.  If not timeout, return 1
9128         instead of 0.
9129
9130 1996-10-29  Hrvoje Niksic  <hniksic@srce.hr>
9131
9132         * ftp.c (ftp_loop_internal): Don't use con->cmd before
9133         establishing it.
9134
9135 1996-10-26  Hrvoje Niksic  <hniksic@srce.hr>
9136
9137         * http.c (gethttp): Send correct referer when using proxy.
9138         (gethttp): Use struct urlinfo ou to access the relevant data; send
9139         correct authorization in all cases.
9140
9141         * host.c (same_host): Use skip_uname to skip username and
9142         password.
9143
9144         * url.c (skip_uname): New function.
9145         (parseurl): Use it.
9146
9147         * host.c (same_host): Do not assume HTTP -- same_host should now
9148         be totally foolproof.
9149
9150         * url.c (skip_proto): New function.
9151         (parse_uname): Use it.
9152
9153         * http.c (gethttp): Create local user and passwd from what is
9154         given.
9155
9156         * url.c (parseurl): Check for HTTP username and password too.
9157
9158 1996-10-25  Hrvoje Niksic  <hniksic@srce.hr>
9159
9160         * config.h.in: Removed #define gethostbyname R...
9161
9162 1996-10-22  Hrvoje Niksic  <hniksic@srce.hr>
9163
9164         * version.c: Changed version to 1.4.0-test1.
9165
9166 1996-10-21  Hrvoje Niksic  <hniksic@srce.hr>
9167
9168         * version.c: "Released" 1.4b29.
9169
9170         * recur.c (recursive_retrieve): Check for no_parent.
9171
9172         * init.c (setval): Option update.
9173
9174         * main.c (main): New option no-parent.
9175
9176         * options.h (struct options): New variable no_parent.
9177
9178         * recur.c (recursive_retrieve): Only files are checked for
9179         opt.accepts and opt.rejects.
9180         (recursive_retrieve): Check directories for opt.excludes.
9181         (recursive_retrieve): Make the dir absolute when checking
9182         opt.excludes.
9183
9184         * html.c (htmlfindurl): Recognize <applet code=...> and <script
9185         src=...>
9186
9187 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
9188
9189         * ftp.c (getftp): Do not line-break assert entries at all.
9190         (ftp_retrieve_dirs): docfix.
9191
9192         * connect.c (select_fd): Use fd + 1 as nfds.
9193
9194         * version.c: Changed version to 1.4b29.
9195
9196 1996-10-18  Hrvoje Niksic  <hniksic@srce.hr>
9197
9198         * version.c: "Released" 1.4b28.
9199
9200         * ftp.c (ftp_loop_internal): Check whether f->size == len and
9201         don't continue the loop if it is.
9202         (ftp_get_listing): Remove list_filename on unsuccesful loop.
9203
9204 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
9205
9206         * ftp.c (ftp_loop_internal): Use strcpy to initialize tmp.
9207         (getftp): Do not use multiline assert.
9208
9209         * http.c (hparsestatline): Use mjr and mnr instead of major and
9210         minor, which don't compile on Ultrix.
9211         (http_loop): Use strcpy() to initialize tmp.
9212
9213         * all: Geturl -> Fetch
9214
9215 1996-10-17  Hrvoje Niksic  <hniksic@srce.hr>
9216
9217         * recur.c (parse_robots): Fixed an off-by-one bug when looking for
9218         ':'.
9219
9220         * html.c (htmlfindurl): Fixed several possible off-by-one bugs by
9221         moving `bufsize &&' to the beginning of each check in for-loops.
9222
9223         * recur.c (parse_robots): Close fp on exit.
9224
9225         * url.c (mymkdir): Check for each directory before creating.
9226
9227 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
9228
9229         * version.c: Changed version to 1.4b28.
9230
9231 1996-10-16  Hrvoje Niksic  <hniksic@srce.hr>
9232
9233         * version.c: "Released" 1.4b27.
9234
9235         * init.c (parse_line): Use isspace.
9236         (parse_line): Free *com on all errors.
9237
9238         * ftp.c (ftp_loop): Change FTPOK to RETROK before exiting.
9239         (delelement): Use next instead of f->next and prev instead of
9240         f->prev.
9241         (delelement): Free the members of the deleted element.
9242
9243         * http.c (http_loop): Do not return RETROK on code != 20x.
9244
9245         * init.c (cleanup): Free opt.user_header.
9246         (cleanup): Free opt.domains.
9247
9248         * url.c (freelists): Moved to cleanup().
9249
9250         * http.c (hparsestatline): Docfix.
9251
9252         * main.c (main): Return with error status on unsuccesful
9253         retrieval.
9254
9255         * init.c (setval): Do not remove listing when mirroring.
9256
9257         * url.c (url_filename): Use opt.fileprefix.
9258
9259         * ftp.c (ftp_get_listing): Use url_filename to get filename for
9260         .listing.
9261
9262         * main.c (main): New option: -rn.
9263
9264 1996-10-15  Hrvoje Niksic  <hniksic@srce.hr>
9265
9266         * Makefile.in (RM): Added RM = rm -f.
9267
9268         * host.c (clean_hosts): New function.
9269         (free_hlist): Just free the list, no reset.
9270
9271         * version.c: Changed version to 1.4b27.
9272
9273 1996-10-13  Hrvoje Niksic  <hniksic@srce.hr>
9274
9275         * version.c: "Released" 1.4b26.
9276
9277         * retr.c (retrieve_from_file): If call get_urls_html with
9278         opt.spider to make it silent in spider mode.
9279
9280         * url.c (str_url): Use CLEANDUP instead of URL_CLEANSE.
9281
9282         * url.h (CLEANDUP): New macro.
9283
9284         * http.c (gethttp): Fixed a bug that freed location only when it
9285         was NULL.
9286
9287         * retr.c (retrieve_url): Free url if it will not be stored,
9288         i.e. newloc is NULL.
9289
9290         * html.c (htmlfindurl): Handle exiting from quotes correctly; the
9291         old version would bug out on <a href="x#a"href="y">.
9292
9293         * html.h (state_t): New member in_quote.
9294
9295         * html.c (htmlfindurl): Free s->attr at the beginning of
9296         attr-loop.
9297
9298         * recur.c (recursive_retrieve): Recognize RCLEANUP.
9299         (tried_robots): Make hosts a global variable.
9300         (recursive_retrieve): Free constr after URL host optimization.
9301         (tried_robots): Free urlinfo before exiting.
9302
9303         * utils.c (free_slist): New function.
9304
9305         * recur.c (recursive_retrieve): Use flags to add cleanup
9306         possibility.
9307
9308         * main.c (main): Free filename after recursive_retrieve.
9309
9310         * http.c (gethttp): Store successful responses too.
9311
9312 1996-10-12  Hrvoje Niksic  <hniksic@srce.hr>
9313
9314         * all: Constified the whole source.  This required some minor
9315         changes in many functions in url.c, possibly introducing bugs -- I
9316         hope not.
9317
9318         * ftp-basic.c: Removed last_respline.
9319
9320         * http.c (gethttp): Free type.
9321
9322         * host.c (same_host): Free real1 and real2.
9323
9324         * main.c (main): New option --spider.
9325
9326         * retr.c (get_contents): Don't reset errno.
9327
9328         * main.c (main): Sorted the options.
9329
9330         * connect.c (iread): Set errno to ETIMEDOUT only if it was left
9331         uninitialized by select().
9332
9333         * http.c (http_loop): Print the time when the connection is
9334         closed.
9335         (gethttp): Debug-print the HTTP request.
9336
9337 1996-10-11  Hrvoje Niksic  <hniksic@srce.hr>
9338
9339         * connect.c (iread): Do not try reading after timeout.
9340
9341         * main.c (main): Would bug out on -T.
9342
9343         * connect.c (select_fd): Do not use exceptfds.
9344         (iread): Set ETIMEDOUT on select_fd <= 0.
9345
9346         * version.c: Changed version to 1.4b26.
9347
9348 1996-10-10  Hrvoje Niksic  <hniksic@srce.hr>
9349
9350         * version.c: "Released" 1.4b25.
9351
9352         * ftp-unix.c (ftp_parse_unix_ls): Ignore lines without file name
9353         or link name.
9354
9355         * http.c (gethttp): Add errcode to struct hstat.
9356         (http_loop): Use it.
9357
9358         * url.c (no_proxy_match): Simplify using char** for no_proxy.
9359
9360         * options.h (struct options): Make opt.no_proxy a vector.
9361
9362         * utils.c (sepstring): Use !*s instead of !strlen(s).
9363
9364         * init.c (setval): Set opt.maxreclevel to 0 on --mirror.
9365         (getperms): Use ISODIGIT instead of isdigit.
9366
9367         * ftp.c (getftp): Print time.
9368
9369         * main.c (main): Use legible output of downloaded quantity.
9370
9371         * ftp.c (getftp): Use elapsed_time().
9372         (ftp_loop_internal): Use rate().
9373
9374         * http.c (http_loop): Add download ratio output; Use rate().
9375
9376         * utils.c (rate): New function.
9377
9378 1996-10-09  Hrvoje Niksic  <hniksic@srce.hr>
9379
9380         * http.c (http_loop): Use timer.
9381
9382         * ftp.c: Split to ftp-basic.c and ftp.c
9383
9384         * utils.c (reset_timer): New function.
9385         (elapsed_time): New function.
9386
9387         * retr.c (show_progress): Make bytes_in_line and offs long; should
9388         work on 16-bit machines.
9389
9390 1996-10-08  Hrvoje Niksic  <hniksic@srce.hr>
9391
9392         * url.c (in_acclist): New argument backward.
9393
9394         * ftp.c (ftp_retrieve_glob): Use acceptable() to determine whether
9395         a file should be retrieved according to suffix.
9396         (ftp_get_listing): Check the return value of unlink; Do not call
9397         ftp_retrieve_dirs if depth reached maxreclevel.
9398         (ftp_retrieve_dirs): Check whether the directory is in
9399         exclude-list.
9400
9401         * main.c (main): Print the version number at the beginning of
9402         DEBUG output.
9403         (main): Use strrchr when creating exec_name.
9404
9405         * ftp.c (ftp_retrieve_glob): Do not close control connection.
9406
9407         * version.c: Changed version to 1.4b25.
9408
9409 1996-10-07  Hrvoje Niksic  <hniksic@srce.hr>
9410
9411         * version.c: "Released" 1.4b24.
9412
9413         * Makefile.in: Rewrite.
9414
9415         * ftp.c (ftp_loop_internal): Likewise.
9416
9417         * retr.c (time_str): Check for failed time().
9418
9419         * html.c (htmlfindurl): Recognize <fig src> and <overlay src> from
9420         HTML3.0.
9421
9422         * retr.c (time_str): Return time_t *.
9423
9424         * connect.c (bindport): Close msock on unsuccesful bind.
9425         (bindport): The same for getsockname and listen.
9426
9427         * retr.c (retrieve_url): Allow any number of retries on
9428         proxy.
9429
9430         * http.c (gethttp): Do not treat errno == 0 as timeout.
9431         (http_loop): Likewise.
9432         (http_loop): Cosmetic changes.
9433
9434         * connect.c (iread): Set errno to ETIMEDOUT in case of timeout.
9435
9436         * retr.c (get_contents): Reset errno.
9437
9438         * ftp.c (getftp): Minor fixes.
9439
9440 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
9441
9442         * http.c: Do not use backups.
9443
9444         * geturl.1 (WARNING): Warn that man-page could be obsolete.
9445
9446         * getopt.c (getopt_long): Moved to getopt.c
9447
9448         * geturl.texi: Enhanced.
9449
9450         * main.c (main): Use it.
9451
9452         * recur.c (convert_all_links): New function.
9453
9454         * utils.c (add_slist): New argument flags.
9455
9456         * recur.c (recursive_retrieve): Update a list of downloaded URLs.
9457         (parse_robots): Do not chuck out empty value fields.
9458         (parse_robots): Make yourself welcome on empty Disallow.
9459
9460         * version.c: Changed version to 1.4b24.
9461
9462 1996-10-06  Hrvoje Niksic  <hniksic@srce.hr>
9463
9464         * version.c: "Released" 1.4b23.
9465
9466         * ftp.c (ftp_loop_internal): Get the time after getftp.
9467
9468         * Makefile.in (install.info): New target.
9469         (install): Use it.
9470
9471         * http.c (http_loop): Fix output when doing -O.
9472
9473 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
9474
9475         * geturl.texi: New file.
9476
9477         * main.c (main): Do not print the warnings and download summary if
9478         opt.quiet is set.
9479
9480         * version.c: Changed version to 1.4b23.
9481
9482 1996-10-05  Hrvoje Niksic  <hniksic@srce.hr>
9483
9484         * "Released" 1.4b22.
9485
9486         * atotm.c (atotm): Use True and False instead of TRUE and FALSE,
9487         to avoid redefinition warnings.
9488
9489         * host.c (store_hostaddress): Use memcpy() to copy the address
9490         returned by inet_addr.
9491
9492         * version.c: Changed version to 1.4b22.
9493
9494 1996-10-04  Hrvoje Niksic  <hniksic@srce.hr>
9495
9496         * version.c: "Released" 1.4b21.
9497
9498         * ftp-unix.c (ftp_parse_ls): Renamed to ftp_parse_unix_ls.
9499
9500         * ftp.c (ftp_port): Use conaddr.
9501         (getftp): Print the file length.
9502         (ftp_retrieve_list): Check the stamps of plain files only.
9503
9504         * connect.c (closeport): Do not call shutdown().
9505         (conaddr): New function.
9506
9507         * html.c (ftp_index): Made it dfp-aware.
9508
9509         * init.c (cleanup): New name of freemem. Close opt.dfp.
9510
9511         * ftp.c (getftp): Use opt.dfp if it is set.
9512
9513         * ftp-unix.c (ftp_parse_ls): Recognize time in h:mm format.
9514
9515         * ftp.c (ftp_retrieve_dirs): Fixed a bug that caused incorrect
9516         CWDs to be sent with recursive FTP retrievals.
9517
9518 1996-10-03  Hrvoje Niksic  <hniksic@srce.hr>
9519
9520         * recur.c (parse_robots): Made it more compliant with "official"
9521         specifications.
9522
9523         * http.c: New function.
9524
9525         * ftp-unix.c (ftp_parse_ls): Added better debug output.
9526
9527         * ftp.c (getftp): Print out the LIST in case of
9528         opt.print_server_response.
9529
9530         * version.c: Changed version to 1.4b21.
9531
9532 1996-10-01  Hrvoje Niksic  <hniksic@srce.hr>
9533
9534         * version.c: "Released" 1.4b20.
9535
9536         * README: Update.
9537
9538         * http.c (gethttp): Preset lengths of various headers instead of
9539         calculating them dynamically.
9540         (gethttp): Check for 206 partial contents.
9541
9542 1996-09-30  Hrvoje Niksic  <hniksic@srce.hr>
9543
9544         * configure.in: Set SYSTEM_GETURLRC to $libdir/geturlrc
9545
9546         * http.c (gethttp): Send the port number in the Host: header.
9547
9548 1996-09-29  Hrvoje Niksic  <hniksic@srce.hr>
9549
9550         * http.c (gethttp): Send host: header.
9551         (gethttp): Add the possibility of user-defined headers.
9552         (gethttp): Move decision about pragma: no-cache to http_loop,
9553         where it belongs.
9554         (gethttp): Pass a struct instead of enormous argument list.
9555         (http_loop): Use a new, fancier display format.
9556         (ftp_loop): Likewise.
9557
9558         * main.c: (hangup): Turn off buffering of the new log file.
9559
9560         * install-sh: Likewise.
9561
9562         * config.sub: Replace with the one in autoconf-2.10
9563
9564         * geturl.1: Update.
9565
9566         * init.c: New options httpuser and httppasswd.
9567
9568         * http.c: (base64_encode_line): New function.
9569         (gethttp): Send authentication.
9570
9571         * connect.c (make_connection): Use store_hostaddress.
9572
9573 1996-09-28  Hrvoje Niksic  <hniksic@srce.hr>
9574
9575         * host.c (store_hostaddress): New function.
9576
9577         * NEWS: Update.
9578
9579         * http.c (hgetrange): New function.
9580         (gethttp): Use ranges.
9581
9582         * utils.c (numdigit): Accept long instead of int.
9583
9584         * http.c (http_loop): Add restart capabilities.
9585
9586         * ftp.c (ftp_retrieve_glob): Fixed a bug that could cause matchres
9587         being used uninitialized.
9588         (ftp_retrieve_list): Similar fix.
9589
9590         * host.c (add_hlist): Fixed a bug that could cause cmp being used
9591         uninitialized.
9592
9593         * url.c (construct_relative): New function.
9594
9595         * recur.c (recursive_retrieve): Use it.
9596
9597         * retr.c (convert_links): New function.
9598
9599 1996-09-27  Hrvoje Niksic  <hniksic@srce.hr>
9600
9601         * url.c (free_urlpos): New function.
9602
9603         * recur.c (recursive_retrieve): Adapt.
9604
9605         * url.c (get_urls_html): Return a linked list instead of a vector.
9606
9607         * url.c (get_urls_file): Return a linked list instead of a vector.
9608
9609         * geturl.1: Update.
9610
9611         * http.c (gethttp): Implement it.
9612
9613         * init.c (setval): New option: SAVEHEADERS
9614
9615         * ftp.c (ftp_loop_internal): Do not set restval if listing is to
9616         be retrieved. Lack of this test caused bugs when the connection
9617         was lost during listing.
9618
9619         * retr.c (retrieve_url): Fixed a bug that caused
9620         coredumps. *newloc is now reset by default.
9621         (retrieve_url): Lift the twenty-tries limit on proxies.
9622
9623         * version.c: Changed version to 1.4b20.
9624
9625 1996-09-20  Hrvoje Niksic  <hniksic@srce.hr>
9626
9627         * version.c: "Released" 1.4b19.
9628
9629 1996-09-19  Hrvoje Niksic  <hniksic@srce.hr>
9630
9631         * ftp.c (ftp_loop_internal): Renamed from ftp_1fl_loop.
9632         (getftp): Changed prototype to accept ccon *.
9633
9634 1996-09-17  Hrvoje Niksic  <hniksic@srce.hr>
9635
9636         * ftp.c (ftp_retrieve_list): Fixed a bug that caused setting
9637         incorrect values to files pointed to by symbolic links.
9638         (ftp_1fl_loop): Do not count listings among the downloaded URL-s.
9639
9640 1996-09-16  Hrvoje Niksic  <hniksic@srce.hr>
9641
9642         * url.c (mkstruct): Do not prepend "./" in front of a pathname.
9643
9644         * main.c (main): New option: --user-agent.
9645
9646         * geturl.1: Ditto.
9647
9648         * init.h: Ditto.
9649
9650         * init.c (setval): Ditto.
9651
9652         * main.c (main): Rename "server-headers" to "server-response".
9653
9654         * ftp-unix.c (ftp_parse_ls): Check for asterisks at the end of
9655         executables in 'ls -F' listings.
9656
9657 1996-09-15  Hrvoje Niksic  <hniksic@srce.hr>
9658
9659         * url.c (parseurl): Remove realloc() and sprintf().
9660         (str_url): Get rid of sprintf().
9661
9662         * recur.c (recursive_retrieve): Enable FTP recursion through proxy
9663         servers.
9664
9665         * url.h (URL_CLEANSE): Made it else-resistant.
9666         (USE_PROXY): New macro.
9667
9668 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
9669
9670         * NEWS: Update.
9671
9672         * version.c: Changed version to 1.4b19.
9673
9674 1996-09-14  Hrvoje Niksic  <hniksic@srce.hr>
9675
9676         * version.c: "Released" 1.4b18.
9677
9678         * url.c: Made it reallocate space exponentially.
9679
9680 1996-09-14  Drazen Kacar  <dave@fly.cc.fer.hr>
9681
9682         * html.c (htmlfindurl): Added <frame src> and <iframe src> among
9683         the list of stuff to fetch.
9684
9685 1996-09-13  Hrvoje Niksic  <hniksic@srce.hr>
9686
9687         * url.c (get_urls_html): Fixed a bug that caused SIGSEGV's with
9688         -Fi.
9689
9690         * html.c (htmlfindurl): Rewrite.
9691
9692         * http.c (gethttp): Use opt.proxy_cache.
9693
9694         * main.c (main): Added --cache option.
9695
9696         * ftp.c (ftp_response): Print server response if opt.print_server
9697         response is set.
9698         (getftp): Print newlines after each request if the server response
9699         is to be printed.
9700         (ftp_response): Copy the last response line to last_respline.
9701
9702         * http.c (gethttp): Add Pragma: nocache for retried
9703         proxy-retrievals.
9704
9705         * ftp.c (getftp): Use it.
9706
9707         * retr.c (buf_discard): New function.
9708
9709         * ftp.c (ftp_response): Use buf_readchar().
9710         (getftp): Flush the control connection buffer before calling
9711         get_contents().
9712
9713         * retr.c (buf_readchar): New function.
9714         (buf_flush): New function.
9715         (get_contents): Use buf_readchar() instead of read(x, x, 1).
9716         (get_contents): Use buf_flush.
9717
9718 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
9719
9720         * ftp.c: Incorporate changes to ftp_response.
9721
9722         * ftp.c (ftp_response): Allocate the server response dynamically,
9723         as in read_whole_line and fetch_next_header.
9724
9725         * utils.c (read_whole_line): Fixed a bug that prevented reading
9726         the last line if it is not \n-terminated. Also fixed a possible
9727         memory overflow.
9728
9729         * http.c (fetch_next_header): Return malloc-ed string as large as
9730         needed.
9731         (gethttp): Use new fetch_next_header.
9732
9733 1996-09-12  Hrvoje Niksic  <hniksic@srce.hr>
9734
9735         * http.c (hgetlen): Compute the header length the first time only.
9736         (hgettype): Ditto.
9737         (hgetlocation): Ditto.
9738         (hgetmodified): Ditto.
9739
9740 1996-09-11  Hrvoje Niksic  <hniksic@srce.hr>
9741
9742         * sample.geturlrc: Update.
9743
9744 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
9745
9746         * http.c (http_loop): Ditto.
9747
9748         * ftp.c (getftp): Open the output file as binary.
9749
9750         * version.c: Changed version to 1.4b18.
9751
9752 1996-09-10  Hrvoje Niksic  <hniksic@srce.hr>
9753
9754         * version.c: "Released" 1.4b17.
9755
9756         * ftp-unix.c (ftp_parse_ls): If unable to open file, return NULL
9757         instead of failed assertion.
9758
9759 1996-09-09  Hrvoje Niksic  <hniksic@srce.hr>
9760
9761         * ftp.c (ftp_get_listing): Add a numbered suffix to LIST_FILENAME
9762         if a file of that name already exists.
9763
9764 1996-09-05  Hrvoje Niksic  <hniksic@srce.hr>
9765
9766         * ftp.c (ftp_1fl_loop): Handler FTPPORTERR and FOPENERR correctly.
9767
9768         * config.h.in: Define gethostbyname as Rgethostbyname when using
9769         Socks.
9770
9771         * configure.in: Check for -lresolv if using Socks.
9772
9773         * version.c: Changed version to 1.4b17.
9774
9775 1996-07-15  Hrvoje Niksic  <hniksic@srce.hr>
9776
9777         * version.c: "Released" 1.4b16.
9778
9779         * http.c (gethttp): More intelligent check for first line of HTTP
9780         response.
9781         (gethttp): Would bug out on time-stamping.
9782
9783         * version.c: Changed version to 1.4b16.
9784
9785 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
9786
9787         * version.c: Released 1.4b15.
9788
9789         * http.c (http_loop): Print \n after the loop entry, not before.
9790
9791         * url.c (url_filename): Use ISDOT.
9792
9793         * url.h (ISDOT): New macro.
9794
9795         * recur.c (recursive_retrieve): Change only opt.recursive for
9796         following FTP.
9797
9798 1996-07-11  Antonio Rosella <antonio.rosella@agip.it>
9799
9800         * socks/geturl.cgi: Fixed version No.
9801
9802         * socks/download-netscape.html: Ditto.
9803
9804         * socks/download.html: Changed socks.html to download.html.
9805
9806 1996-07-11  Hrvoje Niksic  <hniksic@srce.hr>
9807
9808         * url.c (url_filename): Check for opt.dirstruct instead for
9809         opt.recursive && opt.dirstruct.
9810
9811         * init.c (defaults): Ditto.
9812         (defaults): Reset dirstruct by default.
9813         (setval): Set opt.dirstruct whenever setting recursive.
9814
9815         * init.h: Removed FORCEDIRHIER.
9816
9817         * INSTALL: Added -L to socks-description.
9818
9819         * version.c: Changed version to 1.4b15.
9820
9821 1996-07-10  Hrvoje Niksic  <hniksic@srce.hr>
9822
9823         * version.c: "Released" 1.4b14.
9824
9825         * geturl.1: Update AUTHOR to include Rosella as contributor.
9826
9827         * NEWS: Update.
9828
9829         * socks/geturl.cgi: Simplified command creation, nuked <blink>.
9830
9831         * socks/geturl.cgi: Wrap nutscape extensions within if $netscape.
9832         (cal_time): Fix == to eq.
9833
9834         * socks/geturl.cgi: GPL-ized with permission of A. Rosella.
9835
9836         * geturl.1 (hostname): Moved URL CONVENTIONS to the beginning.
9837
9838         * Makefile.in: Use @VERSION@.
9839
9840         * configure.in: Check version from version.c.
9841
9842         * socks/geturl.cgi: Changed /pub/bin/perl to /usr/bin/perl.
9843
9844         * socks/download.html: Created from download-netscape.html, made
9845         HTML-2.0 compliant.
9846
9847         * recur.c (recursive_retrieve): Set opt.force_dir_hier when
9848         following FTP links from recursions.
9849
9850 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
9851
9852         * url.c (mymkdir): Fixed a bug that prevented mymkdir() to create
9853         absolute directories correctly.
9854
9855         * version.c: Changed version to 1.4b14.
9856
9857 1996-07-09  Hrvoje Niksic  <hniksic@srce.hr>
9858
9859         * version.c: "Released" 1.4b13.
9860
9861         * url.c (make_backup): New function.
9862
9863         * http.c (http_loop): Make a backup copy of the local file (using
9864         rename(2)) before opening it.
9865
9866         * main.c (main): Added --backups.
9867
9868         * host.c (ftp_getaddress): Bail out on failed mycuserid().
9869         (ftp_getaddress): Check for leading dot on MY_DOMAIN.
9870         (ftp_getaddress): Check for empty, null or (null) domain.
9871
9872         * url.c (get_urls_html): If this_url is NULL, the base must have a
9873         protocol.
9874         (parseurl): Use has_proto.
9875
9876         * retr.c (retrieve_url): Warn when proxy is used with more than 20
9877         retries.
9878
9879         * url.c (mkstruct): Create the directory (calling mymkdir()) only
9880         if it is not already there.
9881         (has_proto): New function.
9882         (get_urls_html): Eliminate the remaining call to findurl -- use
9883         has_proto.
9884
9885         * geturl.1: Ditto.
9886
9887         * main.c: Change -X to -x.
9888
9889         * url.c (url_filename): Simplify creation of filename if
9890         prefix_files is set.
9891         (url_filename): Simplify everything. And I do mean *everything*.
9892         (mkstruct): Add dir_prefix before hostname.
9893         (path_simplify): Fixed a bug that caused writing outside the path
9894         string in case of "." and ".." path strings.
9895
9896 1996-07-06  Hrvoje Niksic  <hniksic@srce.hr>
9897
9898         * init.c: Added --mirror.
9899
9900         * main.c (main): Added -X to force saving of directory hierarchy.
9901
9902         * ftp.c (ftp_retrieve_list): Added recursion depth counter.
9903         (ftp_retrieve_list): Check whether quota is exceeded.
9904
9905         * url.c (get_urls_html): Skip leading blanks for absolute URIs.
9906
9907         * http.c (gethttp): Use referer if present.
9908
9909         * recur.c (recursive_retrieve): Set u->referer before calling
9910         retrieve_url.
9911
9912         * url.c (newurl): Use memset to nullify the struct members.
9913         (freeurl): Free the referer field too.
9914
9915         * url.h: Added referer to urlinfo.
9916
9917         * geturl.1: Updated the manual to document some of the new features.
9918
9919         * utils.c (numdigit): Moved from url.c.
9920
9921         * README: Rewritten.
9922
9923         * config.h.in: Add the support for socks.
9924
9925         * configure.in: Add the support for socks.
9926
9927         * url.c (url_filename): If the dir_prefix is ".", work with just
9928         the file name.
9929         (url_filename): Do not look for .n extensions if timestamping if
9930         turned on.
9931
9932         * retr.c (show_progress): Skip the over-abundant restval data, and
9933         print the rest of it with ',' instead of '.'.
9934
9935 1996-07-05  Hrvoje Niksic  <hniksic@srce.hr>
9936
9937         * retr.c (show_progress): Changed second arg. to long (as it
9938         should be).
9939         (show_progress): Moved to retr.c.
9940         (get_contents): Moved to retr.c.
9941
9942         * version.c: Change version to 1.4b13.
9943
9944 1996-07-05  Hrvoje Lacko <hlacko@fly.cc.fer.hr>
9945
9946         * url.c (in_acclist): Would return after the first suffix.
9947
9948 1996-07-04  Hrvoje Niksic  <hniksic@srce.hr>
9949
9950         * version.c: "Released" 1.4b12.
9951
9952         * url.c (path_simplify): More kludgifications.
9953         (get_urls_html): Use new parameters for htmlfindurl.
9954
9955         * html.c: Removed memorizing "parser states", since the new
9956         organization does not require them.
9957
9958         * init.c (run_geturlrc): Use read_whole_line.
9959
9960         * ftp-unix.c (ftp_parse_ls): Use read_whole_line.
9961
9962         * recur.c (parse_robots): Use read_whole_line.
9963
9964         * utils.c (read_whole_line): New function.
9965
9966         * recur.c (tried_robots): Use add_slist/in_slist, *much* cleaner.
9967
9968         * host.c (ngethostbyname): Call inet_addr just once. Yet to be
9969         tested on OSF and Ultrix.
9970         (add_hlist): New function.
9971         (free_hlist): New function.
9972         (search_host): New function.
9973         (search_address): New function.
9974         (realhost): Use search_host, search_address and add_hlist.
9975         (same_host): Replaced realloc() with strdupdelim(), made
9976         case-insensitive, fixed a memory leak.
9977
9978         * html.c (ftp_index): Fixed tm_min and tm_sec to be tm_hour and
9979         tm_min, like intended.
9980
9981         * version.c: Change user agent information to
9982         Geturl/version.
9983
9984 1996-07-03  Hrvoje Niksic  <hniksic@srce.hr>
9985
9986         * utils.c: Renamed nmalloc.c to utils.c, .h likewise.
9987
9988         * url.c (acceptable): Always accept directories.
9989
9990         * ftp-unix.c (ftp_parse_ls): Support brain-damaged "ls -F"-loving
9991         servers by stripping trailing @ from symlinks and trailing / from
9992         directories.
9993
9994         * ftp.c (ftp_loop): Debugged the "enhanced" heuristics. :-)
9995
9996         * url.c (skip_url): Use toupper instead of UCASE.
9997
9998         * host.c (sufmatch): Made it case-insensitive.
9999
10000         * url.c (match_backwards_or_pattern): Fixed i == -1 to j == -1.
10001         (match_backwards): New function, instead of
10002         match_backwards_or_pattern.
10003
10004         * recur.c (recursive_retrieve): Increased performance by
10005         introducing inl, which reduces number of calls to in_slist to only
10006         one.
10007
10008         * ftp.c (ftp_loop): Enhanced the heuristics that decides which
10009         routine to use.
10010
10011         * main.c (printhelp): Removed the warranty stuff.
10012
10013 1996-07-02  Hrvoje Niksic  <hniksic@srce.hr>
10014
10015         * url.c (add_slist): Simplify.
10016         (match_backwards_or_pattern): New function.
10017         (in_acclist): Use match_backwards_or_pattern.
10018         (matches): Remove.
10019
10020 1996-06-30  Hrvoje Niksic  <hniksic@srce.hr>
10021
10022         * ftp.c (ftp_loop): Call ftp_index on empty file names, if not
10023         recursive.
10024
10025         * html.c (ftp_index): Fixed to work. Beautified the output.
10026
10027         * ftp.c (ftp_retrieve_glob): Another argument to control whether
10028         globbing is to be used.
10029         (ftp_retrieve_list): Compare the time-stamps of local and remote
10030         files to determine whether to download.
10031
10032 1996-06-29  Hrvoje Niksic  <hniksic@srce.hr>
10033
10034         * ftp.c (rel_constr): New function.
10035
10036         * retr.c (retrieve_from_file): Check for text/html before
10037         retrieving recursively.
10038
10039         * main.c (main): Check whether the file is HTML before going into
10040         recursive HTML retrieving.
10041
10042         * ftp.c (ftp_retrieve_list): Manage directories.
10043         (ftp_retrieve_glob): Pass all the file-types to ftp_retrieve_list.
10044         (ftp_1fl_loop): Fixed a bug that caused con->com to be incorrectly
10045         initialized, causing bugchecks in getftp to fail.
10046
10047         * configure.in: Check for symlink.
10048
10049         * ftp.c (ftp_retrieve_list): Added support for symlinks.
10050
10051         * version.c: "Released" 1.4b10.
10052
10053         * atotm.c (atotm): Redeclared as time_t.
10054
10055         * init.c: New variable "timestamping".
10056
10057         * main.c (main): New option 'N'.
10058
10059         * http.c (hgetlocation): Case-insensitive match.
10060         (hgetmodified): New function.
10061         (http_loop): Implement time-stamping.
10062
10063 1996-06-28  Hrvoje Niksic  <hniksic@srce.hr>
10064
10065         * version.c: Changed version to 1.4b10
10066
10067         * atotm.c: New file, from phttpd.
10068
10069         * options.h (struct options): New parameter timestamping.
10070
10071         * version.c: 1.4b9 "released".
10072
10073         * recur.c (recursive_retrieve): Used linked list (ulist) for
10074         faster storing of URLs.
10075
10076         * url.c (get_urls_html): Removed the old kludge with comparing the
10077         outputs of htmlfindurl and findurl.
10078         (get_urls_html): Added better protocol support here.
10079         (create_hash): Removed, as well as add_hash and in_hash.
10080         (addslist): New function.
10081         (in_slist): ditto
10082
10083         * version.c: Released 1.4b8, changed version to b9.
10084
10085 1996-06-27  Hrvoje Niksic  <hniksic@srce.hr>
10086
10087         * ftp.c (freefileinfo): New function.
10088         (delelement): New function.
10089
10090         * everywhere: GPL!
10091
10092         * ftp.c (ftp_loop): Use ccon.
10093         (ftp_retrieve_glob): Likewise.
10094
10095         * ftp.h: Define ccon, to define status of control connection.
10096
10097         * ftp.c (ftp_get_listing): New function.
10098         (ftp_retrieve_more): New function.
10099         (ftp_retrieve_glob): New function.
10100
10101 1996-06-25  Hrvoje Niksic  <hniksic@srce.hr>
10102
10103         * configure.in: Removed the search for cuserid().
10104
10105         * init.c (getmode): Renamed to getperms.
10106
10107 1996-06-24  Hrvoje Niksic  <hniksic@srce.hr>
10108
10109         * version.c: New version.
10110
10111         * main.c (hangup): New function, that handles hangup. Hangup
10112         signal now causes geturl to stop writing on stdout, and to write
10113         to a log file.
10114
10115         * ftp.c (getftp): "Released" 1.4b7.
10116
10117         * html.c (htmlfindurl): Ignore everything inside <head>...</head>.
10118         (ftp_index): Use fileinfo/urlinfo.
10119
10120         * ftp-unix.c (ftp_parse_ls): New function.
10121         (symperms): New function.
10122
10123         * ftp.c (ftp_1fl_loop): New function, to handle 1-file loops.
10124
10125         * retr.c (retrieve_url): Added FTP support.
10126
10127 1996-06-23  Hrvoje Niksic  <hniksic@srce.hr>
10128
10129         * geturl.h: Removed NOTFTP2HTML enum.
10130         Added DO_LOGIN, DO_CWD and DO_LIST. LIST_ONLY is obsolete.
10131
10132         * ftp.c (getftp): Resynched with urlinfo.
10133         (getftp): Removed HMTL-ization of index.html from getftp.
10134
10135         * version.c: 1.4b6 "released".
10136
10137         * options.h (options): New struct, to keep options in.
10138
10139         * http.c (http_loop,gethttp): Synched with proxy.
10140
10141         * retr.c (retrieve_url): Implemented proxy retrieval.
10142
10143         * main.c (main): Use retrieve_from_file.
10144
10145 1996-06-22  Hrvoje Niksic  <hniksic@srce.hr>
10146
10147         * retr.c (retrieve_from_file): New function.
10148
10149         * url.c (parseurl): Modified to return URLOK if all OK. Protocol
10150         can be found in u->proto.
10151
10152         * ftp.c (ftp_response): Fixed to accept multi-line responses as
10153         per RFC 959.
10154
10155         * recr.c (recursive_retrieve): Take newloc from retrieve_url.
10156
10157         * url.c (mymkdir): Removed the file of the same name, if one
10158         exists.
10159         (isfile): New function.
10160         (mkstruct): Fixed the '/' glitches.
10161         (path_simplify): Hacked to treat something/.. correctly.
10162
10163 1996-06-21  Hrvoje Niksic  <hniksic@srce.hr>
10164
10165         * http.c (gethttp): Close the socket after error in headers.
10166         (http_loop): HEOF no longer a fatal header.
10167
10168         * loop.c (retrieve_url): When dt is NULL, do not modify it. This
10169         simplifies the syntax of calling retrieve_url.
10170
10171         * recr.c (recursive_retrieve): Modified to use get_urls_html.
10172
10173         * url.c (get_urls_file): New function.
10174         (get_urls_html): New function.
10175
10176         * recr.c (recursive_retrieve): Patched up to conform to the
10177         standards.
10178
10179         * http.c (gethttp): Synched with the rest...
10180         (gethttp): Treat only CONREFUSED specially, with connection
10181         errors.
10182
10183         * init.c,geturl.1,http.c (http_loop): Removed kill_error.
10184
10185 1996-06-20  Hrvoje Niksic  <hniksic@srce.hr>
10186
10187         * http.c (http_loop): New function.
10188
10189         * loop.c: Removed *lots* of stuff from retrieve_url.
10190
10191         * url.c (parseurl): Changed to work with urlinfo. Integrated
10192         username finding and path parsing.
10193         (newurl): New function.
10194         (freeurl): New function.
10195         (mkstruct): Removed the old bogosities, made it urlinfo-compliant.
10196         (url_filename): Likewise.
10197         (path_simplify): Accept relative paths too.
10198         (opt_url): Made urlinfo-compliant, removed bogosities.
10199         (path_simplify): Expanded to accept relative paths.
10200         (str_url): A replacement for hide_url
10201         (decode_string): Fixed a bug that caused malfunctioning when
10202         encountering an illegal %.. combination.
10203         (opt_url): Removed the argument. Dot-optimizations are now default.
10204
10205         * nmalloc.c (strdupdelim): New function.
10206
10207         * url.h: Added the urlinfo structure
10208
10209 1996-06-19  Hrvoje Niksic  <hniksic@srce.hr>
10210
10211         * url.c (hide_url): Thrown out the protocol assertion. Do not
10212         change the URL if the protocol if not recognized.
10213         (findurl): Put continue instead of break.
10214
10215 1996-06-18  Hrvoje Niksic  <hniksic@srce.hr>
10216
10217         * sample.geturlrc: Changed the defaults to be commented out and
10218         harmless (previous defaults caused pains if copied to
10219         ~/.geturlrc).
10220
10221         * http.c (gethttp): Print the HTTP request in debug mode.
10222
10223         * connect.c (iread): Added EINTR check loop to select-ing
10224         too. EINTR is now correctly handled with select().
10225
10226         * TODO: new file
10227
10228 1996-05-07  Hrvoje Niksic  <hniksic@srce.hr>
10229
10230         * host.c (same_host): Made the function a little bit more
10231         intelligent regarding diversified URL syntaxes.
10232
10233         * url.c (skip_url): Spaces are now skipped after URL:
10234
10235         * Released 1.3.1 with the patch to prevent crashing when sending
10236         NULL to robot* functions and the patch to compile "out of the box"
10237         on AIX.
10238
10239         * recr.c (recursive_retrieve): Added checking whether this_url is
10240         NULL when calling the robot functions.
10241
10242         * ChangeLog: New file.