diff options
-rwxr-xr-x | build-composite.sh | 13 | ||||
-rw-r--r-- | docs/configguide/index.rst | 2 |
2 files changed, 12 insertions, 3 deletions
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 |