|
Revision 987, 357 bytes
(checked in by miro, 16 years ago)
|
|
tools for automatic extraction of toolbox_doc out of doxygen doc
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | CLASS=$1 |
|---|
| 4 | |
|---|
| 5 | #cat html/hierarchy.html \ |
|---|
| 6 | #| html2text \ |
|---|
| 7 | #| sed -n '/\[.\]/p' \ |
|---|
| 8 | #| sed 's/\[.\]/ /g' \ |
|---|
| 9 | cat hierarchy \ |
|---|
| 10 | | ./class_hierarchy.pl --class=$CLASS \ |
|---|
| 11 | | sed 's/ *\(.*\)/\1/' \ |
|---|
| 12 | > tmp__classes |
|---|
| 13 | |
|---|
| 14 | cat tmp__classes | ./classnames2files.pl | xargs tidy -modify -asxhtml |
|---|
| 15 | |
|---|
| 16 | cat tmp__classes | while read line |
|---|
| 17 | do ./filter_html.pl --class=$line |
|---|
| 18 | done |
|---|