The Artima Developer Community
Sponsored Link

Agile Buzz Forum
Building BottomFeeder in 7.5

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
James Robertson

Posts: 29924
Nickname: jarober61
Registered: Jun, 2003

David Buck, Smalltalker at large
Building BottomFeeder in 7.5 Posted: May 4, 2007 5:36 PM
Reply to this message Reply

This post originated from an RSS feed registered with Agile Buzz by James Robertson.
Original Post: Building BottomFeeder in 7.5
Feed Title: Cincom Smalltalk Blog - Smalltalk with Rants
Feed URL: http://www.cincomsmalltalk.com/rssBlog/rssBlogView.xml
Feed Description: James Robertson comments on Cincom Smalltalk, the Smalltalk development community, and IT trends and issues in general.
Latest Agile Buzz Posts
Latest Agile Buzz Posts by James Robertson
Latest Posts From Cincom Smalltalk Blog - Smalltalk with Rants

Advertisement

I've now got BottomFeeder into a state where you can do a simple build using VW 7.5. Here's the build script I'm using for my development image - the only change necessary will be in the name you use to access the public story repository - I've saved mine under the name "cincomsmalltalk". Anyway, here's the script. Use it with this command line:

visual visual.im -filein build-bf-dev.st

| profile |
#(
     '$(VISUALWORKS)\database\oraclethapiexdi.pcl'
     '$(VISUALWORKS)\contributed\PostgreSQL\StoreForPostgreSQL.pcl'
     '$(VISUALWORKS)\store\StoreForOracle.pcl'
     '$(VISUALWORKS)\parcels\RBSUnitExtensions.pcl'
     '$(VISUALWORKS)\net\NetClients.pcl'
	  '$(VISUALWORKS)\contributed\Heeg\GHSpeedUpXMLParser.pcl'
	  '$(VISUALWORKS)\parcels\Model-Observables.pcl' 
	  '$(VISUALWORKS)\parcels\CE.pcl'
	  '$(VISUALWORKS)\preview\Unicode\AllEncodings.pcl'
	  '$(VISUALWORKS)\preview\Unicode\UnicodeCharacterInput.pcl' 
	  '$(VISUALWORKS)\dllcc\DLLCC.pcl'
	  '$(VISUALWORKS)\parcels\XSL.pcl'
	  '$(VISUALWORKS)\parcels\UIPainter.pcl'	
	  '$(VISUALWORKS)\opentalk\Opentalk-STST.pcl'
	  '$(VISUALWORKS)\webservices\UDDIInquire.pcl'
	  '$(VISUALWORKS)\image\rss\WindowsGoodies.pcl'
	  '$(VISUALWORKS)\parcels\MacExtra.pcl'
	  '$(VISUALWORKS)\packaging\RuntimePackager.pcl'
	  '$(VISUALWORKS)\image\rss\ImageConfig.pcl'
	  '$(VISUALWORKS)\contributed\VRGoodies\VRFileReading.pcl'
	  '$(VISUALWORKS)\contributed\CraftedMemoryPolicy\CraftedMemoryPolicy.pcl'
	  '$(VISUALWORKS)\waveserver\Wave-Server-Base.pcl'
	  '$(VISUALWORKS)\waveserver\Wave-Server.pcl'
) do: [:each |
        Parcel loadParcelFrom: each].

"set space sizes to a bigger client state"
ObjectMemory sizesAtStartup: #(5.0 5.0 10.0 5.0 2.0 10.0 3.0).

"read in VW Settings - the next two sections assume that you have 
saved your settings for Store, and that you have a connection 
named cincomsmalltalk"
Store.RepositoryManager importRepositoriesFromXmlOn: 'repositories.xml' asFilename  readStream.

"load from Store - connect to public store first"
profile := Store.RepositoryManager repositories 
	detect: [:each | 'cincomsmalltalk' = each name] 
	ifNone: [nil].
profile ifNil: [^self].
Store.DbRegistry connectTo: profile.

"now load from store"
(Store.Package newestVersionWithName: 'TransparentWindows') loadSrc.
(Store.Bundle newestVersionWithName: 'SpellChecker') loadSrc.
(Store.Package newestVersionWithName: 'WinGDIPlusInterface') loadSrc.
(Store.Bundle newestVersionWithName: 'EpiWin32Folder') loadSrc.
(Store.Package newestVersionWithName: 'GIFSupport') loadSrc.
(Store.Package newestVersionWithName: 'Weaklings') loadSrc.
(Store.Package newestVersionWithName: 'Emote-Support') loadSrc.
(Store.Package newestVersionWithName: 'ExtraEmphases') loadSrc.
(Store.Package newestVersionWithName: 'ExtraActivity') loadSrc.
(Store.Package newestVersionWithName: 'VRCommonDialogs') loadSrc.
(Store.Package newestVersionWithName: 'XmlRpcClient') loadSrc.
(Store.Package newestVersionWithName: 'SubForkPreload') loadSrc.
(Store.Package newestVersionWithName: 'SubFork') loadSrc.
(Store.Package newestVersionWithName: 'Http-Overrides') loadSrc.
(Store.Package newestVersionWithName: 'NetResources') loadSrc.
(Store.Package newestVersionWithName: 'NetResourcesHTTP') loadSrc.
(Store.Package newestVersionWithName: 'NetResourcesHTML') loadSrc.
(Store.Package newestVersionWithName: 'LibTidy') loadSrc.
(Store.Package newestVersionWithName: 'Browsing-Assist') loadSrc.
(Store.Package newestVersionWithName: 'OSTimeZone') loadSrc.
(Store.Package newestVersionWithName: 'XML Configuration Files') loadSrc.
(Store.Package newestVersionWithName: 'PatchFileDelivery') loadSrc.
(Store.Package newestVersionWithName: 'Twoflower') loadSrc.
(Store.Package newestVersionWithName: 'TwoflowerHTMLParser') loadSrc.
(Store.Package newestVersionWithName: 'Win32TaskbarSupport') loadSrc.
(Store.Package newestVersionWithName: 'Windows TrayIcons') loadSrc.
(Store.Bundle newestVersionWithName: 'WS-Pollock') loadSrc. 
(Store.Package newestVersionWithName: 'SandboxedSmalltalk') loadSrc.
(Store.Package newestVersionWithName: 'ScalingScreenGraphicsContext') loadSrc.
(Store.Package newestVersionWithName: 'RelativeURL') loadSrc.
(Store.Package newestVersionWithName: 'File Repository') loadSrc.
(Store.Bundle newestVersionWithName: 'WSBundle') loadSrc. 
(Store.Package newestVersionWithName: 'CommonTypeMappings') loadSrc. 
(Store.Package newestVersionWithName: 'BtfNamespace') loadSrc. 


"now load BottomFeeder"
(Store.Package newestVersionWithName: 'BFSharedicons') loadSrc.
(Store.Bundle newestVersionWithName: 'Blog-Tools') loadSrc.
(Store.Bundle newestVersionWithName: 'BottomFeeder') loadSrc.


"disconnect"
Store.DbRegistry disconnect.

"save image"
ObjectMemory saveAs: 'btf-dev' thenQuit: false.

Read: Building BottomFeeder in 7.5

Topic: Application Frameworks Experience Report Previous Topic   Next Topic Topic: Seaside Experience Report

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use