diff --git a/tools/update-apidox b/tools/update-apidox index ef24bba..38759fd 100755 --- a/tools/update-apidox +++ b/tools/update-apidox @@ -1,39 +1,34 @@ #! /bin/sh TOPSRC=/srv/sources TOP_QSRC=$HOME/quality-kde-org -TOPAPI=/srv/www/api.kde.org BINPATH=$HOME/bin BRANCH="4.14" # Copy in Mainpage.dox for some modules branches="kde-4.x kde-$BRANCH" modules="kdeaccessibility kdeedu kdegraphics kdenetwork kdesdk kdeutils" for b in $branches do for m in $modules do cp -f $TOP_QSRC/website/api.kde.org/Mainpages/$m.dox $TOPSRC/$b/$m/Mainpage.dox done done #Use doxygen via gendox.sh to do the build of the work. $BINPATH/gendox.sh --version kde-4.x & $BINPATH/gendox.sh --version kde-"$BRANCH" & $BINPATH/kapidoxgendox.sh & wait $BINPATH/gendox.sh --version extragear & $BINPATH/gendox.sh --version bundled-apps & wait $BINPATH/gendox.sh --version kdesupport & $BINPATH/gendox.sh --version kdereview & $BINPATH/gendox.sh --version playground & wait -#Make sure the "stable" and "unstable" links are in place -( cd $TOPAPI; rm -f unstable; ln -s 4.x-api unstable ) -( cd $TOPAPI; rm -f stable; ln -s "$BRANCH"-api stable ) - exit