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