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