diff options
-rwxr-xr-x | tools/checkdocs.sh | 6 | ||||
-rwxr-xr-x | tools/checkrtd.sh | 11 |
2 files changed, 13 insertions, 4 deletions
diff --git a/tools/checkdocs.sh b/tools/checkdocs.sh index f58e1f546..1f7f10be5 100755 --- a/tools/checkdocs.sh +++ b/tools/checkdocs.sh @@ -58,7 +58,7 @@ ### SHORT: curl -s 'https://gerrit.onap.org/r/projects/?d' | awk '{if(NR>1)print}' | jq -c '.[] | {id, state}' | sed -r 's:%2F:/:g; s:["{}]::g; s:id\:::; s:,state\::|:; /All-Projects/d; /All-Users/d' ### -script_version="1.1 (2020-11-17)" +script_version="1.2 (2020-11-18)" # save command for the restart with logging enabled command=$0 @@ -72,8 +72,10 @@ fullcommand="${command} ${arguments}" # print usage function usage() { echo " " + echo " checkdocs.sh Version ${script_version}" + echo " " echo " USAGE: " - echo " ./checkdocs.sh " + echo " ./checkdocs.sh <arguments> " echo " " echo " ARGUMENTS: " echo " -u|--user username " diff --git a/tools/checkrtd.sh b/tools/checkrtd.sh index 8be384ccd..e626dd9c1 100755 --- a/tools/checkrtd.sh +++ b/tools/checkrtd.sh @@ -27,6 +27,7 @@ for line in "${array[@]}" do reponame=$(echo ${line} | cut -d "[" -f2 | cut -d "]" -f1) + #reponame="[${reponame}]" #echo "DBUG: reponame=${reponame}" # example line: [dmaap/messagerouter/messageservice]/docs/release-notes/release-notes.rst @@ -41,7 +42,12 @@ do # warning: path does not always contain "docs"! # line: [dmaap/messagerouter/messageservice]/docs/release-notes/release-notes.rst # output: release-notes/release-notes.html - url_file=$(echo ${line} | sed -r 's/^.+\]//' | sed -r 's/^.*docs\///' | sed -r 's/\.rst$/\.html/' ) + url_file=$(echo ${line} | sed -r 's/^.+\]//' | sed -r 's/^.*\/docs\///' | sed -r 's/\.rst$/\.html/' ) + + #echo "DBUG: line = ${line}" + #echo "DBUG: url_file = ${url_file}" + #echo "DBUG: url_repo = ${url_repo}" + #echo "DBUG: reponame = ${reponame}" # build the full url if [[ ${reponame} == "doc" ]]; then @@ -53,7 +59,8 @@ do url_start="https://docs.onap.org/projects/onap" url="${url_start}-${url_repo}/${url_lang}/${url_branch}/${url_file}" fi - #echo "DBUG: url=$url" + + #echo "DBUG: url = $url" # check with curl if html page is accessible (no content check!) # to prevent (server side) cached results a unique element is added to the request |