2809ad9edb
Discussion at mailing list: http://lists.openstack.org/pipermail/openstack-docs/2016-May/008532.html Change-Id: Icc6761cdda2ca820447153fa7ec046e22cc98129
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["cs"]="install-guide"
|
|
["fr"]="install-guide"
|
|
["ja"]="image-guide user-guide install-guide networking-guide"
|
|
["ko_KR"]="install-guide"
|
|
)
|
|
|
|
# draft books
|
|
declare -A DRAFTS=(
|
|
["cs"]="install-guide"
|
|
["fr"]="install-guide"
|
|
["ja"]="install-guide networking-guide"
|
|
["ko_KR"]="install-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=(
|
|
# This needs special handling, handle it with the RST tools.
|
|
["common"]="RST"
|
|
["admin-guide"]="RST"
|
|
["arch-design"]="RST"
|
|
["ha-guide"]="RST"
|
|
["image-guide"]="RST"
|
|
["install-guide"]="RST"
|
|
["networking-guide"]="RST"
|
|
["user-guide"]="RST"
|
|
# Do not translate
|
|
["cli-reference"]="skip"
|
|
["config-reference"]="skip"
|
|
["contributor-guide"]="skip"
|
|
["releasenotes"]="skip"
|
|
# Skip arch design while its being revised
|
|
["arch-design-draft"]="skip"
|
|
# Skip ops-guide while its being revised
|
|
["ops-guide"]="skip"
|
|
)
|