mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Various documentation adjustments. AUTHORS <- Micah
This commit is contained in:
parent
6eb01fc2ce
commit
8419eed696
2
AUTHORS
2
AUTHORS
@ -40,3 +40,5 @@ Nicolas Schodet. Contributed to cookie code and documentation.
|
|||||||
|
|
||||||
Daniel Stenberg. NTLM authentication in http-ntlm.c and http-ntlm.h
|
Daniel Stenberg. NTLM authentication in http-ntlm.c and http-ntlm.h
|
||||||
originally written for curl donated for use in GNU Wget.
|
originally written for curl donated for use in GNU Wget.
|
||||||
|
|
||||||
|
Micah Cowan. Current Wget maintainer, from mid-2007.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2007-09-12 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* AUTHORS: Added... me...
|
||||||
|
|
||||||
2007-08-26 Micah Cowan <micah@cowan.name>
|
2007-08-26 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* po/POTFILES.in: Added spider.c.
|
* po/POTFILES.in: Added spider.c.
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2007-09-12 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* wget.texi: Expanded the description of -O. Clarified the
|
||||||
|
detection of elements as "patterns" versus "suffixes" in -A,
|
||||||
|
-R. Describe -p in relation to -nc.
|
||||||
|
|
||||||
2007-07-28 Micah Cowan <micah@cowan.name>
|
2007-07-28 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* wget.texi <HTTP Options>: Added --max-redirect option.
|
* wget.texi <HTTP Options>: Added --max-redirect option.
|
||||||
|
@ -548,8 +548,16 @@ is used as @var{file}, documents will be printed to standard output,
|
|||||||
disabling link conversion. (Use @samp{./-} to print to a file
|
disabling link conversion. (Use @samp{./-} to print to a file
|
||||||
literally named @samp{-}.)
|
literally named @samp{-}.)
|
||||||
|
|
||||||
Note that a combination with @samp{-k} is only well-defined for
|
Use of @samp{-O} is @emph{not} intended to mean simply ``use the name
|
||||||
downloading a single document.
|
@var{file} instead of the one in the URL;'' rather, it is
|
||||||
|
analogous to shell redirection:
|
||||||
|
@samp{wget -O file http://foo} is intended to work like
|
||||||
|
@samp{wget -O - http://foo > file}; @file{file} will be truncated
|
||||||
|
immediately, and @emph{all} downloaded content will be written there.
|
||||||
|
|
||||||
|
Note that a combination with @samp{-k} is only permitted when
|
||||||
|
downloading a single document, and combination with any of @samp{-r},
|
||||||
|
@samp{-p}, or @samp{-N} is not allowed.
|
||||||
|
|
||||||
@cindex clobbering, file
|
@cindex clobbering, file
|
||||||
@cindex downloading multiple times
|
@cindex downloading multiple times
|
||||||
@ -561,7 +569,7 @@ behavior depends on a few options, including @samp{-nc}. In certain
|
|||||||
cases, the local file will be @dfn{clobbered}, or overwritten, upon
|
cases, the local file will be @dfn{clobbered}, or overwritten, upon
|
||||||
repeated download. In other cases it will be preserved.
|
repeated download. In other cases it will be preserved.
|
||||||
|
|
||||||
When running Wget without @samp{-N}, @samp{-nc}, or @samp{-r},
|
When running Wget without @samp{-N}, @samp{-nc}, @samp{-r}, or @samp{p},
|
||||||
downloading the same file in the same directory will result in the
|
downloading the same file in the same directory will result in the
|
||||||
original copy of @var{file} being preserved and the second copy being
|
original copy of @var{file} being preserved and the second copy being
|
||||||
named @samp{@var{file}.1}. If that file is downloaded yet again, the
|
named @samp{@var{file}.1}. If that file is downloaded yet again, the
|
||||||
@ -573,17 +581,17 @@ clobbering that's prevented (as the numeric suffixes were already
|
|||||||
preventing clobbering), but rather the multiple version saving that's
|
preventing clobbering), but rather the multiple version saving that's
|
||||||
prevented.
|
prevented.
|
||||||
|
|
||||||
When running Wget with @samp{-r}, but without @samp{-N} or @samp{-nc},
|
When running Wget with @samp{-r} or @samp{-p}, but without @samp{-N}
|
||||||
re-downloading a file will result in the new copy simply overwriting the
|
or @samp{-nc}, re-downloading a file will result in the new copy
|
||||||
old. Adding @samp{-nc} will prevent this behavior, instead causing the
|
simply overwriting the old. Adding @samp{-nc} will prevent this
|
||||||
original version to be preserved and any newer copies on the server to
|
behavior, instead causing the original version to be preserved and any
|
||||||
be ignored.
|
newer copies on the server to be ignored.
|
||||||
|
|
||||||
When running Wget with @samp{-N}, with or without @samp{-r}, the
|
When running Wget with @samp{-N}, with or without @samp{-r} or
|
||||||
decision as to whether or not to download a newer copy of a file depends
|
@samp{-p}, the decision as to whether or not to download a newer copy
|
||||||
on the local and remote timestamp and size of the file
|
of a file depends on the local and remote timestamp and size of the
|
||||||
(@pxref{Time-Stamping}). @samp{-nc} may not be specified at the same
|
file (@pxref{Time-Stamping}). @samp{-nc} may not be specified at the
|
||||||
time as @samp{-N}.
|
same time as @samp{-N}.
|
||||||
|
|
||||||
Note that when @samp{-nc} is specified, files with the suffixes
|
Note that when @samp{-nc} is specified, files with the suffixes
|
||||||
@samp{.html} or @samp{.htm} will be loaded from the local disk and
|
@samp{.html} or @samp{.htm} will be loaded from the local disk and
|
||||||
@ -1799,7 +1807,10 @@ option to turn it on.
|
|||||||
@item -A @var{acclist} --accept @var{acclist}
|
@item -A @var{acclist} --accept @var{acclist}
|
||||||
@itemx -R @var{rejlist} --reject @var{rejlist}
|
@itemx -R @var{rejlist} --reject @var{rejlist}
|
||||||
Specify comma-separated lists of file name suffixes or patterns to
|
Specify comma-separated lists of file name suffixes or patterns to
|
||||||
accept or reject (@pxref{Types of Files} for more details).
|
accept or reject (@pxref{Types of Files} for more details). Note that if
|
||||||
|
any of the wildcard characters, @samp{*}, @samp{?}, @samp{[} or
|
||||||
|
@samp{]}, appear in an element of @var{acclist} or @var{rejlist},
|
||||||
|
it will be treated as a pattern, rather than a suffix.
|
||||||
|
|
||||||
@item -D @var{domain-list}
|
@item -D @var{domain-list}
|
||||||
@itemx --domains=@var{domain-list}
|
@itemx --domains=@var{domain-list}
|
||||||
|
Loading…
Reference in New Issue
Block a user