Overview
Comment: | Don't give details of Se De Sf Df INTF |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a45d53f1130c614fe5ea28970e7bfeb2 |
User & Date: | gawthrop@users.sourceforge.net on 2004-02-10 16:12:21 |
Other Links: | branch diff | manifest | tags |
Context
2004-02-11
| ||
10:10:14 | Includes a _pic.fig file (schematic) if such exists check-in: b08d59c51d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2004-02-10
| ||
16:12:21 | Don't give details of Se De Sf Df INTF check-in: a45d53f113 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:11:01 | Removed debug check-in: 822cf99f8c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/abg2tex from [cf8668b8eb] to [1c0dfa10eb].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 2001/07/12 04:02:53 gawthrop ## Now fixes multiports for input and output as well as state ## ## Revision 1.2 2000/11/27 17:45:00 peterg ## Removed "System" from heading ## ## Revision 1.1 2000/11/27 15:11:15 peterg | > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 2002/04/28 18:41:26 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.3 2001/07/12 04:02:53 gawthrop ## Now fixes multiports for input and output as well as state ## ## Revision 1.2 2000/11/27 17:45:00 peterg ## Removed "System" from heading ## ## Revision 1.1 2000/11/27 15:11:15 peterg |
︙ | ︙ | |||
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | ## Revision 1.2 1997/05/19 16:25:53 peterg ## Explicit include of tex files .. latex2html seems to prefer this! ## # Revision 1.1 1997/05/19 11:30:00 peterg # Initial revision # ############################################################### #Look for a command line argument while [ -n "`echo $1 | grep '^-'`" ]; do case $1 in -pdf ) pdf='-pdf' ;; -s ) sensitivity='-s' | > > > > > > > > > > > > > | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | ## Revision 1.2 1997/05/19 16:25:53 peterg ## Explicit include of tex files .. latex2html seems to prefer this! ## # Revision 1.1 1997/05/19 11:30:00 peterg # Initial revision # ############################################################### ## Subsystems that don't need documentation ignore(){ gawk ' BEGIN{ ignored = " Se De Sf Df INTF "; } { subsys = sprintf(" %s ", $1); if (match(ignored,subsys0)==0) print $1 }' } #Look for a command line argument while [ -n "`echo $1 | grep '^-'`" ]; do case $1 in -pdf ) pdf='-pdf' ;; -s ) sensitivity='-s' |
︙ | ︙ | |||
131 132 133 134 135 136 137 | \label{sec:$1_sub} \index{\textbf{$1} -- subsystems} EOF cat $1_sub.tex >> $filename #Now do the subsystems (if at top level) if [ -z "$2" ]; then | | | 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | \label{sec:$1_sub} \index{\textbf{$1} -- subsystems} EOF cat $1_sub.tex >> $filename #Now do the subsystems (if at top level) if [ -z "$2" ]; then sub2subs $1 | sort -u | ignore \ gawk '{print "abg2tex", pdf, $1, filename}' pdf=$pdf filename=$filename | sh fi |