Overview
| Comment: | Counts abg.m instead of fig files so that dia models are also included. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5438f2e9dfc0eb0d3099ba0fb1b3404b |
| User & Date: | geraint@users.sourceforge.net on 2004-08-26 16:15:40.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2004-08-26
| ||
| 16:17:25 | Piped errors to /dev/null to prevent complaints from ls about non-existent files. check-in: 71ad7f6cb3 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 16:15:40 | Counts abg.m instead of fig files so that dia models are also included. check-in: 5438f2e9df user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 16:11:48 | Fixed ignore() and pipe so that subsystems are included in reports again. check-in: b33459459c user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/sub_sh2tex
from [d4a0a83f4c]
to [dc7875384c].
| ︙ | ︙ | |||
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.4 2004/02/10 10:22:10 gawthrop ## Do proper arithmetic via let ## Three levels of output ## enumerate, not itemize ## ## Revision 1.3 2004/02/10 10:13:05 gawthrop ## Handles #SUMMARY correctely | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 2004/02/10 16:11:01 gawthrop ## Removed debug ## ## Revision 1.4 2004/02/10 10:22:10 gawthrop ## Do proper arithmetic via let ## Three levels of output ## enumerate, not itemize ## ## Revision 1.3 2004/02/10 10:13:05 gawthrop ## Handles #SUMMARY correctely |
| ︙ | ︙ | |||
99 100 101 102 103 104 105 | echo >> $filename fi # Write list item if not at the top level. if [ -n "$2" ]; then #Set up some names filename=$2 | | | | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
echo >> $filename
fi
# Write list item if not at the top level.
if [ -n "$2" ]; then
#Set up some names
filename=$2
abgfile=$3_abg.m
lblfile=$1_lbl.txt
summary='[%|#]SUMMARY'
#Get the system description, copying where necesary
mtt -q -u compcopy $system $MTT_LIB/comp/compound
# mtt -q -u $system lbl txt
desc=`grep $summary $lblfile | sed "s/$summary//"`
#Count the number of subsystems
subs=`grep -c " $system" $abgfile`
if [ "$labels" = "yes" ]; then
echo ' \item '$desc ' ('$subs') Section \Ref{sec:'$system'}' >> $filename
else
echo ' \item' $desc ' ('$subs')' >> $filename
fi
fi
|
| ︙ | ︙ |