2014-03-10 18:48:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# $Id: make.sh 5301 2014-03-10 18:46:28Z gruberroland $
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 Roland Gruber
|
|
|
|
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
|
|
|
|
|
|
|
# This script is run to create the LAM manual.
|
|
|
|
|
|
|
|
dir=`pwd`
|
|
|
|
|
|
|
|
rm -rf ../manual-onePage
|
|
|
|
mkdir ../manual-onePage
|
|
|
|
xsltproc -o ../manual-onePage/ --stringparam html.stylesheet.type text/css --stringparam html.stylesheet style.css /usr/share/xml/docbook/stylesheet/nwalsh/html/onechunk.xsl howto.xml
|
|
|
|
mkdir ../manual-onePage/images
|
|
|
|
cp images/*.png ../manual-onePage/images
|
|
|
|
mkdir ../manual-onePage/resources
|
|
|
|
cp resources/*.* ../manual-onePage/resources
|
|
|
|
cp style.css ../manual-onePage
|
|
|
|
|
|
|
|
rm -rf ../manual-pdf
|
|
|
|
mkdir ../manual-pdf
|
2014-03-10 19:12:06 +00:00
|
|
|
xsltproc -o ../manual-pdf/out.fo --stringparam paper.type "A4" --stringparam generate.toc "book toc,title,table,figure" --stringparam "body.start.indent" "0pt" /usr/share/xml/docbook/stylesheet/nwalsh/fo/docbook.xsl howto.xml
|
2014-03-10 18:48:31 +00:00
|
|
|
mkdir ../manual-pdf/images
|
|
|
|
for img in `ls images/*.png`; do
|
|
|
|
convert -density 96 $img ../manual-pdf/$img
|
|
|
|
done
|
|
|
|
cp images/schema_*.png ../manual-pdf/images/
|
|
|
|
mkdir ../manual-pdf/resources
|
|
|
|
cp resources/*.* ../manual-pdf/resources
|
|
|
|
cd ../manual-pdf
|
|
|
|
fop out.fo manual.pdf
|
|
|
|
|
|
|
|
|
|
|
|
cd $dir
|