"file: /home/yanni/pub/builder/scripts/seaside28.st"
":::::"
"Kom"
Gofer new
� � � �squeaksource: 'KomHttpServer';
� � � �package: 'DynamicBindings';
� � � �package: 'KomServices';
� � � �package: 'KomHttpServer';
� � � �load.
!
"Seaside"
[ Gofer new
� � � �squeaksource: 'Seaside';
� � � �package: 'Seaside2.8a1';
� � � �load ]
� � � � � � � �valueSupplyingAnswers: {
� � � � � � � � � � � �{ 'username'. 'admin' }.
� � � � � � � � � � � �{ 'password'. 'seaside' }.
� � � � � � � �}.
!
Can you try using ConfigurationOfSeaside ?
The first thing you have to do is to install the configuration (as always):"
���
��� Gofer new
������ squeaksource: ''MetacelloRepository'';
������ package: ''ConfigurationOfSeaside'';
�� load.
���
"Then pick the Seaside variant you want to load:"
�"Seaside 2.8"
�ConfigurationOfSeaside project latestVersion load: ''Seaside 2.8''.
�ConfigurationOfSeaside project latestVersion load: ''Seaside 2.8 Examples''.
�ConfigurationOfSeaside project latestVersion load: ''Magritte''.
�ConfigurationOfSeaside project latestVersion load: ''Magritte Tests''.
�ConfigurationOfSeaside project latestVersion load: ''Pier''.
�ConfigurationOfSeaside project latestVersion load: ''Pier Tests''.
�ConfigurationOfSeaside project latestVersion load: ''Pier AddOns''.
�"Seaside 3.0"
�ConfigurationOfSeaside project latestVersion load: ''Seaside 3.0''.
�ConfigurationOfSeaside project latestVersion load: ''Seaside 3.0 Tests''.
�ConfigurationOfSeaside project latestVersion load: ''Magritte2''.
�ConfigurationOfSeaside project latestVersion load: ''Magritte2 Tests''.
�ConfigurationOfSeaside project latestVersion load: ''Pier2''.
�ConfigurationOfSeaside project latestVersion load: ''Pier2 Tests''.
�ConfigurationOfSeaside project latestVersion load: ''Pier2 AddOns''.
�
":::::"
"file: /home/yanni/pub/builder/scripts/after.st"
":::::"
"Clear Author"
Author reset.
!
"Clear Monticello Caches"
MCCacheRepository instVarNamed: 'default' put: nil.
MCFileBasedRepository flushAllCaches.
MCMethodDefinition shutDown.
MCDefinition clearInstances.
!
"Cleanup Smalltalk"
Smalltalk flushClassNameCache.
Smalltalk organization removeEmptyCategories.
Smalltalk allClassesAndTraitsDo: [ :each |
� � � �each organization removeEmptyCategories; sortCategories.
� � � �each class organization removeEmptyCategories; sortCategories ].
!
"Cleanup System Memory"
3 timesRepeat: [
� � � �Smalltalk garbageCollect.
� � � �Symbol compactSymbolTable ].
!
"Save and Quit"
SmalltalkImage current snapshot: true andQuit: true.
!
_______________________________________________
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project