summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRyota MIBU <r-mibu@cq.jp.nec.com>2016-08-11 01:33:32 +0900
committerRyota MIBU <r-mibu@cq.jp.nec.com>2016-08-11 01:34:21 +0900
commit59703f2ec84fa366ab1be9a0bfacd302c9c21155 (patch)
tree211312c7fc8e19b6978729776d0d7cfa31728821 /scripts
parentc15e4a979697c71e125e5dd88b0d201744efc39b (diff)
add 'Save to PDF' link in sidebar
Change-Id: Ia9ffd10aa73c9e39203f31a5a19329006b68a444 Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/docs-build.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/docs-build.sh b/scripts/docs-build.sh
index 5a7dbc06e..b6bb5d5f7 100755
--- a/scripts/docs-build.sh
+++ b/scripts/docs-build.sh
@@ -110,6 +110,8 @@ function prepare_config() {
_name="$2"
_conf="$_src/conf.py"
+ touch "$_conf"
+
# default params
# Note: If you want to add a new sphinx extention here, you may need python
# package for it (e.g. python package 'sphinxcontrib-httpdomain' is
@@ -126,6 +128,10 @@ function prepare_config() {
add_config "$_conf" 'html_logo' "'opnfv-logo.png'"
add_config "$_conf" 'latex_domain_indices' "False"
add_config "$_conf" 'latex_logo' "'opnfv-logo.png'"
+ add_config "$_conf" 'html_sidebars' \
+ "{'**': ['globaltoc.html',
+ '$(cd $OPNFVDOCS_DIR; pwd)/etc/pagemenu.html',
+ 'searchbox.html']}"
# genarated params
title=$(cd $_src; python -c "$get_title_script")