Revision 994, 415 bytes
(checked in by miro, 14 years ago)
|
updated default paths
fixed generation of class hierarchy
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | CLASS=$1 |
---|
4 | |
---|
5 | cat ../html/hierarchy.html \ |
---|
6 | | html2text \ |
---|
7 | | tail -n +13 \ |
---|
8 | | head -n -2 \ |
---|
9 | | sed 's/^\( *\). /\1 /' \ |
---|
10 | | sed 's/ / /g' \ |
---|
11 | >tmp__hierarchy |
---|
12 | |
---|
13 | cat tmp__hierarchy \ |
---|
14 | | ./class_hierarchy.pl --class=$CLASS \ |
---|
15 | | sed 's/ *\(.*\)/\1/' \ |
---|
16 | > tmp__classes |
---|
17 | |
---|
18 | cat tmp__classes | ./classnames2files.pl | xargs tidy -modify -asxhtml |
---|
19 | |
---|
20 | cat tmp__classes | while read line |
---|
21 | do ./filter_html.pl --class=$line |
---|
22 | done |
---|