Lukas Renggli wrote:
sounds great. The order should be:
1. Magritte-Model-vw5.st
2. Magritte-Tests-vw5.st (tests/depends on model)
3. Magritte-Seaside-vw5.st (depends on model)
The last package of course also depends on Seaside,
that comes with a
bunch of Squeak compatibility methods that might help for the other
packages as well.
Ok.. I lied (or spoke too soon)..
Apparently when I hastily did this import yesterday, I forgot
(haven't worked in the Smalltalk environment for several months now)
to have some of the other windows visible and didn't see the following
complaints (for loading just the model file) being spewed to the
console:
Filing in from:
/home/rickf/src/dev/smalltalk/squeak/Magritte-Model-vw5.st
(Object #mementoClass - MACheckedMemento is undeclared)
(Class #defaultContainer - MAPriorityContainer is undeclared)
(Object class #description - MACachedBuilder is undeclared)
(BlockContext #asCondition - MAConditionBuilder is undeclared)
(Magritte.MACachedBuilder #register - SystemChangeNotifier is undeclared)
(Magritte.MAColorDescription #kind - Color - duplicateBindings)
(Magritte.MAColorDescription #kind - Color is undeclared)
(Magritte.MADateDescription #kind - Date - duplicateBindings)
(Magritte.MADateDescription #kind - Date is undeclared)
(Magritte.MADistribution #publish - HTTPSocket is undeclared)
(Magritte.MADistribution #zip - ZipArchive is undeclared)
(Magritte.MADistribution #addPackage: - MCWorkingCopy is undeclared)
(Magritte.MADistribution #basePackages - MCPackage is undeclared)
(Magritte.MADistribution #addPackage:workingCopy: - MCVersion is undeclared)
(Magritte.MADurationDescription #kind - Duration is undeclared)
(Magritte.MADynamicObject #realSubject - UnhandledError is undeclared)
(Magritte.MATimeDescription #kind - Time - duplicateBindings)
(Magritte.MATimeDescription #kind - Time is undeclared)
(Magritte.MATimeStampDescription #kind - TimeStamp is undeclared)
(Magritte.MACompatibility class #confirm: - PopUpMenu is undeclared)
(Magritte.MACompatibility class #referenceStream: - ReferenceStream is undeclared)
(Magritte.MACompatibility class #referenceStream: - RWBinaryOrTextStream is undeclared)
(Magritte.MACompatibility class #request:default: - FillInTheBlankMorph is undeclared)
(Magritte.MACompatibility class #request:default: - ActiveHand is undeclared)
(Magritte.MACompatibility class #request:default: - ActiveWorld is undeclared)
(Magritte.MACompatibility class #uuid - UUID is undeclared)
I'm assuming that these are defined in the Squeak environment and were just
missed on the export from the squeak to visualworks environment.. If that's
correct, what should I look for in order to adjust the output to get them
included as well.. If that's not what I should be looking for, can you point
me in the right direction?
Also -- IF I'm able to get things all loaded up OK and add the missing initialize
methods as you indicated earlier, how do I go about running the tests? I poked around
in some of the test code last night but wasn't sure how to go about running
these tests.. Thanks!
-- Rick