Overview
| Comment: | *** empty log message *** |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
42dc72d63a64829d3af3260e95b7088f |
| User & Date: | gawthrop@users.sourceforge.net on 2000-04-04 13:09:51.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-04-04
| ||
| 15:22:44 |
Major changes: simple components now work Single components now work check-in: 046cdcada8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 13:09:51 | *** empty log message *** check-in: 42dc72d63a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2000-03-29
| ||
| 11:52:56 | Initial revision check-in: 00739ea236 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt2reps_txt
from [c12b906b4f]
to [88ec0df1c4].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #! /bin/sh # mtt2reps_txt: Gives a tabular listing of representations and languages # P J Gawthrop July 1998, October 1998 # Copyright (c) P.J.Gawthrop, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 1999/03/09 00:03:06 peterg ## Revisions for xmtt ## ## Revision 1.3 1999/03/08 21:24:43 peterg ## Handles * representations: ## ## rep* is special | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #! /bin/sh # mtt2reps_txt: Gives a tabular listing of representations and languages # P J Gawthrop July 1998, October 1998 # Copyright (c) P.J.Gawthrop, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 2000/01/19 17:26:12 peterg ## Now includes the representation title. ## ## Revision 1.4 1999/03/09 00:03:06 peterg ## Revisions for xmtt ## ## Revision 1.3 1999/03/08 21:24:43 peterg ## Handles * representations: ## ## rep* is special |
| ︙ | ︙ | |||
27 28 29 30 31 32 33 |
###############################################################
representations=`grep '#SUMMARY' $MTTPATH/mtt | awk '{print $2'} | sort -u `
for rep in $representations ; do
## Title should be same for all languages -- extract from first version
| | | | | > > > > > | 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 |
###############################################################
representations=`grep '#SUMMARY' $MTTPATH/mtt | awk '{print $2'} | sort -u `
for rep in $representations ; do
## Title should be same for all languages -- extract from first version
title=`grep '#SUMMARY' $MTTPATH/mtt | grep " $rep[ \*]" | head -1 | \
awk '{for (i=3;i<NF;i++) print $i}'`
language=`grep '#SUMMARY' $MTTPATH/mtt |\
awk '
{
if (index(rep,"*")==length(rep)){
if ($2==rep) print $NF
}
else
if (($2==rep)||($2==sprintf("%s*",rep))) print $NF
}' rep=$rep |\
sort -u | sed 's/[()]//g'`
Title='('$title')'
echo $rep $Title $language
# awk '{
# printf( "%s", $1)
# for (i=2;i<=NF;i++) printf("\t%s", $i);
# printf("\n")
# }'
done
|