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