4e986a3c7c
- Adds openstack commands Change-Id: I57780453bd8ee214d10b646e7a989de7e33fa2a9
27 lines
574 B
Plaintext
27 lines
574 B
Plaintext
# Example configuration for the languages 'ja' and 'fr'.
|
|
|
|
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
)
|
|
|
|
# Where does the top-level pom live?
|
|
# Set to empty to not copy it.
|
|
POM_FILE="pom.xml"
|
|
|
|
# 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=(
|
|
["firstapp"]="skip"
|
|
["api-quick-start"]="RST"
|
|
# These are translated in openstack-manuals
|
|
["common-rst"]="skip"
|
|
)
|