06a35cf642
The team has translated most of the guide, so build and publish it. Change-Id: I42f74a9eef366a20adcd88b22db8a54e3ed20efb Depends-On: I3cc4bdf34d490476ad1e6a07fcab8dd724e1aba2
47 lines
1.1 KiB
Plaintext
47 lines
1.1 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 user-guide-admin install-guide networking-guide"
|
|
)
|
|
|
|
# draft books
|
|
declare -A DRAFTS=(
|
|
["cs"]="install-guide"
|
|
["fr"]="install-guide"
|
|
["ja"]="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-cloud"]="RST"
|
|
["arch-design"]="RST"
|
|
["image-guide"]="RST"
|
|
["install-guide"]="RST"
|
|
["networking-guide"]="RST"
|
|
["user-guide"]="RST"
|
|
["user-guide-admin"]="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"
|
|
)
|