'From etoys2.3 of 28 November 2007 [latest update: #1850] on 18 December 2007 at 2:24:17 pm'! "Change Set: RelBuilderForSqLand3-yo Date: 18 December 2007 Author: Yoshiki Ohshima Setup the update stream for Squeakland upon building an image for it."! !ReleaseBuilderSqueakland methodsFor: 'squeakland' stamp: 'yo 12/18/2007 14:21'! prepareReleaseImageForSqueakland "ReleaseBuilderSqueakland new prepareReleaseImageForSqueakland" self cleanupForSqueakland. self setupUpdateStreamForSqueakland. ! ! !ReleaseBuilderSqueakland methodsFor: 'squeakland' stamp: 'yo 12/18/2007 14:21'! setupUpdateStreamForSqueakland | d | d _ DAVServerDirectory on: 'http://tinlizzie.org/updates/squeakland/updates'. d altUrl: 'http://tinlizzie.org/updates/squeakland/updates'. d moniker: 'Squeakland'. d user: 'tlvpri'. Utilities classPool at: #UpdateUrlLists put: nil. ServerDirectory inImageServers keysDo: [:k | ServerDirectory inImageServers removeKey: k]. ServerDirectory inImageServers at: 'Squeakland' put: d. Utilities updateUrlLists add: (Array with: 'Squeakland' with: #('tinlizzie.org/updates/squeakland/')). SystemVersion newVersion: 'Squeakland-OLPC'. SystemVersion current resetHighestUpdate. ! ! ReleaseBuilderSqueakland removeSelector: #setupUpdateStream!