openstack-manuals/doc-tools-check-languages.conf
Andreas Jaeger 6a01aa42d1 Prepare releasenotes for publishing
Move release notes into releasenotes and add tox target so that
infra scripts will publish them to
docs.openstack.org/releasenotes/openstack-manuals

Infra change: Icbe135e37c78e0a3a1c6d3243f7128c0b881325d

Note that the directory layout here is this way on purpose - we want to
reuse the same jobs other repos use, just the difference is we're not
using reno for this.

Change-Id: I00a53d8b3d9bef28b480be22af2e6647fa26448a
2016-03-18 12:46:15 +01:00

45 lines
1.1 KiB
Plaintext

# directories to be set up
declare -A DIRECTORIES=(
)
# 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=(
# This needs special handling, handle it with the RST tools.
["common"]="RST"
["admin-guide-cloud"]="RST"
["arch-design"]="RST"
["image-guide"]="RST"
["install-guide"]="RST"
["networking-guide"]="RST"
["user-guide"]="RST"
["user-guide-admin"]="RST"
# Do not translate
["cli-reference"]="skip"
["config-reference"]="skip"
["contributor-guide"]="skip"
["releasenotes"]="skip"
# Skip arch design while its being revised
["arch-design-draft"]="skip"
)