0c850121b9
Change-Id: I6967f744d142590569a3b4700773feb3a5d3388a Implements: blueprint image-guide-rst Depends-On: I50d95482c29e6cf2752a974343c6edb13076b526
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
["fr"]="common glossary image-guide"
|
|
["ja"]="common glossary image-guide"
|
|
["zh_CN"]="common glossary arch-design image-guide"
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["fr"]="image-guide"
|
|
["ja"]="image-guide user-guide user-guide-admin install-guide"
|
|
["zh_CN"]="arch-design image-guide"
|
|
)
|
|
|
|
# draft books
|
|
declare -A DRAFTS=(
|
|
["fr"]="image-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=(
|
|
["admin-guide-cloud"]="RST"
|
|
["install-guide"]="RST"
|
|
["networking-guide"]="RST"
|
|
["user-guide"]="RST"
|
|
["user-guide-admin"]="RST"
|
|
# Skip in-progress guides
|
|
["contributor-guide"]="skip"
|
|
["arch-design-rst"]="skip"
|
|
["config-ref-rst"]="skip"
|
|
["image-guide-rst"]="skip"
|
|
# This needs special handling, handle it with the RST tools.
|
|
["common-rst"]="RST"
|
|
)
|