#!/bin/sh
CLASS=$1
cat ../html/hierarchy.html \
| html2text \
| tail -n +13 \
| head -n -2 \
| sed 's/^\( *\). /\1 /' \
| sed 's/ / /g' \
>tmp__hierarchy
cat tmp__hierarchy \
| ./class_hierarchy.pl --class=$CLASS \
| sed 's/ *\(.*\)/\1/' \
> tmp__classes
cat tmp__classes | ./classnames2files.pl | xargs tidy -modify -asxhtml
cat tmp__classes | while read line
do ./filter_html.pl --class=$line
done
cat tmp__classes | xargs ./filter_annotated.pl