diff options
author | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2016-02-16 00:11:04 +0900 |
---|---|---|
committer | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2016-02-16 13:27:34 +0900 |
commit | 410ae27d228750f1e48f13d89fcbedbdb0708da9 (patch) | |
tree | fec47af92a5073c989f2d7acc498c678650dd582 /build-composite.sh | |
parent | e23cedb0b72dfbbad918fb94a4d63eb09cab0691 (diff) |
correct file path in imported rst files
Change-Id: I2d3a784dd3fcd41b2ba637cef633a4cf42ebadae
Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
Diffstat (limited to 'build-composite.sh')
-rwxr-xr-x | build-composite.sh | 13 |
1 files changed, 10 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 |