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