sapling/tests/test-gendoc
Martin Geisler ce3c2717e9 doc: add generic frontend to rst2man and rst2html
This will allow us to easily register new roles and directives.
2010-04-22 09:57:04 +02:00

21 lines
624 B
Bash
Executable File

#!/bin/sh
"$TESTDIR/hghave" docutils || exit 80
HGENCODING=UTF-8
export HGENCODING
for PO in C $TESTDIR/../i18n/*.po; do
LOCALE=`basename $PO .po`
echo
echo "% extracting documentation from $LOCALE"
echo ".. -*- coding: utf-8 -*-" > gendoc-$LOCALE.txt
echo "" >> gendoc-$LOCALE.txt
LC_ALL=$LOCALE python $TESTDIR/../doc/gendoc.py >> gendoc-$LOCALE.txt || exit
# We call runrst without adding "--halt warning" to make it report
# all errors instead of stopping on the first one.
echo "checking for parse errors"
python $TESTDIR/../doc/runrst html gendoc-$LOCALE.txt /dev/null
done