
These guides are dead, remove them completely. This will also remove the documents from the developer website, so remove all links. Change-Id: Ifd9a4d8a187962498d6f1133226a77308bc2f5ff
31 lines
652 B
Plaintext
31 lines
652 B
Plaintext
# Directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["de"]="api-quick-start"
|
|
["eo"]="api-quick-start"
|
|
["id"]="api-quick-start"
|
|
["ja"]="api-quick-start"
|
|
["ko_KR"]="api-quick-start"
|
|
["tr_TR"]="api-quick-start"
|
|
["zh_CN"]="api-quick-start"
|
|
)
|
|
|
|
|
|
# Location of doc dir
|
|
DOC_DIR="./"
|
|
|
|
# Books with special handling
|
|
# Values need to match content in project-config/jenkins/scripts/common_translation_update.sh
|
|
declare -A SPECIAL_BOOKS
|
|
SPECIAL_BOOKS=(
|
|
["api-quick-start"]="RST"
|
|
# These are translated in openstack-manuals
|
|
["common"]="skip"
|
|
# Obsolete
|
|
["api-ref"]="skip"
|
|
|
|
)
|