Re: OpenBSD 4.3 FAQ in PDF?

2008-07-29 Thread Nick Holland
my mail wrote:
 i don't have 24 hours connection at home, and want read FAQ OpenBSD 4.3 in 
 PDF format.
 
 in this address i can read 4.3 FAQ http://openbsd.org/faq/index.html
 but when i try to download from pub/OpenBSD/doc at FTP mirrors, this FAQ for 
 4.2 version not for 4.3
 
 where i can download 4.3 FAQ in PDF format?
 
 thx

I've put up a 4.3 version of the FAQ in PDF and text formats a
day or two ago, it's out on the mirrors now, the PF user's guide
was just uploaded, so give it a day or so to reach your favorite
mirror.

I still wonder if the occasional people asking for PDFs are
actually from Adobe, trying to make people think people actually
LIKE reading documents in PDF format.  The idea is not bad, but
the readers suck (in my opinion, of course).

Personally, I'd suggest checking out the www/ tree to your local
machine, then pointing your browser at the checkout.  That way,
when you find an error, correct it, do a cvs diff -u, send
it to us, and make things better. :)

However, to each their own.  That's why I spin the PDFs.  It's
a pain, that's why I spin 'em rarely. :)

Nick.



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-29 Thread my mail
-- On Wed, 7/30/08, Nick Holland [EMAIL PROTECTED] wrote:

 From: Nick Holland [EMAIL PROTECTED]
 Subject: Re: OpenBSD 4.3 FAQ in PDF?

 I've put up a 4.3 version of the FAQ in PDF and text
 formats a
 day or two ago, it's out on the mirrors now, the PF
 user's guide
 was just uploaded, so give it a day or so to reach your
 favorite
 mirror.
 
 I still wonder if the occasional people asking for PDFs are
 actually from Adobe, trying to make people think people
 actually
 LIKE reading documents in PDF format.  The idea is not bad,
 but
 the readers suck (in my opinion, of course).
 
 Personally, I'd suggest checking out the www/ tree to
 your local
 machine, then pointing your browser at the checkout.  That
 way,
 when you find an error, correct it, do a cvs diff
 -u, send
 it to us, and make things better. :)
 
 However, to each their own.  That's why I spin the
 PDFs.  It's
 a pain, that's why I spin 'em rarely. :)
 
 Nick.

hi Nick, thx for you great work, really apreciate that.
Yes I know, Adobe reader is to slow and to much memory usage, but i like read 
using XPDF no Adobe Reader

thanks again for this PDF



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-23 Thread Stuart Henderson
On 2008-07-23, my mail [EMAIL PROTECTED] wrote:
 --- On Tue, 7/22/08, Nick Guenther [EMAIL PROTECTED] wrote:

 From: Nick Guenther [EMAIL PROTECTED]
 Subject: Re: OpenBSD 4.3 FAQ in PDF?
 
 It looks like it doesn't exist right now. Why don't
 you just download
 all the FAQ pages?
 for i in 1 2 3 4 5 6 7 8 9; do
   ftp http://openbsd.org/faq/faq0${i}.html
 done
 for i in 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq${i}.html
 done

 hi all thx for help

 but it's litle mistake from this command, it must be

 ftp http://openbsd.org/faq/faq${i}.html

Use http://www.openbsd.org/ or a mirror, please.

This thread got a bit silly long so I didn't read all of it, but
didn't anyone suggest using anoncvs to pull the www repository?
It's a good way to get a copy for offline reading and you can
update it easily.

http://www.openbsd.org/anoncvs.html, use www instead of src.



Re: [SOLVED]OpenBSD 4.3 FAQ in PDF (Download html and convert using pisa)

2008-07-23 Thread Amarendra Godbole
On Wed, Jul 23, 2008 at 9:35 AM, my mail [EMAIL PROTECTED] wrote:
 after search with keywords html to pdf i got this 
 http://www.htmltopdf.org/download.html,
 using pisa i have been able build from faq1.html-faq15.html into .pdf format 
 with internal links, so if you convert this html with pisa, i open pdf with 
 xpdf, and i can using internal link in pdf document.
[...]

