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