diff options
author | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2015-12-01 07:58:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-12-01 07:58:53 +0000 |
commit | 2141a17cadce1d6d451f501d4038fcacb7b52f8f (patch) | |
tree | 0d147df4cac6b3a0882ec60e0934b9f89daf054c /utils | |
parent | 9f088e779a015c87ce6d70f1492bbaf5a83e2eee (diff) | |
parent | 055361f3139dc0d028a5df06114941ea9c32c805 (diff) |
Merge "update builder script and how-to-use-docs"
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/docs-build.sh | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/utils/docs-build.sh b/utils/docs-build.sh new file mode 100755 index 000000000..bf9ab5b1e --- /dev/null +++ b/utils/docs-build.sh @@ -0,0 +1,124 @@ +#!/bin/bash -e + +export PATH=$PATH:/usr/local/bin/ + + +SRC_DIR=${SRC_DIR:-docs} +INDEX_RST=${INDEX_RST:-index.rst} +BUILD_DIR=${BUILD_DIR:-build} +OUTPUT_DIR=${OUTPUT_DIR:-output} +RELENG_DIR=${RELENG_DIR:-releng} +GERRIT_COMMENT=${GERRIT_COMMENT:-} + +get_title_script=" +import os +from docutils import core, nodes + +try: + with open('index.rst', 'r') as file: + data = file.read() + doctree = core.publish_doctree(data, + settings_overrides={'report_level': 5, + 'halt_level': 5}) + if isinstance(doctree[0], nodes.title): + title = doctree[0] + else: + for c in doctree.children: + if isinstance(c, nodes.section): + title = c[0] + break + print title.astext() +except: + print 'None'" +revision="$(git rev-parse --short HEAD)" +rev_full="$(git rev-parse HEAD)" +version="$(git describe --abbrev=0 2> /dev/null || echo draft) ($revision)" +project="$(basename $(git rev-parse --show-toplevel))" +html_notes="\n Revision: $rev_full\n\n Build date: |today|" +default_conf='releng/docs/etc/conf.py' +opnfv_logo='releng/docs/etc/opnfv-logo.png' + +function add_html_notes() { + _src="$1" + _dir="$2" + + if grep -q -e ' _sha1_' "$_src"/*.rst ; then + # TODO: remove this, once old templates were removed from all repos. + echo + echo "Warn: '_sha1_' was found in $_dir , use the latest document template." + echo " See https://wiki.opnfv.org/documentation/tools ." + echo + sed -i "s/ _sha1_/ $git_sha1/g" "$_src"/*.rst + fi + sed -i -e "\$a\\\n.. only:: html\n$html_notes" "$_src"/*.rst +} + +function add_config() { + _conf="$1" + _param="$2" + _val="$3" + + if ! grep -q -e "^$_param = " "$_conf" ; then + echo "Adding '$_param' into $_conf ..." + echo "$_param = $_val" >> "$_conf" + fi +} + + +if [[ ! -d "$RELENG_DIR" ]] ; then + echo "Error: $RELENG_DIR dir not found. See https://wiki.opnfv.org/documentation/tools ." + exit 1 +fi + +find $SRC_DIR -name $INDEX_RST -printf '%h\n' | while read dir +do + name="${dir##*/}" + src="$BUILD_DIR/src/$name" + build="$BUILD_DIR/$name" + output="$OUTPUT_DIR/$name" + conf="$src/conf.py" + + echo + echo "#################${dir//?/#}" + echo "Building DOCS in $dir" + echo "#################${dir//?/#}" + echo + + mkdir -p "$BUILD_DIR/src" + [[ -e "$src" ]] && rm -rf "$src" + cp -r "$dir" "$src" + + add_html_notes "$src" "$dir" + + [[ ! -f "$conf" ]] && cp "$default_conf" "$conf" + title=$(cd $src; python -c "$get_title_script") + latex_conf="[('index', '$name.tex', \"$title\", 'OPNFV', 'manual'),]" + add_config "$conf" 'latex_documents' "$latex_conf" + add_config "$conf" 'release' "u'$version'" + add_config "$conf" 'version' "u'$version'" + add_config "$conf" 'project' "u'$project'" + add_config "$conf" 'copyright' "u'$(date +%Y), OPNFV'" + cp -f $opnfv_logo "$src/opnfv-logo.png" + + mkdir -p "$output" + + sphinx-build -b html -t html -E "$src" "$output" + + # Note: PDF creation may fail in project doc builds. + # We allow this build job to be marked as succeeded with + # failure in PDF creation, but leave message to fix it. + # Any failure has to be fixed before OPNFV B release. + { + sphinx-build -b latex -t pdf -E "$src" "$build" && \ + make -C "$build" LATEXOPTS='--interaction=nonstopmode' all-pdf + } && { + mv "$build/$name.pdf" "$output" + } || { + msg="Error: PDF creation for $dir has failed, please fix source rst file(s)." + echo + echo "$msg" + echo + [[ -n "$GERRIT_COMMENT" ]] && echo "$msg" >> "$GERRIT_COMMENT" + } + +done |