d7b5e0eaa9
1. Unpublish the current arch-design and temporarily relocate it to a "to archive" directory until the archiving structure is available 2. Publish the arch-design-draft to docs.openstack.org 3. Unpublish arch-design-draft from https://docs.openstack.org/draft/ Change-Id: Ida5f237d2edce7a83a24c376c355e2c220bc8c28 Implements: blueprint arch-design-pike
61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["cs"]="install-guide"
|
|
["de"]="install-guide"
|
|
["fr"]="install-guide"
|
|
["id"]="image-guide install-guide networking-guide user-guide"
|
|
["ja"]="ha-guide image-guide install-guide networking-guide ops-guide user-guide"
|
|
["ko_KR"]="install-guide"
|
|
["ru"]="install-guide"
|
|
["zh_CN"]="install-guide user-guide"
|
|
)
|
|
|
|
# draft books
|
|
declare -A DRAFTS=(
|
|
["cs"]="install-guide"
|
|
["de"]="install-guide"
|
|
["fr"]="install-guide"
|
|
["id"]="install-guide networking-guide"
|
|
["ja"]="install-guide networking-guide"
|
|
["ko_KR"]="install-guide"
|
|
["ru"]="install-guide"
|
|
["zh_CN"]="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"
|
|
["ops-guide"]="RST"
|
|
["user-guide"]="RST"
|
|
# Do not translate for now, we need to fix our scripts first to
|
|
# generate the content properly.
|
|
["install-guide-debconf"]="skip"
|
|
# Do not translate
|
|
["cli-reference"]="skip"
|
|
["config-reference"]="skip"
|
|
["contributor-guide"]="skip"
|
|
["releasenotes"]="skip"
|
|
# Skip old arch design, will be archived
|
|
["arch-design-to-archive"]="skip"
|
|
)
|