9b1e62e9cd
Create a draft directory for reorganising the Architecture Design Guide Change-Id: I38b2726d5a658b95b49699832d357ea98d8b4bc2 Implements: blueprint archguide-mitaka-reorg
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
["zh_CN"]="common glossary"
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["ja"]="image-guide user-guide user-guide-admin install-guide networking-guide"
|
|
["cs"]="install-guide"
|
|
)
|
|
|
|
# draft books
|
|
declare -A DRAFTS=(
|
|
["ja"]="install-guide"
|
|
["cs"]="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"
|
|
["arch-design"]="RST"
|
|
["image-guide"]="RST"
|
|
["install-guide"]="RST"
|
|
["networking-guide"]="RST"
|
|
["user-guide"]="RST"
|
|
["user-guide-admin"]="RST"
|
|
# Skip in-progress guides
|
|
["contributor-guide"]="skip"
|
|
["config-ref-rst"]="skip"
|
|
# Do not translate
|
|
["cli-reference"]="skip"
|
|
# Skip arch design while its being revised
|
|
["arch-design-draft"]="skip"
|
|
# This needs special handling, handle it with the RST tools.
|
|
["common-rst"]="RST"
|
|
)
|