Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Peter Eisentraut
Am Montag, 22. November 2004 22:23 schrieb Tom Lane: Um ... what's an htmlhelp? It's the kind of format the Windows'ish programs use for their internal help browsers. It consists of regular HTML plus some index files. pgAdmin needs it, and maybe the Windows binary package would like it as

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Peter Eisentraut
Am Montag, 22. November 2004 18:34 schrieb Andreas Pflug: The attached Makefile patch together with stylesheet-hh.xsl allows make htmlhelp. stylesheet-hh.xsl is derived from stylesheet.xsl, after some advise from PeterE. Installed. -- Peter Eisentraut http://developer.postgresql.org/~petere/

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Tom Lane
Peter Eisentraut [EMAIL PROTECTED] writes: Am Montag, 22. November 2004 18:34 schrieb Andreas Pflug: The attached Makefile patch together with stylesheet-hh.xsl allows make htmlhelp. stylesheet-hh.xsl is derived from stylesheet.xsl, after some advise from PeterE. Installed. It would be nice

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Magnus Hagander
The attached Makefile patch together with stylesheet-hh.xsl allows make htmlhelp. stylesheet-hh.xsl is derived from stylesheet.xsl, after some advise from PeterE. Installed. From what I can tell, this XSL will download and import another XSL from docbook.sourceforge.net every time you run

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Andrew Dunstan
Magnus Hagander wrote: From what I can tell, this XSL will download and import another XSL from docbook.sourceforge.net every time you run make on it. Perhaps a copy of this file should be included in cvs to make sure we can still build when sourceforge is down? Using xsl:import here is not a

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Peter Eisentraut
Magnus Hagander wrote: From what I can tell, this XSL will download and import another XSL from docbook.sourceforge.net every time you run make on it. Normally, you or your operating system should set up an XML catalog that maps that URI to a local copy. For example, my system has

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Magnus Hagander
From what I can tell, this XSL will download and import another XSL from docbook.sourceforge.net every time you run make on it. Normally, you or your operating system should set up an XML catalog that maps that URI to a local copy. For example, my system has /etc/xml/catalog: ... Hmm. Never

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Peter Eisentraut
Magnus Hagander wrote: Hmm. Never seen that in any of the XSL systems I've used. There is certainly no such system in the XSLT processors that are included in Windows these days. I don't know what's included in Windows, but all the usual ones you can download from the net support XML

Re: [PATCHES] htmlhelp generation

2004-11-23 Thread Christopher Kings-Lynne
Um ... what's an htmlhelp? It's the kind of format the Windows'ish programs use for their internal help browsers. It consists of regular HTML plus some index files. pgAdmin needs it, and maybe the Windows binary package would like it as well. I've trivially generated them from docbook xml

[PATCHES] htmlhelp generation

2004-11-22 Thread Andreas Pflug
The attached Makefile patch together with stylesheet-hh.xsl allows make htmlhelp. stylesheet-hh.xsl is derived from stylesheet.xsl, after some advise from PeterE. The result isn't perfect, but quite usable. Regards, Andreas Index: Makefile

Re: [PATCHES] htmlhelp generation

2004-11-22 Thread Tom Lane
Andreas Pflug [EMAIL PROTECTED] writes: The attached Makefile patch together with stylesheet-hh.xsl allows make htmlhelp. stylesheet-hh.xsl is derived from stylesheet.xsl, after some advise from PeterE. Um ... what's an htmlhelp? regards, tom lane