2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 NEC and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
11 GIT_CLONE_BASE=${GIT_CLONE_BASE:-ssh://gerrit.opnfv.org:29418}
12 GERRIT_BRANCH=${GERRIT_BRANCH:-master}
13 WORKSPACE=${WORKSPACE:-.}
16 # NOTE: Not all repositories are ready for the composite docs,
17 # so we have the repo name list here to add project docs
18 # one by one. This will be replaced by the list in project.cfg .
19 # grep -v '^#' releng/jjb/opnfvdocs/project.cfg | sort
26 echo "fastpathmetrics"
43 [[ -d "$WORKSPACE/$_repo" ]] && return 0
45 git clone -b $GERRIT_BRANCH --depth 1 --quiet $GIT_CLONE_BASE/$_repo
49 repos=$(get_repo_names)
51 [[ -e docs/projects ]] && rm -rf docs/projects
52 mkdir -p docs/projects
55 echo "Cloning repos of participating OPNFV Projects and copying docs"
57 for repo in $repos; do
58 echo " $repo ($GERRIT_BRANCH)"
60 [[ -e $WORKSPACE/$repo/docs ]] || continue
61 [[ -e docs/projects/$repo ]] && rm -rf docs/projects/$repo
62 cp -r $WORKSPACE/$repo/docs docs/projects/$repo
65 # NOTE: Removing index.rst in project repos to reduce number of docs.
66 find docs/projects -type f -name 'index.rst' -print | xargs -I i rm -f i
68 # fix relative file paths
69 pattern='.. \(include\|figure\):: *[^ \/]'
70 base_path="/$(pwd)/docs_build/_src"
71 find docs/projects -type f -name '*.rst' -print | while read f
73 sed -i -e "/$pattern/s|:: *|:: $base_path/$(dirname ${f#docs/})/|" $f
77 grep -e '.. include::' -e '.. figure::' -r docs/projects
79 # NOTE: automated link generation is not ready...
81 echo "Creating document links"
84 configurationguide/configuration.options.render.rst
85 configurationguide/scenario.description.rst
86 userguide/feature.userguide.render.rst
87 testframework/framework.installation.procedure.render.rst
88 testframework/framework.userguide.render.rst
90 # configurationguide/post-install.rst
93 mainfile="$WORKSPACE/docs/$guide"
94 basefilename=$(basename ${guide/-/})
97 targetfile="$WORKSPACE/docs/projects/$repo/${guide/-/}"
98 targetlink="../projects/$repo/${guide/-/}"
99 projectfilename="${basefilename/.rst/-$repo.rst}"
100 projectfile="$(dirname $mainfile)/$projectfilename"
101 [[ -e "$targetfile" ]] || continue
102 echo "Adding $repo to $guide ..."
104 echo ".. toctree::" >> $mainfile
106 echo " $projectfilename" >> $mainfile
107 echo ".. include:: $targetlink" > $projectfile
110 echo "Generated $guide:"