Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/NickAger/builder
Browse files Browse the repository at this point in the history
  • Loading branch information
renggli committed Mar 26, 2012
2 parents 7d1fc04 + 6f9d71a commit b10c604
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions scripts/seaside3-oneclick.st
Expand Up @@ -6,15 +6,14 @@ SystemWindow topWindow
(Workspace new
contents: (String streamContents: [ :stream |
stream
nextPutAll: 'Welcome to Seaside ';
nextPutAll: '"Welcome to Seaside ';
nextPutAll: GRPlatform current seasideVersion greaseString;
nextPut: $.;
cr; cr;
nextPutAll: 'Seaside is already running on port 8080. To get started, simply use your browser to open http://localhost:8080/ and take a look at the examples and documentation listed there.';
cr; cr;
nextPutAll: 'You can start and stop the server (and change the port) using the new Seaside Control Panel.' ]);
nextPutAll: 'You can start and stop the server (and change the port) using the Seaside Control Panel."' ]);
openLabel: 'Seaside ', GRPlatform current seasideVersion greaseString;
toggleStylingActive;
topView)
width: 450;
height: 210;
Expand Down
5 changes: 2 additions & 3 deletions scripts/seaside31-oneclick.st
Expand Up @@ -6,15 +6,14 @@ SystemWindow topWindow
(Workspace new
contents: (String streamContents: [ :stream |
stream
nextPutAll: 'Welcome to Seaside ';
nextPutAll: '"Welcome to Seaside ';
nextPutAll: GRPlatform current seasideVersion greaseString;
nextPut: $.;
cr; cr;
nextPutAll: 'Seaside is already running on port 8080. To get started, simply use your browser to open http://localhost:8080/ and take a look at the examples and documentation listed there.';
cr; cr;
nextPutAll: 'You can start and stop the server (and change the port) using the new Seaside Control Panel.' ]);
nextPutAll: 'You can start and stop the server (and change the port) using the Seaside Control Panel."' ]);
openLabel: 'Seaside ', GRPlatform current seasideVersion greaseString;
toggleStylingActive;
topView)
width: 450;
height: 210;
Expand Down

0 comments on commit b10c604

Please sign in to comment.