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