Fixed paths and removed error repotring supression and lets use php.ini..

This commit is contained in:
Hannes Magnusson
2009-11-09 19:53:14 +00:00
parent 4129537497
commit 1d9c962c99

View File

@ -9,11 +9,11 @@ LANGS=`$PHP -r 'include "phpweb/include/languages.inc"; echo implode( " ", array
cd phpdoc-all
for LANG in $LANGS; do
$PHP doc-base/scripts/check-trans.php ${LANG} > $TRANSPATH/transcheck_${LANG}.html
$PHP -derror_reporting=0 doc-base/scripts/revcheck.php ${LANG} > $TRANSPATH/revcheck_${LANG}.html
$PHP doc-base/scripts/check-trans-maint.php -n -l ${LANG} -m 1 > $TRANSPATH/maintainer_${LANG}.html
$PHP -derror_reporting=0 doc-base/scripts/check-trans-params.php ${LANG} 1 1 > $TRANSPATH/params_${LANG}.html
$PHP doc-base/scripts/reviewedcheck.php ${LANG} > $TRANSPATH/reviewedcheck_${LANG}.html
$PHP -n -d error_reporting=0 scripts/check-trans.php ${LANG} > $TRANSPATH/transcheck_${LANG}.html
$PHP -n -d error_reporting=0 scripts/revcheck.php ${LANG} > $TRANSPATH/revcheck_${LANG}.html
$PHP -n -d error_reporting=0 scripts/check-trans-maint.php -n -l ${LANG} -m 1 > $TRANSPATH/maintainer_${LANG}.html
$PHP -n -d error_reporting=0 scripts/check-trans-params.php ${LANG} 1 1 > $TRANSPATH/params_${LANG}.html
$PHP -n -d error_reporting=0 scripts/reviewedcheck.php ${LANG} > $TRANSPATH/reviewedcheck_${LANG}.html
done
done