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