I'd still suggest you stick with the html pages, as the FAQ is a fast
moving target (especially as the release date comes close), and there
are many times corrections too. And I am pretty sure that any system
that lets you read pdfs', would also help you read htmls' ;-)

-Amarendra



OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread my mail
i don't have 24 hours connection at home, and want read FAQ OpenBSD 4.3 in PDF 
format.

in this address i can read 4.3 FAQ http://openbsd.org/faq/index.html
but when i try to download from pub/OpenBSD/doc at FTP mirrors, this FAQ for 
4.2 version not for 4.3

where i can download 4.3 FAQ in PDF format?

thx



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Nick Guenther
On Tue, Jul 22, 2008 at 4:18 AM, my mail [EMAIL PROTECTED] wrote:
 i don't have 24 hours connection at home, and want read FAQ OpenBSD 4.3 in 
 PDF format.

 in this address i can read 4.3 FAQ http://openbsd.org/faq/index.html
 but when i try to download from pub/OpenBSD/doc at FTP mirrors, this FAQ for 
 4.2 version not for 4.3

 where i can download 4.3 FAQ in PDF format?

 thx

It looks like it doesn't exist right now. Why don't you just download
all the FAQ pages?
for i in 1 2 3 4 5 6 7 8 9; do
  ftp http://openbsd.org/faq/faq0${i}.html
done
for i in 10 11 12 13 14 15; do
  ftp http://openbsd.org/faq/faq${i}.html
done



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Julian Frede
 It looks like it doesn't exist right now. Why don't you just download
 all the FAQ pages?
 for i in 1 2 3 4 5 6 7 8 9; do
   ftp http://openbsd.org/faq/faq0${i}.html
 done
 for i in 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq${i}.html
 done
 
Wouldn't it be simpler to be done in one loop?

for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
ftp http://openbsd.org/faq/faq${i}.html
done
ftp http://openbsd.org/faq/index.html

But I'm just thinking about tools like wget or curl?! Though they are
AFAIK not in the base-system.
BTW: Cc-ing to the list messes up some MUAs reply-to-list functionality.
Thank you for not doing this anymore.

--Julian 



-- 
Fortune of the hour:
To be or not to be.
-- Shakespeare
To do is to be.
-- Nietzsche
To be is to do.
-- Sartre
Do be do be do.
-- Sinatra



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Daniel A. Ramaley
On Tuesday July 22 2008 09:04, you wrote:
 for i in 1 2 3 4 5 6 7 8 9; do
   ftp http://openbsd.org/faq/faq0${i}.html
 done
 for i in 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq${i}.html
 done

Wouldn't it be simpler to be done in one loop?

for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq${i}.html
done
ftp http://openbsd.org/faq/index.html

Note that the 2 loops are not the same. You'd need:

for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
ftp http://openbsd.org/faq/faq`printf %02d $i`.html
done

The number list could be collapsed into `seq 1 15` on a system with seq 
installed.


Dan RamaleyDial Center 118, Drake University
Network Programmer/Analyst 2407 Carpenter Ave
+1 515 271-4540Des Moines IA 50311 USA



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Julian Frede
  Wouldn't it be simpler to be done in one loop?
 Oh, yes it would. I was thinking about fixed width fields. I have so
 many nightmares about them and shell scripts since I don't know how to
 deal with them there that I didn't notice the FAQ isn't numbered with
 them.
 
Tell me about it. ;-)

  But I'm just thinking about tools like wget or curl?! Though they are
  AFAIK not in the base-system.
 
 yeah, I had wget there at first until I remembered. :)
 
  BTW: Cc-ing to the list messes up some MUAs reply-to-list functionality.
  Thank you for not doing this anymore.
 
 
 Or: Thank you for fixing your buggy mailer.

Sorry for that, someone was stepping on my nerves before and I must have
projected it on to you. 
You know how that sometimes is. 

BTW: I fixed that mailer now.


--Julian 
-- 
Fortune of the hour:
You teach best what you most need to learn.



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Julian Frede
 Note that the 2 loops are not the same. You'd need:
 
 for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq`printf %02d $i`.html
 done
No you don't. Check the actual files. It's faq1.html to faq15.html

 The number list could be collapsed into `seq 1 15` on a system with seq 
 installed.
Wright. But if we had something installed. We could have used wget.


