Overview
Comment: | Uncompress _abg.dia if necessary before calling dia2abg.pl |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
468481d575210b5fcca095368a1afc2d |
User & Date: | geraint@users.sourceforge.net on 2004-07-29 17:38:19 |
Other Links: | branch diff | manifest | tags |
Context
2004-07-29
| ||
17:46:45 | Removed error if label file has less than three fields. check-in: 1733343d63 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
17:38:19 | Uncompress _abg.dia if necessary before calling dia2abg.pl check-in: 468481d575 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2004-07-23
| ||
11:05:27 | Updated Reduce URL: http://www.reduce-algebra.com check-in: 90ed89c4ff user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/abg2cmp_dia2txt from [db39850f41] to [1bb3659b08].
1 2 3 4 5 6 7 8 9 10 11 | #! /bin/sh ### abg2cmp_dia2txt ## Creates list of components contained in _abg.dia ## Copyright (C) 2002 by Geraint Paul Bevan ###################################### ##### Model Transformation Tools ##### ###################################### set -e | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #! /bin/sh ### abg2cmp_dia2txt ## Creates list of components contained in _abg.dia ## Copyright (C) 2002 by Geraint Paul Bevan ###################################### ##### Model Transformation Tools ##### ###################################### set -e mtt_uncompress.sh $1_abg.dia dia2abg.pl --create_component_list --diagram_name=$1 |
Modified mttroot/mtt/bin/trans/abg_dia2m from [16592fa595] to [eeab67c124].
1 2 3 4 5 6 7 8 9 10 11 | #! /bin/sh ### abg2cmp_dia2txt ## Creates _abg.m from _abg.dia ## Copyright (C) 2002 by Geraint Paul Bevan ###################################### ##### Model Transformation Tools ##### ###################################### set -e | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #! /bin/sh ### abg2cmp_dia2txt ## Creates _abg.m from _abg.dia ## Copyright (C) 2002 by Geraint Paul Bevan ###################################### ##### Model Transformation Tools ##### ###################################### set -e mtt_uncompress.sh $1_abg.dia dia2abg.pl --create_abg --diagram_name=$1 |
Added mttroot/mtt/bin/trans/mtt_uncompress.sh version [f07c5061fe].
> > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | #! /bin/sh file=$1 gzip --test --quiet $file 2> /dev/null ; file_is_uncompressed=$? if [[ $file_is_uncompressed -eq 0 ]]; then gz=`mktemp $file.gz.tmpXXXXXX` mv $file $gz zcat $gz > $file fi |