summaryrefslogtreecommitdiffstats
path: root/handbook/tools/poky-docbook-to-pdf
diff options
context:
space:
mode:
Diffstat (limited to 'handbook/tools/poky-docbook-to-pdf')
-rwxr-xr-xhandbook/tools/poky-docbook-to-pdf45
1 files changed, 45 insertions, 0 deletions
diff --git a/handbook/tools/poky-docbook-to-pdf b/handbook/tools/poky-docbook-to-pdf
new file mode 100755
index 0000000000..8e3d7542f7
--- /dev/null
+++ b/handbook/tools/poky-docbook-to-pdf
@@ -0,0 +1,45 @@
1#!/bin/sh
2
3if [ -z "$1" -o -z "$2" ]; then
4 echo "usage: [-v] $0 <docbook file> <templatedir>"
5 echo
6 echo "*NOTE* you need xsltproc, fop and nwalsh docbook stylesheets"
7 echo " installed for this to work!"
8 echo
9 exit 0
10fi
11
12BASENAME=`basename $1 .xml` || exit 1
13FO="$BASENAME.fo"
14PDF="$BASENAME.pdf"
15TEMPLATEDIR=$2
16
17##
18# These URI should be rewritten by your distribution's xml catalog to
19# match your localy installed XSL stylesheets.
20XSL_BASE_URI="http://docbook.sourceforge.net/release/xsl/current"
21
22xsltproc -o /tmp/titlepage.xsl \
23 --xinclude \
24 $XSL_BASE_URI/template/titlepage.xsl \
25 $TEMPLATEDIR/titlepage.templates.xml || exit 1
26
27xsltproc --xinclude \
28 --stringparam hyphenate false \
29 --stringparam formal.title.placement "figure after" \
30 --stringparam ulink.show 1 \
31 --stringparam body.font.master 9 \
32 --stringparam title.font.master 11 \
33 --stringparam draft.watermark.image "$TEMPLATEDIR/draft.png" \
34 --output $FO \
35 $TEMPLATEDIR/poky-db-pdf.xsl \
36 $1 || exit 1
37
38fop -c $TEMPLATEDIR/fop-config.xml -fo $FO -pdf $PDF || exit 1
39
40rm -f $FO
41rm -f /tmp/titlepage.xsl
42
43echo
44echo " #### Success! $PDF ready. ####"
45echo