root/library/doc/toolbox_doc/process_class.sh @ 987

Revision 987, 357 bytes (checked in by miro, 14 years ago)

tools for automatic extraction of toolbox_doc out of doxygen doc

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3CLASS=$1
4
5#cat html/hierarchy.html \
6#| html2text \
7#| sed -n '/\[.\]/p' \
8#| sed 's/\[.\]/  /g' \
9cat hierarchy \
10| ./class_hierarchy.pl --class=$CLASS \
11| sed 's/ *\(.*\)/\1/' \
12> tmp__classes
13
14cat tmp__classes | ./classnames2files.pl | xargs tidy -modify -asxhtml
15
16cat tmp__classes | while read line
17    do ./filter_html.pl --class=$line
18done
Note: See TracBrowser for help on using the browser.