api-site/doc-tools-check-languages.conf
Andreas Jaeger bb8b09bd7a Drop DocBook support, swagger building
We do not need to build and publish the DocBook XML content anymore,
everything is frozen and in the process of moving to projects. Remove
set up for building of DocBook content.

This leaves the XML files still in tree, we can remove them later.

The DocBook XML gates are still setup, so some tox environments have
been made a noop.

Require openstack-doc-tools 1.0.0 which removes DocBook XML support.

Also, drop swagger building, this is not needed anymore.

Change-Id: I276953013a518a09dabb89bb8f80ef7739b4491b
2016-08-23 13:20:09 +02:00

57 lines
1.4 KiB
Plaintext

# IMPORTANT IMPORTANT IMPORTANT IMPORTANT IMPORTANT
# Note that we publish all files to developer.openstack.org using
# "tox -e publishlang-api".
# Our script doc-tools-check-languages places guides in the wrong
# directories, they need to be moved in tox.ini manually to the right
# place for publishing.
# We publish:
# The api-quick-start at:
# http:/developer.openstack.org/LANG/api-guide/quick-start or
# http://developer.openstack.org/draft/LANG/api-guide/quick-start
# directories to be set up
declare -A DIRECTORIES=(
)
# books to be built
declare -A BOOKS=(
# See comment at start of file and update tox.ini as well if you
# change anything here.
["de"]="api-quick-start"
["id"]="api-quick-start"
["ja"]="api-quick-start"
["ko_KR"]="api-quick-start"
["zh_CN"]="api-quick-start"
)
# draft books
declare -A DRAFTS=(
# See comment at start of file and update tox.ini as well if you
# change anything here.
# Example:
#["de"]="api-quick-start"
)
# Where does the top-level pom live?
# Set to empty to not copy it.
POM_FILE=""
# 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"
["firstapp"]="RST"
# These are translated in openstack-manuals
["common"]="skip"
# Frozen
["api-ref"]="skip"
["api-ref-guides"]="skip"
)