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