Overview
Comment:Handles new Fig header line.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: edda44204dcb879e70bbcb0646d8f25439affeabdee45bb0589785fabbb53d7f
User & Date: gawthrop@users.sourceforge.net on 2004-04-07 12:17:43
Other Links: branch diff | manifest | tags
Context
2004-04-07
12:58:48
Now row/column independent check-in: 8334228604 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
12:17:43
Handles new Fig header line. check-in: edda44204d user: gawthrop@users.sourceforge.net tags: origin/master, trunk
2004-03-15
16:23:52
Return more information check-in: faee6e2e73 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/trans/awk/rbg_fig2m.awk from [8cd4399f36] to [154be7af66].

8
9
10
11
12
13
14



15
16
17
18
19
20
21
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24







+
+
+







# Copyright (c) P.J.Gawthrop, 1996.

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.44  2002/05/25 09:23:47  gawthrop
## Self-naming components: name is mttTYPE or mttTYPE_2 ...
##
## Revision 1.43  2002/05/22 10:33:18  gawthrop
## Nameless components are now named according to type - replaces old
## mtt1 etc style.
##
## Revision 1.42  2002/03/26 12:05:27  geraint
## Escaped characters to eliminate awk warnings.
##
552
553
554
555
556
557
558



559
560
561
562
563
564
565
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571







+
+
+







	printf(" %s", $i)  >> fig_file;
    if (NF==1) 
	printf(" ")   >> fig_file; # Put space after header fields
    printf("\n") >> fig_file
    }

# Header
  if ($1=="#FIG") 
    printf("%s", $0)  >> head_file;

  if ( NF<3 ) {
	printf("%s", $1)  >> head_file;
        for (i=2; i<=NF; i++)
	  printf(" %s", $i)  >> head_file;
	if (NF==1) 
	    printf(" ")   >> head_file; # Put space after header fields
	printf("\n") >> head_file


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