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: 7bf6b22e52979d5897e20086bff03b0f4db5d82e6aa1a1320334d34161629334
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: de8a6e6d8a user: geraint@users.sourceforge.net tags: origin/master, trunk
17:38:19
Uncompress _abg.dia if necessary before calling dia2abg.pl check-in: 7bf6b22e52 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: 522a309488 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
12

13
#! /bin/sh

### abg2cmp_dia2txt
## Creates list of components contained in _abg.dia
## Copyright (C) 2002 by Geraint Paul Bevan

  ###################################### 
  ##### Model Transformation Tools #####
  ######################################

set -e
  

dia2abg.pl --create_component_list --diagram_name=$1











|
>

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
12

13
#! /bin/sh

### abg2cmp_dia2txt
## Creates _abg.m from _abg.dia
## Copyright (C) 2002 by Geraint Paul Bevan

  ###################################### 
  ##### Model Transformation Tools #####
  ######################################

set -e
  

dia2abg.pl --create_abg --diagram_name=$1











|
>

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


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]