d7974c8081
The user-guide has been mainly translated to French with now 76 per cent, add it to build jobs. For building, we need the glossary as well, thus import it manually (3 per cent translated, thus will not be downloaded automatically) and update the Japanese glossary as well. Import manually the current version of doc/user-guide/locale/fr.po since it contains fixes to get this building. Change-Id: I11280778bbf53a21e008d0dcfe4d21bfc89d7aa1
132 lines
2.9 KiB
Bash
Executable File
132 lines
2.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
function setup_directory {
|
|
SET_LANG=$1
|
|
shift
|
|
for BOOK_DIR in "$@" ; do
|
|
echo " $BOOK_DIR"
|
|
openstack-generate-docbook -l $SET_LANG -b $BOOK_DIR
|
|
done
|
|
}
|
|
|
|
|
|
function setup_lang {
|
|
SET_LANG=$1
|
|
shift
|
|
echo "Setting up files for $SET_LANG"
|
|
echo "======================="
|
|
echo " Directories:"
|
|
setup_directory $SET_LANG 'common' 'glossary' "$@"
|
|
cp doc/pom.xml generated/$SET_LANG/pom.xml
|
|
}
|
|
|
|
function test_fr {
|
|
setup_lang 'fr'
|
|
|
|
setup_directory 'fr' 'common' 'glossary' 'user-guide'
|
|
case "$PURPOSE" in
|
|
test)
|
|
openstack-doc-test -v --check-build -l fr \
|
|
--only-book user-guide
|
|
RET=$?
|
|
;;
|
|
publish)
|
|
openstack-doc-test -v --publish --check-build -l fr \
|
|
--only-book user-guide
|
|
RET=$?
|
|
;;
|
|
esac
|
|
if [ "$RET" -eq "0" ] ; then
|
|
echo "... succeeded"
|
|
else
|
|
echo "... failed"
|
|
BUILD_FAIL=1
|
|
fi
|
|
}
|
|
|
|
|
|
function test_ja {
|
|
setup_lang 'ja'
|
|
|
|
case "$PURPOSE" in
|
|
test)
|
|
setup_directory 'ja' 'high-availability-guide' \
|
|
'install-guide' 'user-guide' \
|
|
'user-guide-admin'
|
|
openstack-doc-test -v --check-build -l ja \
|
|
--only-book high-availability-guide \
|
|
--only-book install-guide \
|
|
--only-book user-guide \
|
|
--only-book user-guide-admin
|
|
RET=$?
|
|
;;
|
|
publish)
|
|
setup_directory 'ja' 'high-availability-guide' \
|
|
'install-guide' 'user-guide' \
|
|
'user-guide-admin'
|
|
openstack-doc-test -v --publish --check-build -l ja \
|
|
--only-book high-availability-guide \
|
|
--only-book install-guide \
|
|
--only-book user-guide \
|
|
--only-book user-guide-admin
|
|
RET=$?
|
|
;;
|
|
esac
|
|
if [ "$RET" -eq "0" ] ; then
|
|
echo "... succeeded"
|
|
else
|
|
echo "... failed"
|
|
BUILD_FAIL=1
|
|
fi
|
|
}
|
|
|
|
function test_language () {
|
|
|
|
case "$language" in
|
|
all)
|
|
test_fr
|
|
test_ja
|
|
;;
|
|
fr)
|
|
test_fr
|
|
;;
|
|
ja)
|
|
test_ja
|
|
;;
|
|
*)
|
|
BUILD_FAIL=1
|
|
echo "Language $language not handled"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
function usage () {
|
|
echo "Call the script as: "
|
|
echo "$0 PURPOSE LANGUAGE1 LANGUAGE2..."
|
|
echo "PURPOSE is either 'test' or 'publish'."
|
|
echo "LANGUAGE can also be 'all'."
|
|
}
|
|
|
|
if [ "$#" -lt 2 ] ; then
|
|
usage
|
|
exit 1
|
|
fi
|
|
if [ "$1" = "test" ] ; then
|
|
PURPOSE="test"
|
|
elif [ "$1" = "publish" ] ; then
|
|
PURPOSE="publish"
|
|
else
|
|
usage
|
|
exit 1
|
|
fi
|
|
shift
|
|
BUILD_FAIL=0
|
|
for language in "$@" ; do
|
|
echo
|
|
echo "Building for language $language"
|
|
echo
|
|
test_language "$language"
|
|
done
|
|
|
|
exit $BUILD_FAIL
|