670c7af1ad
Set locale_dirs in conf.py to support translated documents building. Add a config variable SPECIAL_BOOKS to list documents in RST format. Add new generatepot-rst tox environment to generate all pot file, invoke using "tox -e generatepot-rst -- playground-user-guide". Add new script to generate the pot files. Co-Authored-By: Andreas Jaeger <aj@suse.de> Change-Id: I3124cf65b254c1c5aefce59447bb94240d96a742
32 lines
888 B
Plaintext
32 lines
888 B
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
["fr"]="common glossary user-guide image-guide"
|
|
["ja"]="common glossary image-guide install-guide user-guide user-guide-admin"
|
|
["pt_BR"]="common install-guide"
|
|
["zh_CN"]="common glossary arch-design image-guide"
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["fr"]="user-guide image-guide"
|
|
["ja"]="image-guide install-guide user-guide user-guide-admin"
|
|
["pt_BR"]="install-guide"
|
|
["zh_CN"]="arch-design image-guide"
|
|
)
|
|
|
|
# Where does the top-level pom live?
|
|
# Set to empty to not copy it.
|
|
POM_FILE="doc/pom.xml"
|
|
|
|
# Location of doc dir
|
|
DOC_DIR="doc/"
|
|
|
|
# Books with special handling
|
|
# Values need to match content in project-config/jenkins/scripts/common_translation_update.sh
|
|
declare -A SPECIAL_BOOKS
|
|
SPECIAL_BOOKS=(
|
|
["playground-user-guide"]="RST"
|
|
["networking-guide"]="skip"
|
|
["hot-guide"]="skip"
|
|
)
|