RE: Looking for 1.9.1 user manual

2008-04-02 Thread Kevin.Low
I've looked through both wget-1.9.1.tar.gz and wget-1.9.tar.gz and do
not see a user manual. An example of what I'm calling a user manual is
at http://www.gnu.org/software/wget/manual/wget.html for 1.11.1, but I
do not see previous versions available there.  Is there another place I
can look?

Please cc me as I'm not on the mailing list.

Thanks,
Kevin


-Original Message-
From: Steven M. Schweda [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 01, 2008 7:11 PM
To: WGET@sunsite.dk
Cc: Kevin Low
Subject: Re: Looking for 1.9.1 user manual

From: Kevin.Low

 What I'm looking for today is simply, the 1.9.1 user manual.  [...]

   Do you seek anything which is not part of the usual source kit(s), as
seen, for example, at:

  http://ftp.gnu.org/gnu/wget/

?  (Pick a version, any version...)



   Steven M. Schweda   [EMAIL PROTECTED]
   382 South Warwick Street(+1) 651-699-9818
   Saint Paul  MN  55105-2547


Re: Looking for 1.9.1 user manual

2008-04-02 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

[EMAIL PROTECTED] wrote:
 I've looked through both wget-1.9.1.tar.gz and wget-1.9.tar.gz and do
 not see a user manual. An example of what I'm calling a user manual is
 at http://www.gnu.org/software/wget/manual/wget.html for 1.11.1, but I
 do not see previous versions available there.  Is there another place I
 can look?

All source tarballs come with the texinfo user manual, which is the
usual documentation format for GNU projects. If you go visit the doc/
source directory, and have GNU Info installed, you can simply run:

  info ./wget.info

to access the manual (if you've never used info before, you might want
to run info info first).

Alternatively, you can generate the HTML documentation, if you have
texi2html installed (you may be able to obtain it from your OS vendor,
or else in source form from texi2html.cvshome.org). To do this, go to
the Wget source directory and do:

  ./configure
  cd doc  make wget_toc.html

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer,
and GNU Wget Project Maintainer.
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFH87I97M8hyUobTrERAl7nAJ9PlQ8kFPnCCVL82V4mTUVOfwX8PACeKjpv
jPhgzN/l3D47XzdlPv85ZYI=
=MMmn
-END PGP SIGNATURE-


FW: Looking for 1.9.1 user manual

2008-04-02 Thread Kevin.Low
I downloaded and FTP'd, and untarred/expanded both of these:
wget-1.9.tar.gz
texi2html-1.78.zip

They created directories, 
/home/portal/klow/wget-1.9
/home/portal/klow/texi2html-1.78

I ran ./configure in each one of them, then tried the make

$ cd wget-1.9/doc
$ make wget_toc.html
texi2html -expandinfo -split_chapter ./wget.texi
Make: Cannot load texi2html.  Stop.
*** Error exit code 1

# I added the texi2html directory to the PATH...
$ PATH=$PATH:home/portal/klow/texi2html-1.78
$ make... (same error)

In my texi2html-1.78 directory there are these similarly named files:
texi2html.init
texi2html.pl
texi2html.spec
texi2html.spec.in
texi2html_configured.pl

Is the make file trying to find one of them?  Or what is the make
program trying to find when it says cannot load texi2html?

I'm not on the mailing list - please cc me.

Thanks,
Kevin


-Original Message-
From: Micah Cowan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 02, 2008 11:20 AM
To: Kevin Low
Cc: Wget
Subject: Re: Looking for 1.9.1 user manual

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

[EMAIL PROTECTED] wrote:
 I've looked through both wget-1.9.1.tar.gz and wget-1.9.tar.gz and do 
 not see a user manual. An example of what I'm calling a user manual 
 is at http://www.gnu.org/software/wget/manual/wget.html for 1.11.1, 
 but I do not see previous versions available there.  Is there another 
 place I can look?

All source tarballs come with the texinfo user manual, which is the
usual documentation format for GNU projects. If you go visit the doc/
source directory, and have GNU Info installed, you can simply run:

  info ./wget.info

to access the manual (if you've never used info before, you might want
to run info info first).

Alternatively, you can generate the HTML documentation, if you have
texi2html installed (you may be able to obtain it from your OS vendor,
or else in source form from texi2html.cvshome.org). To do this, go to
the Wget source directory and do:

  ./configure
  cd doc  make wget_toc.html

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer, and GNU Wget
Project Maintainer.
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFH87I97M8hyUobTrERAl7nAJ9PlQ8kFPnCCVL82V4mTUVOfwX8PACeKjpv
jPhgzN/l3D47XzdlPv85ZYI=
=MMmn
-END PGP SIGNATURE-


Re: FW: Looking for 1.9.1 user manual

2008-04-02 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

[EMAIL PROTECTED] wrote:
 I downloaded and FTP'd, and untarred/expanded both of these:
 wget-1.9.tar.gz
 texi2html-1.78.zip
 
 They created directories, 
 /home/portal/klow/wget-1.9
 /home/portal/klow/texi2html-1.78
 
 I ran ./configure in each one of them, then tried the make

snip

 Is the make file trying to find one of them?  Or what is the make
 program trying to find when it says cannot load texi2html?

It means you don't have texi2html installed where it can find it: I
included a link to where it can be found in my previous message.

It also appears that you might have to do a make all in the doc
directory before make wget_toc.html will work (otherwise it will
complain about a certain missing file).

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer,
and GNU Wget Project Maintainer.
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFH8+ru7M8hyUobTrERApGIAJ0YMbqpAj0iFf/TEGSbcsTFL+MzowCfRzxq
bYB6mtP/SZQUzbBcirq6AAc=
=oIRr
-END PGP SIGNATURE-


Looking for 1.9.1 user manual

2008-04-01 Thread Kevin.Low
I have wget 1.9.1 and I've been through the need to upgrade with several
of you already.  I am not in control of the upgrade process, and they
are waiting on several other factors that have little to do with me.
So, for the time being I'm stuck with 1.9.1.
 
What I'm looking for today is simply, the 1.9.1 user manual.  Anyone
have a copy they can forward to me?  I have the 1.10 user manual and
have been using that in lieu of 1.9.1 or 1.9.  
 
Please cc me as I am not a member of the forum.  Please also let the
forum know, so that others will know that you have sent me a copy,
should there be a number of you that can fulfill my request.
 
Thanks much,
Kevin
 
 


Re: Looking for 1.9.1 user manual

2008-04-01 Thread Steven M. Schweda
From: Kevin.Low

 What I'm looking for today is simply, the 1.9.1 user manual.  [...]

   Do you seek anything which is not part of the usual source kit(s), as
seen, for example, at:

  http://ftp.gnu.org/gnu/wget/

?  (Pick a version, any version...)



   Steven M. Schweda   [EMAIL PROTECTED]
   382 South Warwick Street(+1) 651-699-9818
   Saint Paul  MN  55105-2547