Overview
| Comment: | Don't write out the detailed description |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5af6e3bde208a14e644a19a1429ba703 |
| User & Date: | gawthrop@users.sourceforge.net on 2004-02-11 10:22:35.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2004-02-17
| ||
| 17:53:34 |
Fixed [ 898739 ] libhdf5 dependency breaks -cc reps. Now uses mkoctfile to determine include and library flags. check-in: 81283653fb user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2004-02-11
| ||
| 10:22:35 | Don't write out the detailed description check-in: 5af6e3bde2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:10:14 | Includes a _pic.fig file (schematic) if such exists check-in: b08d59c51d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lbl_txt2tex
from [d60cfba198]
to [04d132b22f].
| ︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.11 2002/04/19 08:39:45 gawthrop ## Changed \# to # and \% to # to avoid warning in latest gawk version ## ## Revision 1.10 2000/12/28 12:32:06 peterg ## Put under RCS ## ## Revision 1.9 2000/11/16 13:11:06 peterg | > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.12 2002/04/28 18:41:27 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.11 2002/04/19 08:39:45 gawthrop ## Changed \# to # and \% to # to avoid warning in latest gawk version ## ## Revision 1.10 2000/12/28 12:32:06 peterg ## Put under RCS ## ## Revision 1.9 2000/11/16 13:11:06 peterg |
| ︙ | ︙ | |||
60 61 62 63 64 65 66 |
#Write out the Description
grep '[%|#]SUMMARY' $1_lbl.txt | sed 's/_/\\_/g' |\
gawk '{
printf("\\paragraph{System %s:",$2);
for (i=3;i<=NF;i++) printf("%s ",$i); print ""
print "}"
}' >> $1_lbl.tex
| | | | | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
#Write out the Description
grep '[%|#]SUMMARY' $1_lbl.txt | sed 's/_/\\_/g' |\
gawk '{
printf("\\paragraph{System %s:",$2);
for (i=3;i<=NF;i++) printf("%s ",$i); print ""
print "}"
}' >> $1_lbl.tex
# grep '[%|#]DESCRIPTION' $1_lbl.txt | sed 's/_/\\_/g' |\
# gawk '{
# for (i=2;i<=NF;i++) printf("%s ",$i); print ""
# }' >> $1_lbl.tex
#Write out the aliases
cat <<EOF >> $1_lbl.tex
\paragraph{Interface information:}
\begin{description}
EOF
grep '[%|#]ALIAS' $1_lbl.txt | sed 's/_/\\_/g' |\
|
| ︙ | ︙ |