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