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