summaryrefslogtreecommitdiffstats
path: root/documentation/tools
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/tools')
-rwxr-xr-xdocumentation/tools/poky-docbook-to-pdf45
1 files changed, 45 insertions, 0 deletions
diff --git a/documentation/tools/poky-docbook-to-pdf b/documentation/tools/poky-docbook-to-pdf
new file mode 100755
index 0000000000..aa221c02bc
--- /dev/null
+++ b/documentation/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
12FO=`echo $1 | sed s/.xml/.fo/` || exit 1
13PDF=`echo $1 | sed s/.xml/.pdf/` || exit 1
14TEMPLATEDIR=$2
15
16##
17# These URI should be rewritten by your distribution's xml catalog to
18# match your localy installed XSL stylesheets.
19XSL_BASE_URI="http://docbook.sourceforge.net/release/xsl/current"
20
21xsltproc -o /tmp/titlepage.xsl \
22 --xinclude \
23 $XSL_BASE_URI/template/titlepage.xsl \
24 $TEMPLATEDIR/titlepage.templates.xml || exit 1
25
26xsltproc --xinclude \
27 --stringparam hyphenate false \
28 --stringparam formal.title.placement "figure after" \
29 --stringparam ulink.show 1 \
30 --stringparam body.font.master 9 \
31 --stringparam title.font.master 11 \
32 --stringparam draft.watermark.image "$TEMPLATEDIR/draft.png" \
33 --output $FO \
34 $TEMPLATEDIR/poky-db-pdf.xsl \
35 $1 || exit 1
36
37echo fop -c $TEMPLATEDIR/fop-config.xml -fo $FO -pdf $PDF || exit 1
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