]> sjero.net Git - wget/blob - NEWS
[svn] Mention the 1.9.1 release.
[wget] / NEWS
1 GNU Wget NEWS -- history of user-visible changes.
2
3 Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 See the end for copying conditions.
5
6 Please send GNU Wget bug reports to <bug-wget@gnu.org>.
7 \f
8 * Changes in Wget 1.9+.
9
10 ** IPv6 is now supported by Wget.  Unlike the experimental code in
11 1.9, this version has no problems with dual-family systems.  The new
12 flags `--inet4' and `--inet6' (or `-4' and `-6' for short) force the
13 use of IPv4 and IPv6 respectively.
14
15 ** The progress bar is now updated regularly even when the data does
16 not arrive.
17
18 ** Wget no longer preserves permissions of files retrieved by FTP by
19 default.  Anonymous FTP servers frequently use permissions like "664",
20 which might not be what the user wants.  The new option
21 `--preserve-permissions' and the corresponding `.wgetrc' variable can
22 be used to revert to the old behavior.
23
24 ** Many options that previously unconditionally set or unset various
25 flags are now boolean options that can be invoked as either `--OPTION'
26 or `--no-OPTION'.  Options that required an argument "on" or "off"
27 have also been changed this way, but they still accept the old syntax
28 for backward compatibility.  For example, instead of `--glob=off' you
29 can write `--no-glob'.
30
31 Allowing `--no-OPTION' for every `--OPTION' is useful because it
32 allows the user to override non-default behavior specified via
33 `.wgetrc'.
34
35 ** The new option `--keep-session-cookies' causes `--save-cookies' to
36 save session cookies along with the permanent ones.  This is useful on
37 sites that require you to log in before you can access some pages.
38 With this option, multiple Wget runs will be treated as a single
39 browser session.
40 \f
41 * Wget 1.9.1 is a bugfix release with no user-visible changes.
42 \f
43 * Changes in Wget 1.9.
44
45 ** It is now possible to specify that POST method be used for HTTP
46 requests.  For example, `wget --post-data="id=foo&data=bar" URL' will
47 send a POST request with the specified contents.
48
49 ** IPv6 support is available, although it's still experimental.
50
51 ** The `--timeout' option now also affects DNS lookup and establishing
52 the TCP connection.  Previously it only affected reading and writing
53 data.  Those three timeouts can be set separately using
54 `--dns-timeout', `--connection-timeout', and `--read-timeout',
55 respectively.
56
57 ** Download speed shown by the progress bar is based on the data
58 recently read, rather than the average speed of the entire download.
59 The ETA projection is still based on the overall average.
60
61 ** It is now possible to connect to FTP servers through FWTK
62 firewalls.  Set ftp_proxy to an FTP URL, and Wget will automatically
63 log on to the proxy as "username@host".
64
65 ** The new option `--retry-connrefused' makes Wget retry downloads
66 even in the face of refused connections, which are otherwise
67 considered a fatal error.
68
69 ** The new option `--dns-cache=off' may be used to prevent Wget from
70 caching DNS lookups.
71
72 ** Wget no longer escapes characters in local file names based on
73 whether they're appropriate in URLs.  Escaping can still occur for
74 nonprintable characters or for '/', but no longer for frequent
75 characters such as space.  You can use the new option
76 --restrict-file-names to relax or strengthen these rules, which can be
77 useful if you dislike the default or if you're downloading to
78 non-native partitions.
79
80 ** Handling of HTML comments has been dumbed down to conform to what
81 users expect and other browsers do: instead of being treated as SGML
82 declaration, a comment is terminated at the first occurrence of "-->".
83 Use `--strict-comments' to revert to the old behavior.
84
85 ** Wget now correctly handles relative URIs that begin with "//", such
86 as "//img.foo.com/foo.jpg".
87
88 ** Boolean options in `.wgetrc' and on the command line now accept
89 values "yes" and "no" along with the traditional "on" and "off".
90
91 ** It is now possible to specify decimal values for timeouts, waiting
92 periods, and download rate.  For instance, `--wait=0.5' now works as
93 expected, as does `--dns-timeout=0.5' and even `--limit-rate=2.5k'.
94 \f
95 * Wget 1.8.2 is a bugfix release with no user-visible changes.
96 \f
97 * Wget 1.8.1 is a bugfix release with no user-visible changes.
98 \f
99 * Changes in Wget 1.8.
100
101 ** A new progress indicator is now available and used by default.
102 You can choose the progress bar type with `--progress=TYPE'.  Two
103 types are available, "bar" (the new default), and "dot" (the old
104 dotted indicator).  You can permanently revert to the old progress
105 indicator by putting `progress = dot' in your `.wgetrc'.
106
107 ** You can limit the download rate of the retrieval using the
108 `--limit-rate' option.  For example, `wget --limit-rate=15k URL' will
109 tell Wget not to download the body of the URL faster than 15 kilobytes
110 per second.
111
112 ** Recursive retrieval and link conversion have been revamped:
113
114 *** Wget now traverses links breadth-first.  This makes the
115 calculation of depth much more reliable than before.  Also, recursive
116 downloads are faster and consume *significantly* less memory than
117 before.
118
119 *** Links are converted only when the entire retrieval is complete.
120 This is the only safe thing to do, as only then is it known what URLs
121 have been downloaded.
122
123 *** BASE tags are handled correctly when converting links.  Since Wget
124 already resolves <base href="..."> when resolving handling URLs, link
125 conversion now makes the BASE tags point to an empty string.
126
127 *** HTML anchors are now handled correctly.  Links to an anchor in the
128 same document (<a href="#anchorname">), which used to confuse Wget,
129 are now converted correctly.
130
131 *** When in page-requisites (-p) mode, no-parent (-np) is ignored when
132 retrieving for inline images, stylesheets, and other documents needed
133 to display the page.
134
135 *** Page-requisites (-p) mode now works with frames.  In other words,
136 `wget -p URL-THAT-USES-FRAMES' will now download the frame HTML files,
137 and all the files that they need to be displayed properly.
138
139 ** `--base' now works conjunction with `--input-file', providing a
140 base for each URL and thereby allowing the URLs in the file to be
141 relative.
142
143 ** If a host has more than one IP address, Wget uses the other
144 addresses when accessing the first one fails.
145
146 ** Host directories now contain port information if the URL is at a
147 non-standard port.
148
149 ** Wget now supports the robots.txt directives specified in
150 <http://www.robotstxt.org/wc/norobots-rfc.txt>.
151
152 ** URL parser has been fixed, especially the infamous overzealous
153 quoting.  Wget no longer dequotes reserved characters, e.g. `%3F' is
154 no longer translated to `?', nor `%2B' to `+'.  Unsafe characters
155 which are not reserved are still escaped, of course.
156
157 ** No more than 20 successive redirections are allowed.
158 \f
159 * Wget 1.7.1 is a bugfix release with no user-visible changes.
160 \f
161 * Changes in Wget 1.7.
162
163 ** SSL (`https') pages now work if you compile Wget with SSL support;
164 use the `--with-ssl' configure flag.  You need to have OpenSSL
165 installed.
166
167 ** Cookies are now supported.  Wget will accept cookies sent by the
168 server and return them in later requests.  Additionally, it can load
169 and save cookies to disk, in the same format that Netscape uses.
170
171 ** "Keep-alive" (persistent) HTTP connections are now supported.
172 Using keep-alive allows Wget to share one TCP/IP connection for
173 many retrievals, making multiple-file downloads faster and less
174 stressing for the server and the network.
175
176 ** Wget now recognizes FTP directory listings generated by NT and VMS
177 servers.
178
179 ** It is now possible to recurse through FTP sites where logging in
180 puts you in some directory other than '/'.
181
182 ** You may now use `~' to mean home directory in `.wgetrc'.  For
183 example, `load_cookies = ~/.netscape/cookies.txt' works as you would
184 expect.
185
186 ** The HTML parser has been rewritten.  The new one works more
187 reliably, allows finer-grained control over which tags and attributes
188 are detected, and has better support for some features like correctly
189 skipping comments and declarations, decoding entities, etc.  It is
190 also more general.
191
192 ** <meta name="robots"> tags are now respected.
193
194 ** Wget's internal tables now use hash tables instead of linked lists
195 where appropriate.  This results in huge speedups when retrieving
196 large sites (thousands of documents).
197
198 ** Wget now has a man page, automatically generated from the Texinfo
199 documentation.  (The last version that shipped with a man page was
200 1.4.5).  To get this, you need to have pod2man from the Perl
201 distribution installed on your system.
202 \f
203 * Changes in Wget 1.6
204
205 ** Administrative changes.
206
207 *** Maintainership.  Due to Hrvoje being plagued with a "real job",
208 Dan Harkless is the most active maintainer (not that he doesn't have a
209 real job as well).  Hrvoje still participates occasionally, and both
210 are being helped by many other people.
211
212 *** Web page.  Thanks to Jan Prikryl, Wget has an "official" web page.
213 Take a look at:
214
215     http://sunsite.dk/wget/
216
217 *** Anonymous CVS.  Thanks to ever-helpful Karsten Thygesen, Wget
218 sources are now available at an anonymous CVS server.  Take a look at
219 the web page for downloading instructions.
220
221 ** New -K / --backup-converted / backup_converted = on option causes files
222 modified due to -k to be saved with a .orig prefix before being changed.  When
223 using -N as well, it is these .orig files that are compared against the server.
224
225 ** New --follow-tags / follow_tags = ... option allows you to restrict
226 Wget to following only certain HTML tags when doing a recursive
227 retrieval.  -G / --ignore-tags / ignore_tags = ... is just the
228 opposite -- all tags but the ones you specify will be followed.
229
230 ** New --waitretry / waitretry = SECONDS option allows waiting between retries
231 of failed downloads.  Wget will use "linear" backoff, waiting 1 second after the
232 first failure, 2 after the second, up to SECONDS.  waitretry is set to 10 by
233 default in the system wgetrc.
234
235 ** New -p / --page-requisites / page_requisites = on option causes
236 Wget to download all ancillary files necessary to display a given HTML
237 page properly (e.g. inlined images).
238
239 ** New -E / --html-extension / html_extension = on option causes Wget
240 to append ".html" to text/html filenames not ending in regexp
241 "\.[Hh][Tt][Mm][Ll]?".
242
243 ** New type of .wgetrc command -- "lockable Boolean".  Can be set to on, off,
244 always, or never.  This allows the .wgetrc to override the commandline.  So far,
245 passive_ftp is the only .wgetrc command which takes a lockable Boolean.
246
247 ** A number of new translation files have been added.
248
249 ** New --bind-address / bind_address = <address> option for people on hosts 
250 bound to multiple IP addresses.
251
252 ** wget now accepts (illegal per HTTP spec) relative URLs in HTTP redirects.
253 \f
254 * Wget 1.5.3 is a bugfix release with no user-visible changes.
255 \f
256 * Wget 1.5.2 is a bugfix release with no user-visible changes.
257 \f
258 * Wget 1.5.1 is a bugfix release with no user-visible changes.
259 \f
260 * Changes in Wget 1.5.0
261
262 ** Wget speaks many languages!
263
264 On systems with gettext(), Wget will output messages in the language
265 set by the current locale, if available.  At this time we support
266 Czech, German, Croatian, Italian, Norwegian and Portuguese.
267
268 ** Opie (Skey) is now supported with FTP.
269
270 ** HTTP Digest Access Authentication (RFC2069) is now supported.
271
272 ** The new `-b' option makes Wget go to background automatically.
273
274 ** The `-I' and `-X' options now accept wildcard arguments.
275
276 ** The `-w' option now accepts suffixes `s' for seconds, `m' for
277 minutes, `h' for hours, `d' for days and `w' for weeks.
278
279 ** Upon getting SIGHUP, the whole previous log is now copied to
280 `wget-log'.
281
282 ** Wget now understands proxy settings with explicit usernames and
283 passwords, e.g. `http://user:password@proxy.foo.com/'.
284
285 ** You can use the new `--cut-dirs' option to make Wget create less
286 directories.
287
288 ** The `;type=a' appendix to FTP URLs is now recognized.  For
289 instance, the following command will retrieve the welcoming message in
290 ASCII type transfer:
291
292     wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
293
294 ** `--help' and `--version' options have been redone to to conform to
295 standards set by other GNU utilities.
296
297 ** Wget should now be compilable under MS Windows environment.  MS
298 Visual C++ and Watcom C have been used successfully.
299
300 ** If the file length is known, percentages are displayed during
301 download.
302
303 ** The manual page, now hopelessly out of date, is no longer
304 distributed with Wget.
305 \f
306 * Wget 1.4.5 is a bugfix release with no user-visible changes.
307 \f
308 * Wget 1.4.4 is a bugfix release with no user-visible changes.
309 \f
310 * Changes in Wget 1.4.3
311
312 ** Wget is now a GNU utility.
313
314 ** Can do passive FTP.
315
316 ** Reads .netrc.
317
318 ** Info documentation expanded.
319
320 ** Compiles on pre-ANSI compilers.
321
322 ** Global wgetrc now goes to /usr/local/etc (i.e. $sysconfdir).
323
324 ** Lots of bugfixes.
325 \f
326 * Changes in Wget 1.4.2
327
328 ** New mirror site at ftp://sunsite.auc.dk/pub/infosystems/wget/,
329 thanks to Karsten Thygesen.
330
331 ** Mailing list!  Mail to wget-request@sunsite.auc.dk to subscribe.
332
333 ** New option --delete-after for proxy prefetching.
334
335 ** New option --retr-symlinks to retrieve symbolic links like plain
336 files.
337
338 ** rmold.pl -- script to remove files deleted on the remote server
339
340 ** --convert-links should work now.
341
342 ** Minor bugfixes.
343 \f
344 * Changes in Wget 1.4.1
345
346 ** Minor bugfixes.
347
348 ** Added -I (the opposite of -X).
349
350 ** Dot tracing is now customizable; try wget --dot-style=binary
351 \f
352 * Changes in Wget 1.4.0
353
354 ** Wget 1.4.0 [formerly known as Geturl] is an extensive rewrite of
355 Geturl.  Although many things look suspiciously similar, most of the
356 stuff was rewritten, like recursive retrieval, HTTP, FTP and mostly
357 everything else.  Wget should be now easier to debug, maintain and,
358 most importantly, use.
359
360 ** Recursive HTTP should now work without glitches, even with Location
361 changes, server-generated directory listings and other naughty stuff.
362
363 ** HTTP regetting is supported on servers that support Range
364 specification. WWW authorization is supported -- try
365 wget http://user:password@hostname/
366
367 ** FTP support was rewritten and widely enhanced. Globbing should now
368 work flawlessly. Symbolic links are created locally. All the
369 information the Unix-style ls listing can give is now recognized.
370
371 ** Recursive FTP is supported, e.g.
372     wget -r ftp://gnjilux.cc.fer.hr/pub/unix/util/
373
374 ** You can specify "rejected" directories, to which you do not want to
375 enter, e.g. with wget -X /pub
376
377 ** Time-stamping is supported, with both HTTP and FTP. Try wget -N URL.
378
379 ** A new texinfo reference manual is provided.  It can be read with
380 Emacs, standalone info, or converted to HTML, dvi or postscript.
381
382 ** Fixed a long-standing bug, so that Wget now works over SLIP
383 connections.
384
385 ** You can have a system-wide wgetrc (/usr/local/lib/wgetrc by
386 default). Settings in $HOME/.wgetrc override the global ones, of
387 course :-)
388
389 ** You can set up quota in .wgetrc to prevent sucking too much
390 data. Try `quota = 5M' in .wgetrc (or quota = 100K if you want your
391 sysadmin to like you).
392
393 ** Download rate is printed after retrieval.
394
395 ** Wget now sends the `Referer' header when retrieving
396 recursively.
397
398 ** With the new --no-parent option Wget can retrieve FTP recursively
399 through a proxy server.
400
401 ** HTML parser, as well as the whole of Wget was rewritten to be much
402 faster and less memory-consuming (yes, both).
403
404 ** Absolute links can be converted to relative links locally. Check
405 wget -k.
406
407 ** Wget catches hangup, filtering the output to a log file and
408 resuming work. Try kill -HUP %?wget.
409
410 ** User-defined headers can be sent.  Try
411
412     wget http://fly.cc.her.hr/ --header='Accept-Charset: iso-8859-2'
413
414 ** Acceptance/Rejection lists may contain wildcards.
415
416 ** Wget can display HTTP headers and/or FTP server response with the
417 new `-S' option.  It can save the original HTTP headers with `-s'.
418
419 ** socks library is now supported (thanks to Antonio Rosella
420 <Antonio.Rosella@agip.it>). Configure with --with-socks.
421
422 ** There is a nicer display of REST-ed output.
423
424 ** Many new options (like -x to force directory hierarchy, or -m to
425 turn on mirroring options).
426
427 ** Wget is now distributed under GNU General Public License (GPL).
428
429 ** Lots of small features I can't remember. :-)
430
431 ** A host of bugfixes.
432 \f
433 * Changes in Geturl 1.3
434
435 ** Added FTP globbing support (ftp://fly.cc.fer.hr/*)
436
437 ** Added support for no_proxy
438
439 ** Added support for ftp://user:password@host/
440
441 ** Added support for %xx in URL syntax
442
443 ** More natural command-line options
444
445 ** Added -e switch to execute .geturlrc commands from the command-line
446
447 ** Added support for robots.txt
448
449 ** Fixed some minor bugs
450 \f
451 * Geturl 1.2 is a bugfix release with no user-visible changes.
452 \f
453 * Changes in Geturl 1.1
454
455 ** REST supported in FTP
456
457 ** Proxy servers supported
458
459 ** GNU getopt used, which enables command-line arguments to be ordered
460 as you wish, e.g.  geturl http://fly.cc.fer.hr/ -vo log is the same as
461 geturl -vo log http://fly.cc.fer.hr/
462
463 ** Netscape-compatible URL syntax for HTTP supported: host[:port]/dir/file
464
465 ** NcFTP-compatible colon URL syntax for FTP supported: host:/dir/file
466
467 ** <base href="xxx"> supported
468
469 ** autoconf supported
470 \f
471 ----------------------------------------------------------------------
472 Copyright information:
473
474 Copyright (C) 1997, 1998, 2000, 2001, 2003 Free Software Foundation, Inc.
475
476    Permission is granted to anyone to make or distribute verbatim
477    copies of this document as received, in any medium, provided that
478    the copyright notice and this permission notice are preserved, thus
479    giving the recipient permission to redistribute in turn.
480
481    Permission is granted to distribute modified versions of this
482    document, or of portions of it, under the above conditions,
483    provided also that they carry prominent notices stating who last
484    changed them.