Changeset 2080 for trunk/gui


Ignore:
Timestamp:
Feb 2, 2011, 4:51:29 PM (14 years ago)
Author:
mmc
Message:

Part 1 of a major reorganization of content. Moving "instant" to "builder"
and setting up "builder" more like the "gui" part as a package. Moving the
Rappture::object stuff from the builder into the main installation, so it
can be shared by the tester as well. Moving "driver" into gui/scripts
where it belongs. Creating a new "launcher.tcl" script that decides
which of the three parts to launch based on command line options. Still
need to sort out the Makefiles to get this all right...

Location:
trunk/gui
Files:
1 added
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/gui/apps/Makefile.in

    r1944 r2080  
    2222SCRIPTS = \
    2323                encodedata \
    24                 $(srcdir)/driver \
     24                $(srcdir)/launcher.tcl \
    2525                $(srcdir)/grabdata \
    2626                $(srcdir)/nanovis-test \
  • trunk/gui/apps/rappture.in

    r1981 r2080  
    99# ======================================================================
    1010#  AUTHOR:  Michael McLennan, Purdue University
    11 #  Copyright (c) 2004-2007  Purdue Research Foundation
     11#  Copyright (c) 2004-2011  Purdue Research Foundation
    1212#
    1313#  See the file "license.terms" for information on usage and
     
    1616dir=`dirname $0`
    1717. $dir/rappture.env
    18 exec $dir/driver $*
     18exec $dir/launcher.tcl $*
  • trunk/gui/scripts/main.tcl

    r2076 r2080  
    99#
    1010#  RUN AS FOLLOWS:
    11 #    driver ?-tool <toolfile>?
     11#    wish main.tcl ?-tool <toolfile>?
    1212#
    1313#  If the <toolfile> is not specified, it defaults to "tool.xml" in
     
    1616# ======================================================================
    1717#  AUTHOR:  Michael McLennan, Purdue University
    18 #  Copyright (c) 2004-2005  Purdue Research Foundation
     18#  Copyright (c) 2004-2011  Purdue Research Foundation
    1919#
    2020#  See the file "license.terms" for information on usage and
    2121#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    2222# ======================================================================
    23 #\
    24 exec wish "$0" $*
    25 # ----------------------------------------------------------------------
    26 # wish executes everything from here on...
    27 
    2823package require Itcl
    2924package require Rappture
Note: See TracChangeset for help on using the changeset viewer.