Hi Sean,

I've been looking at this post:
http://forum.world.st/UbiquiTalk-running-in-Pharo-1-1-td2400767.html
and I see you have UbiquiTalk running on Squeak 4.1.

I've got the shorter loading script here (from after you got update access to the rST and UbiquiTalk repos).
You made a change ( UbiquiTalk-Platform.pharo ) to load into Pharo.
What do I need to change in this to make it load in Squeak?

Thanks,
Chris


Gofer new 
        squeaksource: 'KomHttpServer'; 
        package: 'DynamicBindings'; 
        package: 'KomServices'; 
        load. 
        
Gofer new 
        squeaksource: 'rST'; 
        package: 'rST'; 
        load. 

Gofer new 
      squeaksource: 'OSProcess'; 
        package: 'OSProcess'; 
        load. 

Gofer new 
      squeaksource: 'UbiquiTalk'; 
        package: 'UbiquiTalk-Platform.pharo'; 
        package: 'UbiquiTalk-Utilities';  "depends on Platform" 
        package: 'UbiquiTalk-Kernel'; "depends on Utilities" 
        package: 'UbiquiTalk-Cache'; "depends on Kernel" 
        package: 'UbiquiTalk-GUI'; "depends on Kernel" 
        package: 'UbiquiTalk-Plugins'; "depends on Kernel" 
        package: 'UbiquiTalk-PDA'; 
        package: 'UbiquiTalk-Property Editors'; 
        package: 'UbiquiTalk-Tests'; 
        package: 'UTAllServices'; 
        load.