Mercurial > hg
annotate tests/test-gendoc @ 10358:d42821cd5c96
pull: with -u and -r, update to the first revision given
This makes pull consistent with clone. The actual change is in
mercurial.hg.parseurl, changing its checkout result, which is only
used for pull.
author | Sune Foldager <cryo@cyanite.org> |
---|---|
date | Sat, 06 Feb 2010 20:24:51 +0100 |
parents | 08a0f04b56bd |
children | cbe400a8e217 |
rev | line source |
---|---|
9446
57d682d7d2da
test-gendoc: test documentation generation
Martin Geisler <mg@lazybytes.net>
parents:
diff
changeset
|
1 #!/bin/sh |
57d682d7d2da
test-gendoc: test documentation generation
Martin Geisler <mg@lazybytes.net>
parents:
diff
changeset
|
2 |
57d682d7d2da
test-gendoc: test documentation generation
Martin Geisler <mg@lazybytes.net>
parents:
diff
changeset
|
3 "$TESTDIR/hghave" rst2html || exit 80 |
10282
08a0f04b56bd
many, many trivial check-code fixups
Matt Mackall <mpm@selenic.com>
parents:
9485
diff
changeset
|
4 RST2HTML=`which rst2html 2> /dev/null || which rst2html.py` |
9446
57d682d7d2da
test-gendoc: test documentation generation
Martin Geisler <mg@lazybytes.net>
parents:
diff
changeset
|
5 |
9485
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
6 HGENCODING=UTF-8 |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
7 export HGENCODING |
9446
57d682d7d2da
test-gendoc: test documentation generation
Martin Geisler <mg@lazybytes.net>
parents:
diff
changeset
|
8 |
9485
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
9 for PO in C $TESTDIR/../i18n/*.po; do |
10282
08a0f04b56bd
many, many trivial check-code fixups
Matt Mackall <mpm@selenic.com>
parents:
9485
diff
changeset
|
10 LOCALE=`basename $PO .po` |
9485
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
11 echo |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
12 echo "% extracting documentation from $LOCALE" |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
13 echo ".. -*- coding: utf-8 -*-" > gendoc-$LOCALE.txt |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
14 echo "" >> gendoc-$LOCALE.txt |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
15 LC_ALL=$LOCALE python $TESTDIR/../doc/gendoc.py >> gendoc-$LOCALE.txt || exit |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
16 |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
17 # We run rst2html over the file without adding "--halt warning" to |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
18 # make it report all errors instead of stopping on the first one. |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
19 echo "checking for parse errors with rst2html" |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
20 $RST2HTML gendoc-$LOCALE.txt /dev/null |
7d6ac5d7917c
test-gendoc: add tests for all languages
Martin Geisler <mg@lazybytes.net>
parents:
9446
diff
changeset
|
21 done |