Overview
Comment: | Included component alias. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d25a7dca7accd3a335c4cc27a4e0c3a6 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-17 19:46:44 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-17
| ||
19:46:56 | No change check-in: 8732ff0014 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:46:44 | Included component alias. check-in: d25a7dca7a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:45:58 | Component aliases implemented. check-in: 3db90b2a24 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lbl_txt2tex from [565c1e9346] to [73900a6819].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1998/07/16 16:34:09 peterg ## Cosmetic changes ## ## Revision 1.1 1998/07/16 16:31:47 peterg ## Initial revision ## ############################################################### # Inform user echo Creating $1_lbl.tex #Create the alias file complete with headers. echo "% Label summary file ($1_lbl.tex)" > $1_lbl.tex echo "% Generated by MTT at `date`" >> $1_lbl.tex #Write out the Description grep '[%|#]SUMMARY' $1_lbl.txt | sed 's/_/\\_/g' |\ awk '{ print "\\paragraph{System " $2 ":" | > > > | | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1998/07/16 20:39:52 peterg ## More cosmetic changes ## ## Revision 1.2 1998/07/16 16:34:09 peterg ## Cosmetic changes ## ## Revision 1.1 1998/07/16 16:31:47 peterg ## Initial revision ## ############################################################### # Inform user echo Creating $1_lbl.tex #Create the alias file complete with headers. echo "% Label summary file ($1_lbl.tex)" > $1_lbl.tex echo "% Generated by MTT at `date`" >> $1_lbl.tex #Write out the Description grep '[%|#]SUMMARY' $1_lbl.txt | sed 's/_/\\_/g' |\ awk '{ print "\\paragraph{System " $2 ":" for (i=3;i<=NF;i++) printf("%s ",$i); print "" print "}" }' >> $1_lbl.tex grep '[%|#]DESCRIPTION' $1_lbl.txt | sed 's/_/\\_/g' |\ awk '{ 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' |\ awk '{ if (match($2,"\\$")>0){ print "\\item [Parameter \\" $2 "] represents actual parameter \\textbf{" $3 "}" } else if (match($3,"/")>0){ print "\\item [Component " $2 "] is in library \\textbf{" $3 "}" } else{ print "\\item [Port " $2 "] represents actual port \\textbf{" $3 "}" } } END{if (NR==0) print "\\item This component has no aliases" }' | sort >> $1_lbl.tex cat <<EOF >> $1_lbl.tex |
︙ | ︙ |