Overview
| Comment: | Fixed problem with book in tidy mode. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
403330cc635ecfa9d30d8a678ceb46d9 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-02-05 15:04:25.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-02-05
| ||
| 16:06:53 |
Removed debugging lines. Auto parts in books. check-in: 066e4b6feb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:04:25 | Fixed problem with book in tidy mode. check-in: 403330cc63 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 13:31:25 | Initial revision check-in: 04f27f5a87 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [588f35dc70]
to [3ce1ba1a0c].
| ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.118 1998/02/05 12:00:11 peterg ## Tidy mode now default. ## It seems to work ok but not for book type documents. ## ## Revision 1.117 1998/02/04 16:50:50 peterg ## Introduced the tidy (-t and -T) options ## ## Revision 1.116 1998/02/04 11:00:04 peterg ## Added view of subsystems. ## ## Revision 1.115 1998/01/29 19:37:31 peterg |
| ︙ | |||
403 404 405 406 407 408 409 | 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | - + | ## Put in fig.fig target. ## ## Revision 1.1 1996/08/04 17:29:42 peter ## Initial revision ## ############################################################### |
| ︙ | |||
448 449 450 451 452 453 454 455 456 457 458 459 460 461 | 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | + + |
mtt_switches="$mtt_switches $1";
dae_is_ode=1 ;;
-s )
mtt_switches="$mtt_switches $1";
switches=1 ;;
-d )
directory=$2; cd $directory; shift ;;
-S )
directory=$2; shift;;
-D )
mtt_switches="$mtt_switches $1";
debug=debug ;;
-t )
tidy=tidy ;;
-T )
tidy=tidy;
|
| ︙ | |||
510 511 512 513 514 515 516 517 518 519 520 521 522 523 | 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 | + + + |
echo ' mtt <system_name> <representation> <language> <parameters>'
echo 'Options: -q quiet mode'
echo ' -p print environment variables'
echo ' -c c-code generation'
echo ' -o ode and dae are the same'
echo ' -s use switch (ISW and CSW) components'
echo ' -d <dir> use directory <dir>'
echo ' -t tidy mode (default)'
echo ' -u untidy mode (leaves files in current dir)'
echo ' -d <dir> use directory <dir>'
echo ' -D debug -- leave log files etc'
exit
fi
fi
if [ "$1" = "info" ] && [ "$3" = "" ]; then
|
| ︙ | |||
617 618 619 620 621 622 623 | 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 | + + + + + + - + |
rm -fR $1_rep MTT_work
exit
fi
if [ "$2" = "rep" ]; then
documenttype=article
# See if we are making a book -- ie representation rep on a directory
isMTT_work=`pwd | grep 'MTT_work`
if [ -n "$isMTT_work" ]; then
dotdot='../'
fi
echo $dotdot$1
|
| ︙ | |||
730 731 732 733 734 735 736 | 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 | - + + - + | fi exit fi # Tidy mode - operate in the directory MTT-work if [ "$tidy" = "tidy" ]; then mkdir -p MTT_work |
| ︙ | |||
1067 1068 1069 1070 1071 1072 1073 | 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 | - + | #SUMMARY rep report (txt) #SUMMARY rep report (tex) #SUMMARY rep report (view) ifeq ($documenttype,book) $1_rep.txt: |
| ︙ | |||
1639 1640 1641 1642 1643 1644 1645 | 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 | - + | rm -f mtt_info.txt warning.txt # rm -f *_*.idx *_*.ind *_*.ilg *_*.lof *_*.toc # Remove logs if not debugging if [ "$debug" != "debug" ]; then rm -f *.log else |