2d04ed1a60
Use new doc-tools-check-languages script and add configuration file for it. Remove the now obsolete tools/test-languages.sh. Adjust checkbuild target so that generated index pages can be reviewed easily. Change-Id: I28462fb19e5f999c298e7d8cc2cc7dda41f35929
21 lines
546 B
Plaintext
21 lines
546 B
Plaintext
# Example configuration for the languages 'ja' and 'fr'.
|
|
|
|
# directories to be set up
|
|
declare -A DIRECTORIES=(
|
|
["ja"]="common glossary high-availability-guide image-guide install-guide user-guide user-guide-admin"
|
|
["fr"]="common glossary user-guide"
|
|
)
|
|
|
|
# books to be built
|
|
declare -A BOOKS=(
|
|
["ja"]="high-availability-guide image-guide install-guide user-guide user-guide-admin"
|
|
["fr"]="user-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/"
|