I am getting a DNU error when clicking the 'browse' button on the Seaside Control Panel.
To reproduce: Top menu->Apps->Seaside Control Panel -> Browse -> throws a Dictionary DNU #collectWithIndex:
The Debugger shows its occurring in the PluggableTreeMorph, so its a GUI issue.
I am running Squeak5.1-16548-64bit.image
Package installation is as follows:
Installer gemsource
project: 'metacello';
addPackage: 'ConfigurationOfMetacello';
install.
"Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic version"
((Smalltalk at: #ConfigurationOfMetacello) project
version: #'previewBootstrap') load.
"Load the Preview version of Metacello from GitHub"
(Smalltalk at: #Metacello) new
configuration: 'MetacelloPreview';
version: #stable;
repository: 'github://Metacello/metacello:configuration';
load.
"Now load latest version of Metacello"
(Smalltalk at: #Metacello) new
baseline: 'Metacello';
repository: 'github://Metacello/metacello:master/repository';
get.
(Smalltalk at: #Metacello) new
baseline: 'Metacello';
repository: 'github://Metacello/metacello:master/repository';
load.
Metacello new
configuration: 'Seaside3';
repository:
'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
version: #stable;
load: 'OneClick'.
(ConfigurationOfGrease project version: #stable) load
Suggestions much appreciated.
thx