- texi2pod doesn't handle texinfo xref's. rewrite some lines so that the

man page doesn't have incomplete sentences anymore (#140470)
This commit is contained in:
Karsten Hopp 2005-02-01 14:27:16 +00:00
parent d7007651ba
commit fc24214e9f
2 changed files with 63 additions and 1 deletions

View File

@ -0,0 +1,56 @@
--- wget-1.9.1/doc/wget.texi.syntax 2005-02-01 14:44:03.436977752 +0100
+++ wget-1.9.1/doc/wget.texi 2005-02-01 15:19:16.236783360 +0100
@@ -437,8 +437,6 @@
which case @samp{-d} will not work. Please note that compiling with
debug support is always safe---Wget compiled with the debug support will
@emph{not} print any debug info unless requested with @samp{-d}.
-@xref{Reporting Bugs}, for more information on how to use @samp{-d} for
-sending bug reports.
@cindex quiet
@item -q
@@ -786,7 +784,7 @@
Turn proxy support on or off. The proxy is on by default if the
appropriate environment variable is defined.
-For more information about the use of proxies with Wget, @xref{Proxies}.
+@xref{Proxies}, for more information about the use of proxies with Wget.
@cindex quota
@item -Q @var{quota}
@@ -976,8 +974,7 @@
really important, do not leave them lying in those files either---edit
the files and delete them after Wget has started the download.
-For more information about security issues with Wget, @xref{Security
-Considerations}.
+@xref{Security Considerations}, for more information about security issues with Wget.
@cindex proxy
@cindex cache
@@ -1479,7 +1476,8 @@
@item -A @var{acclist} --accept @var{acclist}
@itemx -R @var{rejlist} --reject @var{rejlist}
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}).
@item -D @var{domain-list}
@itemx --domains=@var{domain-list}
@@ -1537,13 +1535,13 @@
@item -I @var{list}
@itemx --include-directories=@var{list}
Specify a comma-separated list of directories you wish to follow when
-downloading (@pxref{Directory-Based Limits} for more details.) Elements
+downloading. (@pxref{Directory-Based Limits}) Elements
of @var{list} may contain wildcards.
@item -X @var{list}
@itemx --exclude-directories=@var{list}
Specify a comma-separated list of directories you wish to exclude from
-download (@pxref{Directory-Based Limits} for more details.) Elements of
+download. (@pxref{Directory-Based Limits}) Elements of
@var{list} may contain wildcards.
@item -np

View File

@ -1,7 +1,7 @@
Summary: A utility for retrieving files using the HTTP or FTP protocols.
Name: wget
Version: 1.9.1
Release: 19
Release: 20
License: GPL
Group: Applications/Internet
Url: http://wget.sunsite.dk/
@ -16,6 +16,7 @@ Patch5: wget-1.9.1-path.patch
Patch6: wget-1.9.1-LFS.patch
Patch7: wget-1.9.1-protdir.patch
Patch8: wget-1.9.1-actime.patch
Patch9: wget-1.9.1-docsyntax.patch
Provides: webclient
Prereq: /sbin/install-info
BuildRequires: perl, openssl-devel, pkgconfig, texinfo, gettext, autoconf
@ -40,6 +41,7 @@ support for Proxy servers, and configurability.
%patch6 -p1
%patch7 -p1
%patch8 -p1
%patch9 -p1
cp %{SOURCE2} $RPM_BUILD_DIR/wget-%{version}/po/ko.po
@ -79,6 +81,10 @@ rm -rf $RPM_BUILD_ROOT
%{_infodir}/*
%changelog
* Tue Feb 01 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-20
- texi2pod doesn't handle texinfo xref's. rewrite some lines so that
the man page doesn't have incomplete sentences anymore (#140470)
* Mon Jan 31 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-19
- Don't set actime to access time of the remote file or tmpwatch might
remove the file again (#146440). Set it to the current time instead.