--Julian
-- 
Fortune of the hour:
You teach best what you most need to learn.



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Will Maier
On Tue, Jul 22, 2008 at 09:32:15AM -0500, Daniel A. Ramaley wrote:
 The number list could be collapsed into `seq 1 15` on a system
 with seq installed.

Have you met jot(1)?

-- 

o--{ Will Maier }--o
| web:...http://www.lfod.us/ | [EMAIL PROTECTED] |
*-[ BSD: Live Free or Die ]*



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Hannah Schroeter
Hi!

On Tue, Jul 22, 2008 at 09:32:15AM -0500, Daniel A. Ramaley wrote:
On Tuesday July 22 2008 09:04, you wrote:
 for i in 1 2 3 4 5 6 7 8 9; do
   ftp http://openbsd.org/faq/faq0${i}.html
 done
 for i in 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq${i}.html
 done

Wouldn't it be simpler to be done in one loop?

for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
  ftp http://openbsd.org/faq/faq${i}.html
done
ftp http://openbsd.org/faq/index.html

Note that the 2 loops are not the same. You'd need:

for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq`printf %02d $i`.html
done

The number list could be collapsed into `seq 1 15` on a system with seq 
installed.

jot(1) helps.

$ jot 15 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$ jot -w%02d 15 1
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
$ 

Kind regards,

Hannah.



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread Nick Guenther
On Tue, Jul 22, 2008 at 10:58 AM, Hannah Schroeter [EMAIL PROTECTED] wrote:
 Hi!

 jot(1) helps.

 $ jot 15 1
 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 $ jot -w%02d 15 1
 01
 02
 03
 04
 05
 06
 07
 08
 09
 10
 11
 12
 13
 14
 15
 $

 Kind regards,


! magic
Thank you so much. I had no idea this existed.
-Nick



Re: OpenBSD 4.3 FAQ in PDF?

2008-07-22 Thread my mail
--- On Tue, 7/22/08, Nick Guenther [EMAIL PROTECTED] wrote:

 From: Nick Guenther [EMAIL PROTECTED]
 Subject: Re: OpenBSD 4.3 FAQ in PDF?
 
 It looks like it doesn't exist right now. Why don't
 you just download
 all the FAQ pages?
 for i in 1 2 3 4 5 6 7 8 9; do
   ftp http://openbsd.org/faq/faq0${i}.html
 done
 for i in 10 11 12 13 14 15; do
   ftp http://openbsd.org/faq/faq${i}.html
 done

hi all thx for help

but it's litle mistake from this command, it must be

ftp http://openbsd.org/faq/faq${i}.html

not ftp http://openbsd.org/faq/faq0${i}.html
because the full link is
http://openbsd.org/faq/faq1.html not http://openbsd.org/faq/faq01.html

thanks, i have been able to download this html for offline viewer :)


regards



[SOLVED]OpenBSD 4.3 FAQ in PDF (Download html and convert using pisa)

2008-07-22 Thread my mail
  From: Nick Guenther [EMAIL PROTECTED]
  Subject: Re: OpenBSD 4.3 FAQ in PDF?
 
  It looks like it doesn't exist right now. Why
 don't
  you just download
  all the FAQ pages?
  for i in 1 2 3 4 5 6 7 8 9; do
ftp http://openbsd.org/faq/faq0${i}.html
  done
  for i in 10 11 12 13 14 15; do
ftp http://openbsd.org/faq/faq${i}.html
  done

 hi all thx for help

 but it's litle mistake from this command, it must be

 ftp http://openbsd.org/faq/faq${i}.html

 not ftp http://openbsd.org/faq/faq0${i}.html
 because the full link is
 http://openbsd.org/faq/faq1.html not
 http://openbsd.org/faq/faq01.html

 thanks, i have been able to download this html for offline
 viewer :)


 regards

after search with keywords html to pdf i got this 
http://www.htmltopdf.org/download.html,
using pisa i have been able build from faq1.html-faq15.html into .pdf format 
with internal links, so if you convert this html with pisa, i open pdf with 
xpdf, and i can using internal link in pdf document.

but i got a weird result for index.html from faq, after convert, index.pdf has 
nothing, only blank page.

regards