Young Joo Pintaske wrote:
> Polish I18n/L10n Community has translated ZFS Administration Guide and
> is in the process of reviewing the translations. They were asking
> whether there is a tool to convert the XML files to PDF. Any pointers
> would be helpful. Thank you.
I believe the typical process involves converting from XML to XML-FO
using DocBook XSL and then XML-FO to PDF using Apache fop. The
former is part of recent builds of Solaris whereas the latter is not.
I use the following to generate pdf:
$ xsltproc --xinclude -o mydoc.fo \
http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl \
mydoc.xml
$ path/to/fop mydoc.fo -pdf mydoc.pdf
Also, check out the Documentation community page on opensolaris.org.
They have some helpful material and links on their "Documentation
Tools" page.
Dave