Overview
Comment:Explicit figure editing.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 85676c591d46c22844c5623a5a4b1902bc67ac114ef7360b033c048695a03c68
User & Date: gawthrop@users.sourceforge.net on 1996-08-19 06:48:14
Other Links: branch diff | manifest | tags
Context
1996-08-19
09:02:12
Errors go to user - not log. check-in: 9c79bcf917 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
06:48:14
Explicit figure editing. check-in: 85676c591d user: gawthrop@users.sourceforge.net tags: origin/master, trunk
1996-08-18
20:08:02
Included additional structure: structure(5) = zero_outputs. check-in: 31de7aae81 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/mtt from [2da17d5fd3] to [75ab40c51a].

15
16
17
18
19
20
21



22
23
24
25
26
27
28
# Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996.

###############################################################
## Version control history
###############################################################
## $Header$
## $Log$



## Revision 1.15  1996/08/18 12:01:01  peter
## Unified format of time responses.
##
## Revision 1.14  1996/08/16 14:52:24  peter
## Added two alternative view options - dview and pview.
##
## Revision 1.13  1996/08/16 08:24:31  peter







>
>
>







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996.

###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.16  1996/08/18 19:58:36  peter
## Report generation included.
##
## Revision 1.15  1996/08/18 12:01:01  peter
## Unified format of time responses.
##
## Revision 1.14  1996/08/16 14:52:24  peter
## Added two alternative view options - dview and pview.
##
## Revision 1.13  1996/08/16 08:24:31  peter
105
106
107
108
109
110
111

112
113
114
115
116








117
118
119
120
121
122
123
along with this program. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.

EOF
  exit
fi


if [ "$1" = "clean" ] && [$2 = ""]; then
  echo 'Removing log, dat, gdat, doc, dvi and ps files'
  rm -f *.log *.dat *.gdat *.doc *.dvi *.ps 
  exit
fi









# Save up the argument list in a file; but only if argument has changed
ARGS=$4;
cat > $1_args.new <<EOF
$ARGS
EOF








>
|




>
>
>
>
>
>
>
>







108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
along with this program. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.

EOF
  exit
fi

# Clean up after MTT
if [ "$1" = "clean" ] && [ "$2" = "" ]; then
  echo 'Removing log, dat, gdat, doc, dvi and ps files'
  rm -f *.log *.dat *.gdat *.doc *.dvi *.ps 
  exit
fi

# Invoke explicit requests for modification
if [ "$2" = "abg" ] && [ "$3" = "fig" ]; then
  echo Editing $1_$2.$3
  $FIG $1_$2.$3 &
  exit
fi


# Save up the argument list in a file; but only if argument has changed
ARGS=$4;
cat > $1_args.new <<EOF
$ARGS
EOF


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