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