'From Squeak 2.4b of April 23, 1999 on 10 May 1999 at 9:47:20 pm'! Object subclass: #SwikiStartUp instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'Swiki-setting'! !SwikiStartUp commentStamp: 'M.U 5/10/1999 21:25' prior: 0! M.U 5/10/1999 21:25! "-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- "! SwikiStartUp class instanceVariableNames: ''! !SwikiStartUp class methodsFor: 'starting' stamp: 'M.U 5/10/1999 21:45'! startUp Transcript cr; show: self name, ' now recovering SwikiActions...'. (PWS actions select: [ :action | action isKindOf: SwikiAction ]) do: [ :action | action restore: action name ]. Transcript cr; show: self name, ' now starting Swiki...'. PWS serveOnPort: 8079 loggingTo: 'log.txt'.! ! !SwikiStartUp class methodsFor: 'register/unregister' stamp: 'M.U 5/10/1999 21:30'! initialize "SwikiStartUp initialize" Smalltalk addToStartUpList: self.! ! !SwikiStartUp class methodsFor: 'register/unregister' stamp: 'M.U 5/10/1999 21:31'! obsolete "SwikiStartUp obsolete" Smalltalk removeFromStartUpList: self.! ! SwikiStartUp initialize!