Skip to content

Commit

Permalink
Added MagLev session to the GemTools launcher
Browse files Browse the repository at this point in the history
Closed all windows except GemTools Launcher
Todo: add something about GemStone and MagLev to the
Welcome Workspace, including 'OGLauncher open.'
  • Loading branch information
Monty Williams committed Feb 7, 2011
1 parent 6f4f58e commit 5b68a4b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions scripts/gemtools.st
Expand Up @@ -5,4 +5,34 @@ Gofer new
load.
!
ConfigurationOfGemTools loadLatestVersion.
OGLauncherNode
addSessionWithDescription:
(OGStandardSessionDescription new
name: 'Seaside';
stoneHost: 'localhost';
stoneName: 'seaside';
gemHost: 'localhost';
netLDI: '50377`';
userId: 'DataCurator';
password: 'swordfish';
backupDirectory: '';
yourself).
OGLauncherNode
addSessionWithDescription:
(OGStandardSessionDescription new
name: 'MagLev';
stoneHost: 'localhost';
stoneName: 'maglev';
gemHost: 'localhost';
netLDI: '50378';
userId: 'DataCurator';
password: 'swordfish';
backupDirectory: '';
yourself).
Transcript clear.
SystemWindow allSubInstancesDo:
[:window | ({ Transcript class. }
anySatisfy: [:wantedClass |
window model isKindOf: wantedClass])
ifFalse: [window delete]].
OGLauncher open.

0 comments on commit 5b68a4b

Please sign in to comment.