added deterministic test method
[strongtalk-kjk.git] / startPage.html
blobc52208febc8669412f232037fde5ed37010889bf
1 <html>
2 <head><title>Strongtalk Start Page</title></head>
3 <body>
5 <h2 align="center">Welcome to the Strongtalk System!</h2>
7 <p>This is the Strongtalk start page. It is designed to be viewed using the
8 Strongtalk browser, not a regular html browser, because it contains Smalltalk
9 code. Pressing the
10 <smappl visual=" Button
11 withImage: (Image fromFile: (FilePath for: 'resources/smallHome.bmp'))
12 action: [ :b | ] ">
13 button on the Strongtalk Launcher (which is probably right behind this window)
14 will always open this page. </p>
16 <p>Feel free to modify this page to contain links to
17 your commonly used commands, classes, and applications. This is
18 useful because the Strongtalk browser, while very primitive
19 in most respects, contains enhancements that let you attach 'do it'
20 code to links (Smalltalk code that is executed when you click on the link). You can also easily imbed Smalltalk applications
21 directly into pages, using the <strong>smappl</strong> tag. This page contains
22 some examples of these techniques that you can copy and modify. To edit
23 this page, press the
24 <smappl visual=" Button
25 withImage: (Image fromFile: (FilePath for: 'resources/edit.bmp'))
26 action: [ :b | (TextEditor on: (FilePath for: 'startPage.html')) launch ] ">
27 button on the toolbar.</p>
29 <h3><a href="documentation/index.html">Browse Documentation</a></h3>
31 <h3 align="left">Some Important Classes</h3>
33 <ul>
34 <li><smappl visual="ClassHierarchyOutliner imbeddedVisualForClass: Object"></li>
35 <li><smappl visual="ClassHierarchyOutliner imbeddedVisualForClass: Collection"></li>
36 <li><smappl visual="ClassHierarchyOutliner imbeddedVisualForClass: Visual"></li>
37 <li><smappl visual="ClassHierarchyOutliner imbeddedVisualForClass: Application"></li>
38 </ul>
40 <h3 align="left">Applications</h3>
42 <ul>
43 <li><a doit="TextEditor new launch">Text Editor</a> </li>
44 <li><a doit="Mandelbrot new launch">Mandelbrot Set</a> </li>
45 <li><a doit="SystemMonitor new launch">System Monitor</a> </li>
46 </ul>
48 <h3 align="left">Actions</h3>
50 <ul>
51 <li><a doit="VM collectGarbage">Collect Garbage</a> </li>
52 </ul>
54 <h3 align="left">Files</h3>
56 <ul>
57 <li><a doit="(TextEditor on: (FilePath for: '.strongtalkrc')) launch">VM Startup Options File (.strongtalkrc)</a> </li>
58 <li><a doit="(TextEditor on: (FilePath for: 'source/strongtalkSave.log')) launch">Source Save Log</a>
59 (If this file, 'source/strongtalkSave.log', exists, it accumulates saved changes. The normal change log,
60 'source/strongtalkchange.log', accumulates all changes, even unsaved one.) </li>
61 </ul>
62 </body>
63 </html>