From: Ryota MIBU Date: Mon, 15 Feb 2016 15:11:04 +0000 (+0900) Subject: correct file path in imported rst files X-Git-Tag: colorado.1.0~51 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F05%2F10005%2F9;p=opnfvdocs.git correct file path in imported rst files Change-Id: I2d3a784dd3fcd41b2ba637cef633a4cf42ebadae Signed-off-by: Ryota MIBU --- diff --git a/build-composite.sh b/build-composite.sh index 12c134b1b..714bd5bbc 100755 --- a/build-composite.sh +++ b/build-composite.sh @@ -65,9 +65,16 @@ done # NOTE: Removing index.rst in project repos to reduce number of docs. find docs/projects -type f -name 'index.rst' -print | xargs -I i rm -f i -# Correct Image file path (workaround) -sed -i -e '/^.. figure::/s|images|../projects/promise/configguide/images|' \ - docs/projects/promise/configguide/featureconfig.rst +# fix relative file paths +pattern='.. \(include\|figure\):: *[^ \/]' +base_path="/$(pwd)/docs_build/_src" +find docs/projects -type f -name '*.rst' -print | while read f +do + sed -i -e "/$pattern/s|:: *|:: $base_path/$(dirname ${f#docs/})/|" $f +done + +# for debug +grep -e '.. include::' -e '.. figure::' -r docs/projects # NOTE: automated link generation is not ready... echo diff --git a/docs/configguide/index.rst b/docs/configguide/index.rst index 1d042fb99..dfd8c4d53 100644 --- a/docs/configguide/index.rst +++ b/docs/configguide/index.rst @@ -6,6 +6,8 @@ OPNFV Configuration Guide ************************* +.. test + .. toctree:: :maxdepth: 2