⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 news

📁 wget (command line browser) source code
💻
📖 第 1 页 / 共 2 页
字号:
GNU Wget NEWS -- history of user-visible changes.Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.See the end for copying conditions.Please send GNU Wget bug reports to <bug-wget@gnu.org>.* Wget 1.9.1 is a bugfix release with no user-visible changes.* Changes in Wget 1.9.** It is now possible to specify that POST method be used for HTTPrequests.  For example, `wget --post-data="id=foo&data=bar" URL' willsend a POST request with the specified contents.** IPv6 support is available, although it's still experimental.** The `--timeout' option now also affects DNS lookup and establishingthe TCP connection.  Previously it only affected reading and writingdata.  Those three timeouts can be set separately using`--dns-timeout', `--connection-timeout', and `--read-timeout',respectively.** Download speed shown by the progress bar is based on the datarecently read, rather than the average speed of the entire download.The ETA projection is still based on the overall average.** It is now possible to connect to FTP servers through FWTKfirewalls.  Set ftp_proxy to an FTP URL, and Wget will automaticallylog on to the proxy as "username@host".** The new option `--retry-connrefused' makes Wget retry downloadseven in the face of refused connections, which are otherwiseconsidered a fatal error.** The new option `--dns-cache=off' may be used to prevent Wget fromcaching DNS lookups.** Wget no longer escapes characters in local file names based onwhether they're appropriate in URLs.  Escaping can still occur fornonprintable characters or for '/', but no longer for frequentcharacters such as space.  You can use the new option--restrict-file-names to relax or strengthen these rules, which can beuseful if you dislike the default or if you're downloading tonon-native partitions.** Handling of HTML comments has been dumbed down to conform to whatusers expect and other browsers do: instead of being treated as SGMLdeclaration, a comment is terminated at the first occurrence of "-->".Use `--strict-comments' to revert to the old behavior.** Wget now correctly handles relative URIs that begin with "//", suchas "//img.foo.com/foo.jpg".** Boolean options in `.wgetrc' and on the command line now acceptvalues "yes" and "no" along with the traditional "on" and "off".** It is now possible to specify decimal values for timeouts, waitingperiods, and download rate.  For instance, `--wait=0.5' now works asexpected, as does `--dns-timeout=0.5' and even `--limit-rate=2.5k'.* Wget 1.8.2 is a bugfix release with no user-visible changes.* Wget 1.8.1 is a bugfix release with no user-visible changes.* Changes in Wget 1.8.** A new progress indicator is now available and used by default.You can choose the progress bar type with `--progress=TYPE'.  Twotypes are available, "bar" (the new default), and "dot" (the olddotted indicator).  You can permanently revert to the old progressindicator by putting `progress = dot' in your `.wgetrc'.** You can limit the download rate of the retrieval using the`--limit-rate' option.  For example, `wget --limit-rate=15k URL' willtell Wget not to download the body of the URL faster than 15 kilobytesper second.** Recursive retrieval and link conversion have been revamped:*** Wget now traverses links breadth-first.  This makes thecalculation of depth much more reliable than before.  Also, recursivedownloads are faster and consume *significantly* less memory thanbefore.*** Links are converted only when the entire retrieval is complete.This is the only safe thing to do, as only then is it known what URLshave been downloaded.*** BASE tags are handled correctly when converting links.  Since Wgetalready resolves <base href="..."> when resolving handling URLs, linkconversion now makes the BASE tags point to an empty string.*** HTML anchors are now handled correctly.  Links to an anchor in thesame document (<a href="#anchorname">), which used to confuse Wget,are now converted correctly.*** When in page-requisites (-p) mode, no-parent (-np) is ignored whenretrieving for inline images, stylesheets, and other documents neededto display the page.*** Page-requisites (-p) mode now works with frames.  In other words,`wget -p URL-THAT-USES-FRAMES' will now download the frame HTML files,and all the files that they need to be displayed properly.** `--base' now works conjunction with `--input-file', providing abase for each URL and thereby allowing the URLs in the file to berelative.** If a host has more than one IP address, Wget uses the otheraddresses when accessing the first one fails.** Host directories now contain port information if the URL is at anon-standard port.** Wget now supports the robots.txt directives specified in<http://www.robotstxt.org/wc/norobots-rfc.txt>.** URL parser has been fixed, especially the infamous overzealousquoting.  Wget no longer dequotes reserved characters, e.g. `%3F' isno longer translated to `?', nor `%2B' to `+'.  Unsafe characterswhich are not reserved are still escaped, of course.** No more than 20 successive redirections are allowed.* Wget 1.7.1 is a bugfix release with no user-visible changes.* Changes in Wget 1.7.** SSL (`https') pages now work if you compile Wget with SSL support;use the `--with-ssl' configure flag.  You need to have OpenSSLinstalled.** Cookies are now supported.  Wget will accept cookies sent by theserver and return them in later requests.  Additionally, it can loadand save cookies to disk, in the same format that Netscape uses.** "Keep-alive" (persistent) HTTP connections are now supported.Using keep-alive allows Wget to share one TCP/IP connection formany retrievals, making multiple-file downloads faster and lessstressing for the server and the network.** Wget now recognizes FTP directory listings generated by NT and VMSservers.** It is now possible to recurse through FTP sites where logging inputs you in some directory other than '/'.** You may now use `~' to mean home directory in `.wgetrc'.  Forexample, `load_cookies = ~/.netscape/cookies.txt' works as you wouldexpect.** The HTML parser has been rewritten.  The new one works morereliably, allows finer-grained control over which tags and attributesare detected, and has better support for some features like correctlyskipping comments and declarations, decoding entities, etc.  It isalso more general.** <meta name="robots"> tags are now respected.** Wget's internal tables now use hash tables instead of linked listswhere appropriate.  This results in huge speedups when retrievinglarge sites (thousands of documents).** Wget now has a man page, automatically generated from the Texinfodocumentation.  (The last version that shipped with a man page was1.4.5).  To get this, you need to have pod2man from the Perldistribution installed on your system.* Changes in Wget 1.6** Administrative changes.*** Maintainership.  Due to Hrvoje being plagued with a "real job",Dan Harkless is the most active maintainer (not that he doesn't have areal job as well).  Hrvoje still participates occasionally, and bothare being helped by many other people.*** Web page.  Thanks to Jan Prikryl, Wget has an "official" web page.Take a look at:    http://sunsite.dk/wget/*** Anonymous CVS.  Thanks to ever-helpful Karsten Thygesen, Wgetsources are now available at an anonymous CVS server.  Take a look atthe web page for downloading instructions.** New -K / --backup-converted / backup_converted = on option causes filesmodified due to -k to be saved with a .orig prefix before being changed.  Whenusing -N as well, it is these .orig files that are compared against the server.** New --follow-tags / follow_tags = ... option allows you to restrictWget to following only certain HTML tags when doing a recursiveretrieval.  -G / --ignore-tags / ignore_tags = ... is just theopposite -- all tags but the ones you specify will be followed.** New --waitretry / waitretry = SECONDS option allows waiting between retriesof failed downloads.  Wget will use "linear" backoff, waiting 1 second after thefirst failure, 2 after the second, up to SECONDS.  waitretry is set to 10 bydefault in the system wgetrc.** New -p / --page-requisites / page_requisites = on option causesWget to download all ancillary files necessary to display a given HTMLpage properly (e.g. inlined images).** New -E / --html-extension / html_extension = on option causes Wgetto append ".html" to text/html filenames not ending in regexp"\.[Hh][Tt][Mm][Ll]?".** New type of .wgetrc command -- "lockable Boolean".  Can be set to on, off,always, or never.  This allows the .wgetrc to override the commandline.  So far,passive_ftp is the only .wgetrc command which takes a lockable Boolean.** A number of new translation files have been added.** New --bind-address / bind_address = <address> option for people on hosts bound to multiple IP addresses.** wget now accepts (illegal per HTTP spec) relative URLs in HTTP redirects.* Wget 1.5.3 is a bugfix release with no user-visible changes.* Wget 1.5.2 is a bugfix release with no user-visible changes.* Wget 1.5.1 is a bugfix release with no user-visible changes.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -