'From Squeak 2.5 of August 6, 1999 on 9 January 2000 at 7:31:30 pm'! Object subclass: #ComSwikiStartUp instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'ComSwiki-setting'! !ComSwikiStartUp commentStamp: '' prior: 0! M.U 5/10/1999 21:25! "-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- "! ComSwikiStartUp class instanceVariableNames: ''! !ComSwikiStartUp class methodsFor: 'starting' stamp: 'M.U 1/9/2000 19:31'! startUp Transcript cr; show: self name, ' now starting ComSwiki...'. Comanche startOnPort: 8080 package: #swikiWebServer.! ! !ComSwikiStartUp class methodsFor: 'shutting down' stamp: 'M.U. 1/9/2000 16:56'! shutDown Transcript cr; show: self name, ' now shutting down ComSwiki...'. Comanche httpdStopOnPort: 8080! ! !ComSwikiStartUp class methodsFor: 'register/unregister' stamp: 'M.U. 1/9/2000 16:46'! initialize "ComSwikiStartUp initialize" Smalltalk addToStartUpList: self. Smalltalk addToShutDownList: self.! ! !ComSwikiStartUp class methodsFor: 'register/unregister' stamp: 'M.U. 1/9/2000 16:46'! obsolete "ComSwikiStartUp obsolete" Smalltalk removeFromStartUpList: self. Smalltalk removeFromShutDownList: self.! ! ComSwikiStartUp initialize!