1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
#!/bin/sh
# --
# scripts/auto_build/docbuild.sh - build automatically OTRS docu
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: docbuild.sh,v 1.3 2005/10/25 18:51:35 martin Exp $
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# --
echo "docbuild.sh - build automatically OTRS docu <\$Revision: 1.3 $>"
echo "Copyright (c) 2001-2005 Martin Edenhofer <martin@otrs.org>"
PATH_TO_CVS_SRC=$1
PATH_TO_CVS_FRAMEWORK_SRC=$2
PACKAGE=OTRSDOC
PACKAGE_BUILD_DIR="/tmp/$PACKAGE-build"
PACKAGE_DEST_DIR="/tmp/$PACKAGE-package"
if ! test -e $PATH_TO_CVS_SRC; then
# --
# build src needed
# --
echo ""
echo "Usage: docbuild.sh <PATH_TO_CVS_SRC> <PATH_TO_CVS_FRAMEWORK_SRC>"
echo ""
echo " Try: docbuild.sh /home/ernie/src/otrs-doc /home/ernie/src/otrs-cvs"
echo ""
exit 1;
fi
if ! test -e $PATH_TO_CVS_FRAMEWORK_SRC; then
# --
# build src needed
# --
echo ""
echo "Usage: docbuild.sh <PATH_TO_CVS_SRC> <PATH_TO_CVS_FRAMEWORK_SRC>"
echo ""
echo " Try: docbuild.sh /home/ernie/src/otrs-doc /home/ernie/src/otrs-cvs"
echo ""
exit 1;
fi
# check dir
if ! test -e $PATH_TO_CVS_SRC/de; then
echo "Error: $PATH_TO_CVS_SRC is not OTRS CVS directory!"
exit 1;
fi
# cleanup build dir
rm -rf $PACKAGE_DEST_DIR
mkdir -p $PACKAGE_DEST_DIR/
for Language in en de; do
#for Language in de; do
# prepare build env
rm -rf $PACKAGE_BUILD_DIR || exit 1;
mkdir -p $PACKAGE_BUILD_DIR/ || exit 1;
cp -a $PATH_TO_CVS_SRC/* $PACKAGE_BUILD_DIR/ || exit 1;
# remove CVS stuff
find $PACKAGE_BUILD_DIR/ -name CVS | xargs rm -rf || exit 1;
# remove swap stuff
find -name ".#*" | xargs rm -rf
# build docu
mkdir $PACKAGE_BUILD_DIR/$Language/
cd $PACKAGE_BUILD_DIR/$Language/
# create all config params xml
$PATH_TO_CVS_FRAMEWORK_SRC/scripts/auto_build/xml2docbook.pl -l $Language > $PACKAGE_BUILD_DIR/$Language/all-config-parameters.xml
$PATH_TO_CVS_FRAMEWORK_SRC/scripts/tools/charset-convert.pl -s utf-8 -d iso-8859-1 -f $PACKAGE_BUILD_DIR/$Language/all-config-parameters.xml
# pdf
xmllint --xinclude book.xml > otrs_admin_book.xml
docbook2pdf otrs_admin_book.xml
mkdir -p $PACKAGE_DEST_DIR/$Language/pdf
cp otrs_admin_book.pdf $PACKAGE_DEST_DIR/$Language/pdf/otrs_admin_book.pdf
# html
docbook2html otrs_admin_book.xml
mkdir -p $PACKAGE_DEST_DIR/$Language/html
mkdir -p $PACKAGE_DEST_DIR/$Language/html/screenshots
mkdir -p $PACKAGE_DEST_DIR/$Language/images
cp -R *.html $PACKAGE_DEST_DIR/$Language/html/
cp -R screenshots/* $PACKAGE_DEST_DIR/$Language/html/screenshots/
cp -R images/* $PACKAGE_DEST_DIR/$Language/images/
# convert images to 50% of orig. size
for i in $PACKAGE_DEST_DIR/$Language/html/screenshots/*.png ; do
echo "convert image to 60% $i"; convert $i -resize 60% $i;
done
# xml
mkdir -p $PACKAGE_DEST_DIR/$Language/xml
cp -R *.xml $PACKAGE_DEST_DIR/$Language/xml/
# cleanup
rm -rf $PACKAGE_BUILD_DIR
done;
# show result
for Language in en de; do
du -sh $PACKAGE_DEST_DIR/$Language/xml/;
du -sh $PACKAGE_DEST_DIR/$Language/html/;
du -sh $PACKAGE_DEST_DIR/$Language/pdf/;
ls -l $PACKAGE_DEST_DIR/$Language/pdf/otrs_admin_book.pdf;
done;
|