Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check-coverage « docs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b73ffa9c35598cd2fa6a10ef3cf58162d5dbc10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
add_h4()
{
	sed -e 's,^\(.*\)$,<h4><a name="api:\1">\1</a></h4>,'
}

dir=`dirname $0`
sh $dir/produce-lists || exit 1
cat $dir/public-api $dir/wapi > $dir/current-api
for i in `cat $dir/current-api`; do
	if grep "api:$i" $dir/sources/mono-api-*.html > /dev/null; then
		true;
	else
		echo "Missing: $i from the template";
	fi
done