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

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
3CLASS=$1
4
5cat ../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
13cat tmp__hierarchy \
14| ./class_hierarchy.pl --class=$CLASS \
15| sed 's/ *\(.*\)/\1/' \
16> tmp__classes
17
18cat tmp__classes | ./classnames2files.pl | xargs tidy -modify -asxhtml
19
20cat tmp__classes | while read line
21    do ./filter_html.pl --class=$line
22done
Note: See TracBrowser for help on using the browser.