What is the recommended toolchain for formatting XML DocBook? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:42:23Zhttp://stackoverflow.com/feeds/question/122752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook5What is the recommended toolchain for formatting XML DocBook?Jonathan Leffler2008-09-23T18:17:20Z2009-05-18T19:19:59Z
<p>I've seen <a href="http://stackoverflow.com/questions/55622/best-tools-for-working-with-docbook-xml-documents">Best tools for working with DocBook XML documents</a>, but my question is slightly different. Which is the currently recommended formatting toolchain - as opposed to editing tool - for XML DocBook?</p>
<p>In Eric Raymond's <a href="http://rads.stackoverflow.com/amzn/click/0131429019" rel="nofollow">'The Art of Unix Programming'</a> from 2003 (an excellent book!), the suggestion is XML-FO (XML Formatting Objects), but I've since seen suggestions here that indicated that XML-FO is no longer under development (though I can no longer find that question on StackOverflow, so maybe it was erroneous).</p>
<p>Assume I'm primarily interested in Unix/Linux (including MacOS X), but I wouldn't automatically ignore Windows-only solutions.</p>
<p>Is <a href="http://xmlgraphics.apache.org/fop/" rel="nofollow">Apache's FOP</a> the best way to go? Are there any alternatives?</p>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/122791#1227911Answer by Jim for What is the recommended toolchain for formatting XML DocBook?Jim2008-09-23T18:24:11Z2008-09-23T18:24:11Z<p>A popular approach is to use <a href="http://docbook.sourceforge.net/" rel="nofollow">DocBook XSL Stylesheets</a>.</p>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/122922#1229225Answer by Gustavo Carreno for What is the recommended toolchain for formatting XML DocBook?Gustavo Carreno2008-09-23T18:40:46Z2008-09-24T17:44:57Z<p>I've been doing some manual writing with DocBook, under cygwin, to produce One Page HTML, Many Pages HTML, CHM and PDF.</p>
<p>I installed the following:</p>
<ol>
<li>The <a href="http://www.docbook.org" rel="nofollow">docbook</a> stylesheets (xsl) repository.</li>
<li>xmllint, to test if the xml is correct.</li>
<li>xsltproc, to process the xml with the style cheets.</li>
<li><a href="http://xmlgraphics.apache.org/fop/download.html" rel="nofollow">Apache's fop</a>, to produce PDF's.I make sure to add the installed folder to the PATH.</li>
<li>Microsoft's <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=00535334-c8a6-452f-9aa0-d597d16580cc&displaylang=en" rel="nofollow">HTML Help Workshop</a>, to produce CHM's. I make sure to add the installed folder to the PATH.</li>
</ol>
<p><strong>Edit</strong>: In the below code I'm using more than the 2 files. If someone wants a cleaned up version of the scripts and the folder structure, please contact me: guscarreno (squiggly/at) googlemail (period/dot) com</p>
<p>I then use a configure.in: </p>
<pre><code>AC_INIT(Makefile.in)
FOP=fop.sh
HHC=hhc
XSLTPROC=xsltproc
AC_ARG_WITH(fop, [ --with-fop Where to find Apache FOP],
[
if test "x$withval" != "xno"; then
FOP="$withval"
fi
]
)
AC_PATH_PROG(FOP, $FOP)
AC_ARG_WITH(hhc, [ --with-hhc Where to find Microsoft Help Compiler],
[
if test "x$withval" != "xno"; then
HHC="$withval"
fi
]
)
AC_PATH_PROG(HHC, $HHC)
AC_ARG_WITH(xsltproc, [ --with-xsltproc Where to find xsltproc],
[
if test "x$withval" != "xno"; then
XSLTPROC="$withval"
fi
]
)
AC_PATH_PROG(XSLTPROC, $XSLTPROC)
AC_SUBST(FOP)
AC_SUBST(HHC)
AC_SUBST(XSLTPROC)
HERE=`pwd`
AC_SUBST(HERE)
AC_OUTPUT(Makefile)
cat > config.nice <<EOT
#!/bin/sh
./configure \
--with-fop='$FOP' \
--with-hhc='$HHC' \
--with-xsltproc='$XSLTPROC' \
EOT
chmod +x config.nice
</code></pre>
<p>and a Makefile.in: </p>
<pre><code>FOP=@FOP@
HHC=@HHC@
XSLTPROC=@XSLTPROC@
HERE=@HERE@
# Subdirs that contain docs
DOCS=appendixes chapters reference
XML_CATALOG_FILES=./build/docbook-xsl-1.71.0/catalog.xml
export XML_CATALOG_FILES
all: entities.ent manual.xml html
clean:
@echo -e "\n=== Cleaning\n"
@-rm -f html/*.html html/HTML.manifest pdf/* chm/*.html chm/*.hhp chm/*.hhc chm/*.chm entities.ent .ent
@echo -e "Done.\n"
dist-clean:
@echo -e "\n=== Restoring defaults\n"
@-rm -rf .ent autom4te.cache config.* configure Makefile html/*.html html/HTML.manifest pdf/* chm/*.html chm/*.hhp chm/*.hhc chm/*.chm build/docbook-xsl-1.71.0
@echo -e "Done.\n"
entities.ent: ./build/mkentities.sh $(DOCS)
@echo -e "\n=== Creating entities\n"
@./build/mkentities.sh $(DOCS) > .ent
@if [ ! -f entities.ent ] || [ ! cmp entities.ent .ent ]; then mv .ent entities.ent ; fi
@echo -e "Done.\n"
# Build the docs in chm format
chm: chm/htmlhelp.hpp
@echo -e "\n=== Creating CHM\n"
@echo logo.png >> chm/htmlhelp.hhp
@echo arrow.gif >> chm/htmlhelp.hhp
@-cd chm && "$(HHC)" htmlhelp.hhp
@echo -e "Done.\n"
chm/htmlhelp.hpp: entities.ent build/docbook-xsl manual.xml build/chm.xsl
@echo -e "\n=== Creating input for CHM\n"
@"$(XSLTPROC)" --output ./chm/index.html ./build/chm.xsl manual.xml
# Build the docs in HTML format
html: html/index.html
html/index.html: entities.ent build/docbook-xsl manual.xml build/html.xsl
@echo -e "\n=== Creating HTML\n"
@"$(XSLTPROC)" --output ./html/index.html ./build/html.xsl manual.xml
@echo -e "Done.\n"
# Build the docs in PDF format
pdf: pdf/manual.fo
@echo -e "\n=== Creating PDF\n"
@"$(FOP)" ./pdf/manual.fo ./pdf/manual.pdf
@echo -e "Done.\n"
pdf/manual.fo: entities.ent build/docbook-xsl manual.xml build/pdf.xsl
@echo -e "\n=== Creating input for PDF\n"
@"$(XSLTPROC)" --output ./pdf/manual.fo ./build/pdf.xsl manual.xml
check: manual.xml
@echo -e "\n=== Checking correctness of manual\n"
@xmllint --valid --noout --postvalid manual.xml
@echo -e "Done.\n"
# need to touch the dir because the timestamp in the tarball
# is older than that of the tarball :)
build/docbook-xsl: build/docbook-xsl-1.71.0.tar.gz
@echo -e "\n=== Un-taring docbook-xsl\n"
@cd build && tar xzf docbook-xsl-1.71.0.tar.gz && touch docbook-xsl-1.71.0
</code></pre>
<p>to automate the production of the above mentioned file outputs.</p>
<p>I prefer to use a nix approach to the scripting just because the toolset is more easy to find and use, not to mention easier to chain.</p>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/123379#1233791Answer by Palmin for What is the recommended toolchain for formatting XML DocBook?Palmin2008-09-23T19:49:47Z2008-09-23T19:49:47Z<p>Regarding the question about Apache's FOP: when we established our toolchain (similar to what Gustavo has suggested) we had very good results using the <a href="http://www.renderx.com/tools/xep.html" rel="nofollow">RenderX XEP engine</a>. XEPs output looks a little bit more polished, and as far as I recall, FOP had some problems with tables (this was a few years ago though, this might have changed).</p>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/266134#2661341Answer by Dick for What is the recommended toolchain for formatting XML DocBook?Dick2008-11-05T18:24:54Z2008-11-05T18:24:54Z<p>The DocBook stylesheets, plus FOP, work well, but I finally decided to spring for RenderX, which covers the standard more thoroughly and has some nice extensions that the DocBook stylesheets take advantage of.</p>
<p>Bob Stayton's book, <a href="http://www.sagehill.net/index.html" rel="nofollow">DocBook XSL: The Complete Guide</a>, describes several alternate tool chains, including ones that work on Linux or Windows (almost surely MacOS, too, though I have not personally used a Mac).</p>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/875036#8750362Answer by Oliver Gierke for What is the recommended toolchain for formatting XML DocBook?Oliver Gierke2009-05-17T17:25:57Z2009-05-17T17:25:57Z<p>We use <a href="http://www.xmlmind.com/xmleditor/" rel="nofollow">XMLmind XmlEdit</a> for editing and Maven's <a href="http://docs.codehaus.org/display/MAVENUSER/Docbkx%2BMaven%2BPlugin" rel="nofollow">docbkx</a> plugin to create output during our builds. For a set of good templates take a look at the ones <a href="http://www.hibernate.org" rel="nofollow">Hibernate</a> or <a href="http://www.springframework.org" rel="nofollow">Spring</a> provide.</p>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/879318#8793183Answer by bortzmeyer for What is the recommended toolchain for formatting XML DocBook?bortzmeyer2009-05-18T19:19:59Z2009-05-18T19:19:59Z<p>For HTML output, I use the <a href="http://docbook.sourceforge.net/" rel="nofollow">Docbook XSL stylesheets</a> with the XSLT processor xsltproc.</p>
<p>For PDF output, I use <a href="http://dblatex.sourceforge.net/" rel="nofollow">dblatex</a>, which translates to LaTeX and then use pdflatex to compile it to PDF. (I used Jade, the DSSSL stylesheets and jadetex before.)</p>