]> sjero.net Git - wget/blob - NEWS
Merging to reinstate autoreconf.
[wget] / NEWS
1 GNU Wget NEWS -- history of user-visible changes.
2
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 2006, 2007 Free Software Foundation, Inc.
5 See the end for copying conditions.
6
7 Please send GNU Wget bug reports to <bug-wget@gnu.org>.
8 \f
9 * Changes in Wget (MAINLINE).
10
11 ** Gnulib is now used to provide code for certain portability aspects in
12 GNU Wget.
13
14 ** Wget uses Automake now as part of its build infrastructure.
15 \f
16 * Changes in Wget 1.11.
17
18 ** The source code has been migrated to Mercurial. The repositories are
19 available at http://hg.addictivecode.org/. Prior to this, the source
20 code was hosted on Subversion (migrated from the original CVS); you can
21 still get access to older tags and branches for Wget in the Subversion
22 repository at http://addictivecode.org/svn/wget/.
23
24 ** PATCH file removed; see http://wget.addictivecode.org/PatchGuidelines
25 for current information about producing patches for GNU Wget.
26
27 ** TODO file removed: we use a bugtracker now; see
28 http://wget.addictivecode.org/BugTracker. Also,
29 http://wget.addictivecode.org/FeatureSpecifications.
30
31 ** Timestamping now uses the value from the most recent HTTP response,
32 rather than the first one it got.
33
34 ** configure.in now requires autoconf >= 2.61, rather than 2.59.
35
36 ** Authentication information is no longer sent as part of the Referer
37 header in recursive fetches.
38
39 ** No authentication credentials are sent until a challenge is issued,
40 for improved security. Authentication handling is still not
41 RFC-compliant, as once a Basic challenge has been received, it will
42 assume it can send credentials to any URL at that same host, and not
43 just the ones at or below the original authenticated location.
44 Credentials for Digest authentication are still never saved or issued
45 automatically, and continue to require a challenge for each resource.
46
47 ** Added --max-redirect option, allowing the user to specify what should
48 be the maximum number of HTTP redirects to follow.
49
50 ** Wget now saves HTTP downloads using file names specified by the
51 `Content-Disposition' header.  This is a standard way of specifying the
52 file name used by many web dynamically generated pages. For the time
53 being, Content-Disposition is not used by default, to avoid the extra
54 round-trips incurred (must specify "-e contentdisposition=yes"); this
55 may change in a future version. NOTE: This functionality is currently
56 considered "experimental", and may not be fully functional.
57
58 ** The GnuTLS library is now also experimentally supported for https
59 downloads.  This is still work-in-progress.  OpenSSL is still used by
60 default; use --with-ssl=gnutls to build with GnuTLS.  OpenSSL is still
61 required for NTLM authorization to work, but this should eventually
62 change. NOTE: Certificate verification is _not_ currently supported:
63 this means that you can currently only use GnuTLS to encrypt
64 connections, but _not_ to verify that a host is who it claims to be. Use
65 of OpenSSL is suggested until this missing feature is implemented.
66
67 ** The new option `--ignore-case' makes Wget ignore case when
68 matching files, directories, and wildcards.  This affects the -X, -I,
69 -A, and -R options, as well as globbing in FTP URLs.
70
71 ** ETA projection is now displayed in "dot" progress output as well as
72 in the default progress bar.  (The dot progress is used by default when
73 logging Wget's output to file using the `-o' option.)
74
75 ** The "lockable boolean" argument type is no longer supported.  It
76 was only used by the passive_ftp .wgetrc setting.  If you're running
77 broken scripts or Perl modules that unconditionally specify
78 `--passive-ftp' and your firewall disallows it, you can override them
79 by replacing wget with a script that execs wget "$@" --no-passive-ftp.
80 \f
81 * Changes in Wget 1.10.
82
83 ** Downloading files larger than 2GB, sometimes referred to as "large
84 files", now works on systems that support them.  This includes the
85 majority of modern Unixes, as well as MS Windows.
86
87 ** IPv6 is now supported by Wget.  Unlike the experimental code in
88 1.9, this version supports dual-family systems.  The new flags
89 `--inet4' and `--inet6' (or `-4' and `-6' for short) force the use of
90 IPv4 and IPv6 respectively.  Note that IPv6 support has not yet been
91 tested on Windows.
92
93 ** Microsoft's proprietary "NTLM" method of HTTP authentication is now
94 supported.  This authentication method is undocumented and only used
95 by IIS.  Note that *proxy* authentication is not supported in this
96 release; you can only authenticate to the target web site.
97
98 ** Wget no longer truncates partially downloaded files when download
99 has to start over because the server doesn't support Range.  Instead,
100 with such servers Wget now simply ignores the data up to the byte
101 where the last attempt left off, and only then continues appending to
102 the file.  That way the downloaded file never shrinks, and download
103 retries from servers without support for partial downloads work even
104 when downloading to stdout.
105
106 ** SSL/TLS changes:
107
108 *** SSL/TLS downloads now attempt to verify the server's certificate
109 against the recognized certificate authorities.  This requires CA
110 certificates to have been installed in a location visible to the
111 OpenSSL library.  If this is not the case, you can get the bundle
112 yourself from a source you trust (for example, the bundle extracted
113 from Mozilla available at http://curl.haxx.se/docs/caextract.html),
114 and point Wget to the PEM file using the `--ca-certificate'
115 command-line option or the corresponding `.wgetrc' command.
116
117 *** Secure downloads now verify that the host name in the URL matches
118 the "common name" in the certificate presented by the server.
119
120 *** Although the above checks provide more secure downloads, they
121 unavoidably break interoperability with some sites that worked with
122 previous versions, particularly those using self-signed, expired, or
123 otherwise invalid certificates.  If you encounter "certificate
124 verification" errors or complaints that "common name doesn't match
125 requested host name" and are convinced of the site's authenticity, you
126 can use `--no-check-certificate' to bypass both checks.
127
128 *** Talking to SSL/TLS servers over proxies now actually works.
129 Previous versions of Wget erroneously sent GET requests for https
130 URLs.  Wget 1.10 utilizes the CONNECT method designed for this
131 purpose.
132
133 *** The SSL/TLS-related options have been redesigned and, for the
134 first time, documented in the manual.  The old, undocumented, options
135 are no longer supported.
136
137 ** Passive FTP is now the default FTP transfer mode.  Use
138 `--no-passive-ftp' or specify `passive_ftp = off' in your init file to
139 revert to the old behavior.
140
141 ** The `--header' option can now be used to override generated
142 headers.  For example, `wget --header="Host: foo.bar"
143 http://127.0.0.1' tells Wget to connect to localhost, but to specify
144 "foo.bar" in the `Host' header.  In previous versions such use of
145 `--header' lead to duplicate headers in HTTP requests.
146
147 ** The responses without headers, aka "HTTP 0.9" responses, are
148 detected and handled.  Although HTTP 0.9 has long been obsolete, it is
149 still occasionally used, sometimes by accident.
150
151 ** The progress bar is now updated regularly even when the data does
152 not arrive from the network.
153
154 ** Wget no longer preserves permissions of files retrieved by FTP by
155 default.  Anonymous FTP servers frequently use permissions like "664",
156 which might not be what the user wants.  The new option
157 `--preserve-permissions' and the corresponding `.wgetrc' variable can
158 be used to revert to the old behavior.
159
160 ** The new option `--protocol-directories' instructs Wget to also use
161 the protocol name as a directory component of local file names.
162
163 ** Options that previously unconditionally set or unset various flags
164 are now boolean options that can be invoked as either `--OPTION' or
165 `--no-OPTION'.  Options that required an argument "on" or "off" have
166 also been changed this way, but they still accept the old syntax for
167 backward compatibility.  For example, instead of `--glob=off' you can
168 write `--no-glob'.
169
170 Allowing `--no-OPTION' for every `--OPTION' and the other way around
171 is useful because it allows the user to override non-default behavior
172 specified via `.wgetrc'.
173
174 ** The new option `--keep-session-cookies' causes `--save-cookies' to
175 save session cookies (normally only kept in memory) along with the
176 permanent ones.  This is useful because many sites track important
177 information, such as whether the user has authenticated, in session
178 cookies.  With this option multiple Wget runs are treated as a single
179 browser session.
180
181 ** Wget now supports the --ftp-user and --ftp-password command
182 switches to set username and password for FTP, and the --user and
183 --password command switches to set username and password for both FTP
184 and HTTP.  The --http-passwd and --proxy-passwd command switches have
185 been renamed to --http-password and --proxy-password respectively, and
186 the related http_passwd and proxy_passwd .wgetrc commands to
187 http_password and proxy_password respectively.  The login and passwd
188 .wgetrc commands have been deprecated.
189
190 * `wget -b' now works correctly under Windows.
191 \f
192 * Wget 1.9.1 is a bugfix release with no user-visible changes.
193 \f
194 * Changes in Wget 1.9.
195
196 ** It is now possible to specify that POST method be used for HTTP
197 requests.  For example, `wget --post-data="id=foo&data=bar" URL' will
198 send a POST request with the specified contents.
199
200 ** IPv6 support is available, although it's still experimental.
201
202 ** The `--timeout' option now also affects DNS lookup and establishing
203 the TCP connection.  Previously it only affected reading and writing
204 data.  Those three timeouts can be set separately using
205 `--dns-timeout', `--connection-timeout', and `--read-timeout',
206 respectively.
207
208 ** Download speed shown by the progress bar is based on the data
209 recently read, rather than the average speed of the entire download.
210 The ETA projection is still based on the overall average.
211
212 ** It is now possible to connect to FTP servers through FWTK
213 firewalls.  Set ftp_proxy to an FTP URL, and Wget will automatically
214 log on to the proxy as "username@host".
215
216 ** The new option `--retry-connrefused' makes Wget retry downloads
217 even in the face of refused connections, which are otherwise
218 considered a fatal error.
219
220 ** The new option `--no-dns-cache' may be used to prevent Wget from
221 caching DNS lookups.
222
223 ** Wget no longer escapes characters in local file names based on
224 whether they're appropriate in URLs.  Escaping can still occur for
225 nonprintable characters or for '/', but no longer for frequent
226 characters such as space.  You can use the new option
227 --restrict-file-names to relax or strengthen these rules, which can be
228 useful if you dislike the default or if you're downloading to
229 non-native partitions.
230
231 ** Handling of HTML comments has been dumbed down to conform to what
232 users expect and other browsers do: instead of being treated as SGML
233 declaration, a comment is terminated at the first occurrence of "-->".
234 Use `--strict-comments' to revert to the old behavior.
235
236 ** Wget now correctly handles relative URIs that begin with "//", such
237 as "//img.foo.com/foo.jpg".
238
239 ** Boolean options in `.wgetrc' and on the command line now accept
240 values "yes" and "no" along with the traditional "on" and "off".
241
242 ** It is now possible to specify decimal values for timeouts, waiting
243 periods, and download rate.  For instance, `--wait=0.5' now works as
244 expected, as does `--dns-timeout=0.5' and even `--limit-rate=2.5k'.
245 \f
246 * Wget 1.8.2 is a bugfix release with no user-visible changes.
247 \f
248 * Wget 1.8.1 is a bugfix release with no user-visible changes.
249 \f
250 * Changes in Wget 1.8.
251
252 ** A new progress indicator is now available and used by default.
253 You can choose the progress bar type with `--progress=TYPE'.  Two
254 types are available, "bar" (the new default), and "dot" (the old
255 dotted indicator).  You can permanently revert to the old progress
256 indicator by putting `progress = dot' in your `.wgetrc'.
257
258 ** You can limit the download rate of the retrieval using the
259 `--limit-rate' option.  For example, `wget --limit-rate=15k URL' will
260 tell Wget not to download the body of the URL faster than 15 kilobytes
261 per second.
262
263 ** Recursive retrieval and link conversion have been revamped:
264
265 *** Wget now traverses links breadth-first.  This makes the
266 calculation of depth much more reliable than before.  Also, recursive
267 downloads are faster and consume *significantly* less memory than
268 before.
269
270 *** Links are converted only when the entire retrieval is complete.
271 This is the only safe thing to do, as only then is it known what URLs
272 have been downloaded.
273
274 *** BASE tags are handled correctly when converting links.  Since Wget
275 already resolves <base href="..."> when resolving handling URLs, link
276 conversion now makes the BASE tags point to an empty string.
277
278 *** HTML anchors are now handled correctly.  Links to an anchor in the
279 same document (<a href="#anchorname">), which used to confuse Wget,
280 are now converted correctly.
281
282 *** When in page-requisites (-p) mode, no-parent (-np) is ignored when
283 retrieving for inline images, stylesheets, and other documents needed
284 to display the page.
285
286 *** Page-requisites (-p) mode now works with frames.  In other words,
287 `wget -p URL-THAT-USES-FRAMES' will now download the frame HTML files,
288 and all the files that they need to be displayed properly.
289
290 ** `--base' now works conjunction with `--input-file', providing a
291 base for each URL and thereby allowing the URLs in the file to be
292 relative.
293
294 ** If a host has more than one IP address, Wget uses the other
295 addresses when accessing the first one fails.
296
297 ** Host directories now contain port information if the URL is at a
298 non-standard port.
299
300 ** Wget now supports the robots.txt directives specified in
301 <http://www.robotstxt.org/wc/norobots-rfc.txt>.
302
303 ** URL parser has been fixed, especially the infamous overzealous
304 quoting.  Wget no longer dequotes reserved characters, e.g. `%3F' is
305 no longer translated to `?', nor `%2B' to `+'.  Unsafe characters
306 which are not reserved are still escaped, of course.
307
308 ** No more than 20 successive redirections are allowed.
309 \f
310 * Wget 1.7.1 is a bugfix release with no user-visible changes.
311 \f
312 * Changes in Wget 1.7.
313
314 ** SSL (`https') pages now work if you compile Wget with SSL support;
315 use the `--with-ssl' configure flag.  You need to have OpenSSL
316 installed.
317
318 ** Cookies are now supported.  Wget will accept cookies sent by the
319 server and return them in later requests.  Additionally, it can load
320 and save cookies to disk, in the same format that Netscape uses.
321
322 ** "Keep-alive" (persistent) HTTP connections are now supported.
323 Using keep-alive allows Wget to share one TCP/IP connection for
324 many retrievals, making multiple-file downloads faster and less
325 stressing for the server and the network.
326
327 ** Wget now recognizes FTP directory listings generated by NT and VMS
328 servers.
329
330 ** It is now possible to recurse through FTP sites where logging in
331 puts you in some directory other than '/'.
332
333 ** You may now use `~' to mean home directory in `.wgetrc'.  For
334 example, `load_cookies = ~/.netscape/cookies.txt' works as you would
335 expect.
336
337 ** The HTML parser has been rewritten.  The new one works more
338 reliably, allows finer-grained control over which tags and attributes
339 are detected, and has better support for some features like correctly
340 skipping comments and declarations, decoding entities, etc.  It is
341 also more general.
342
343 ** <meta name="robots"> tags are now respected.
344
345 ** Wget's internal tables now use hash tables instead of linked lists
346 where appropriate.  This results in huge speedups when retrieving
347 large sites (thousands of documents).
348
349 ** Wget now has a man page, automatically generated from the Texinfo
350 documentation.  (The last version that shipped with a man page was
351 1.4.5).  To get this, you need to have pod2man from the Perl
352 distribution installed on your system.
353 \f
354 * Changes in Wget 1.6
355
356 ** Administrative changes.
357
358 *** Maintainership.  Due to Hrvoje being plagued with a "real job",
359 Dan Harkless is the most active maintainer (not that he doesn't have a
360 real job as well).  Hrvoje still participates occasionally, and both
361 are being helped by many other people.
362
363 *** Web page.  Thanks to Jan Prikryl, Wget has an "official" web page.
364 Take a look at:
365
366     http://sunsite.dk/wget/
367
368 *** Anonymous CVS.  Thanks to ever-helpful Karsten Thygesen, Wget
369 sources are now available at an anonymous CVS server.  Take a look at
370 the web page for downloading instructions.
371
372 ** New -K / --backup-converted / backup_converted = on option causes files
373 modified due to -k to be saved with a .orig prefix before being changed.  When
374 using -N as well, it is these .orig files that are compared against the server.
375
376 ** New --follow-tags / follow_tags = ... option allows you to restrict
377 Wget to following only certain HTML tags when doing a recursive
378 retrieval.  -G / --ignore-tags / ignore_tags = ... is just the
379 opposite -- all tags but the ones you specify will be followed.
380
381 ** New --waitretry / waitretry = SECONDS option allows waiting between retries
382 of failed downloads.  Wget will use "linear" backoff, waiting 1 second after the
383 first failure, 2 after the second, up to SECONDS.  waitretry is set to 10 by
384 default in the system wgetrc.
385
386 ** New -p / --page-requisites / page_requisites = on option causes
387 Wget to download all ancillary files necessary to display a given HTML
388 page properly (e.g. inlined images).
389
390 ** New -E / --html-extension / html_extension = on option causes Wget
391 to append ".html" to text/html filenames not ending in regexp
392 "\.[Hh][Tt][Mm][Ll]?".
393
394 ** New type of .wgetrc command -- "lockable Boolean".  Can be set to on, off,
395 always, or never.  This allows the .wgetrc to override the commandline.  So far,
396 passive_ftp is the only .wgetrc command which takes a lockable Boolean.
397
398 ** A number of new translation files have been added.
399
400 ** New --bind-address / bind_address = <address> option for people on hosts 
401 bound to multiple IP addresses.
402
403 ** wget now accepts (illegal per HTTP spec) relative URLs in HTTP redirects.
404 \f
405 * Wget 1.5.3 is a bugfix release with no user-visible changes.
406 \f
407 * Wget 1.5.2 is a bugfix release with no user-visible changes.
408 \f
409 * Wget 1.5.1 is a bugfix release with no user-visible changes.
410 \f
411 * Changes in Wget 1.5.0
412
413 ** Wget speaks many languages!
414
415 On systems with gettext(), Wget will output messages in the language
416 set by the current locale, if available.  At this time we support
417 Czech, German, Croatian, Italian, Norwegian and Portuguese.
418
419 ** Opie (Skey) is now supported with FTP.
420
421 ** HTTP Digest Access Authentication (RFC2069) is now supported.
422
423 ** The new `-b' option makes Wget go to background automatically.
424
425 ** The `-I' and `-X' options now accept wildcard arguments.
426
427 ** The `-w' option now accepts suffixes `s' for seconds, `m' for
428 minutes, `h' for hours, `d' for days and `w' for weeks.
429
430 ** Upon getting SIGHUP, the whole previous log is now copied to
431 `wget-log'.
432
433 ** Wget now understands proxy settings with explicit usernames and
434 passwords, e.g. `http://user:password@proxy.foo.com/'.
435
436 ** You can use the new `--cut-dirs' option to make Wget create less
437 directories.
438
439 ** The `;type=a' appendix to FTP URLs is now recognized.  For
440 instance, the following command will retrieve the welcoming message in
441 ASCII type transfer:
442
443     wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
444
445 ** `--help' and `--version' options have been redone to to conform to
446 standards set by other GNU utilities.
447
448 ** Wget should now be compilable under MS Windows environment.  MS
449 Visual C++ and Watcom C have been used successfully.
450
451 ** If the file length is known, percentages are displayed during
452 download.
453
454 ** The manual page, now hopelessly out of date, is no longer
455 distributed with Wget.
456 \f
457 * Wget 1.4.5 is a bugfix release with no user-visible changes.
458 \f
459 * Wget 1.4.4 is a bugfix release with no user-visible changes.
460 \f
461 * Changes in Wget 1.4.3
462
463 ** Wget is now a GNU utility.
464
465 ** Can do passive FTP.
466
467 ** Reads .netrc.
468
469 ** Info documentation expanded.
470
471 ** Compiles on pre-ANSI compilers.
472
473 ** Global wgetrc now goes to /usr/local/etc (i.e. $sysconfdir).
474
475 ** Lots of bugfixes.
476 \f
477 * Changes in Wget 1.4.2
478
479 ** New mirror site at ftp://sunsite.auc.dk/pub/infosystems/wget/,
480 thanks to Karsten Thygesen.
481
482 ** Mailing list!  Mail to wget-request@sunsite.auc.dk to subscribe.
483
484 ** New option --delete-after for proxy prefetching.
485
486 ** New option --retr-symlinks to retrieve symbolic links like plain
487 files.
488
489 ** rmold.pl -- script to remove files deleted on the remote server
490
491 ** --convert-links should work now.
492
493 ** Minor bugfixes.
494 \f
495 * Changes in Wget 1.4.1
496
497 ** Minor bugfixes.
498
499 ** Added -I (the opposite of -X).
500
501 ** Dot tracing is now customizable; try wget --dot-style=binary
502 \f
503 * Changes in Wget 1.4.0
504
505 ** Wget 1.4.0 [formerly known as Geturl] is an extensive rewrite of
506 Geturl.  Although many things look suspiciously similar, most of the
507 stuff was rewritten, like recursive retrieval, HTTP, FTP and mostly
508 everything else.  Wget should be now easier to debug, maintain and,
509 most importantly, use.
510
511 ** Recursive HTTP should now work without glitches, even with Location
512 changes, server-generated directory listings and other naughty stuff.
513
514 ** HTTP regetting is supported on servers that support Range
515 specification. WWW authorization is supported -- try
516 wget http://user:password@hostname/
517
518 ** FTP support was rewritten and widely enhanced. Globbing should now
519 work flawlessly. Symbolic links are created locally. All the
520 information the Unix-style ls listing can give is now recognized.
521
522 ** Recursive FTP is supported, e.g.
523     wget -r ftp://gnjilux.cc.fer.hr/pub/unix/util/
524
525 ** You can specify "rejected" directories, to which you do not want to
526 enter, e.g. with wget -X /pub
527
528 ** Time-stamping is supported, with both HTTP and FTP. Try wget -N URL.
529
530 ** A new texinfo reference manual is provided.  It can be read with
531 Emacs, standalone info, or converted to HTML, dvi or postscript.
532
533 ** Fixed a long-standing bug, so that Wget now works over SLIP
534 connections.
535
536 ** You can have a system-wide wgetrc (/usr/local/lib/wgetrc by
537 default). Settings in $HOME/.wgetrc override the global ones, of
538 course :-)
539
540 ** You can set up quota in .wgetrc to prevent sucking too much
541 data. Try `quota = 5M' in .wgetrc (or quota = 100K if you want your
542 sysadmin to like you).
543
544 ** Download rate is printed after retrieval.
545
546 ** Wget now sends the `Referer' header when retrieving
547 recursively.
548
549 ** With the new --no-parent option Wget can retrieve FTP recursively
550 through a proxy server.
551
552 ** HTML parser, as well as the whole of Wget was rewritten to be much
553 faster and less memory-consuming (yes, both).
554
555 ** Absolute links can be converted to relative links locally. Check
556 wget -k.
557
558 ** Wget catches hangup, filtering the output to a log file and
559 resuming work. Try kill -HUP %?wget.
560
561 ** User-defined headers can be sent.  Try
562
563     wget http://fly.cc.her.hr/ --header='Accept-Charset: iso-8859-2'
564
565 ** Acceptance/Rejection lists may contain wildcards.
566
567 ** Wget can display HTTP headers and/or FTP server response with the
568 new `-S' option.  It can save the original HTTP headers with `-s'.
569
570 ** socks library is now supported (thanks to Antonio Rosella
571 <Antonio.Rosella@agip.it>). Configure with --with-socks.
572
573 ** There is a nicer display of REST-ed output.
574
575 ** Many new options (like -x to force directory hierarchy, or -m to
576 turn on mirroring options).
577
578 ** Wget is now distributed under GNU General Public License (GPL).
579
580 ** Lots of small features I can't remember. :-)
581
582 ** A host of bugfixes.
583 \f
584 * Changes in Geturl 1.3
585
586 ** Added FTP globbing support (ftp://fly.cc.fer.hr/*)
587
588 ** Added support for no_proxy
589
590 ** Added support for ftp://user:password@host/
591
592 ** Added support for %xx in URL syntax
593
594 ** More natural command-line options
595
596 ** Added -e switch to execute .geturlrc commands from the command-line
597
598 ** Added support for robots.txt
599
600 ** Fixed some minor bugs
601 \f
602 * Geturl 1.2 is a bugfix release with no user-visible changes.
603 \f
604 * Changes in Geturl 1.1
605
606 ** REST supported in FTP
607
608 ** Proxy servers supported
609
610 ** GNU getopt used, which enables command-line arguments to be ordered
611 as you wish, e.g.  geturl http://fly.cc.fer.hr/ -vo log is the same as
612 geturl -vo log http://fly.cc.fer.hr/
613
614 ** Netscape-compatible URL syntax for HTTP supported: host[:port]/dir/file
615
616 ** NcFTP-compatible colon URL syntax for FTP supported: host:/dir/file
617
618 ** <base href="xxx"> supported
619
620 ** autoconf supported
621 \f
622 ----------------------------------------------------------------------
623 Copyright information:
624
625 Copyright (C) 1997-2005 Free Software Foundation, Inc.
626
627    Permission is granted to anyone to make or distribute verbatim
628    copies of this document as received, in any medium, provided that
629    the copyright notice and this permission notice are preserved, thus
630    giving the recipient permission to redistribute in turn.
631
632    Permission is granted to distribute modified versions of this
633    document, or of portions of it, under the above conditions,
634    provided also that they carry prominent notices stating who last
635    changed them.