Re: [Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-02-01 Thread Johan Brichau
You _can_ use Gofer to load individual packages, but the point of the Metacello configuration is that it will install the dependencies for you. So, it’s not a good idea to load them individually, unless you want to end up missing some prerequisite packages. Johan > On 31 Jan 2015, at 20:06, Mir

Re: [Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-01-31 Thread Mircea S.
For those looking to install jQuery into Seaside can use these: Gofer new url:'http://www.smalltalkhub.com/mc/Seaside/Seaside31/main'; package: 'Javascript-Core'; load. Gofer new url:'http://www.smalltalkhub.com/mc/Seaside/Seaside31/main'; package: 'JQuery-Core'; load. Gofer new url:'http://ww

Re: [Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-01-31 Thread Mircea S.
Well, I undertook a hands-on approach and finally figured it out. Mainly because I was following the Seaside book and the chapter on Scriptaculous. The packages needed for Scriptaculous to work are listed in the book here: http://book.seaside.st/book/web-20/scriptaculous/frameworks/installation

Re: [Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-01-31 Thread Johan Brichau
Hi Mircea, Pharo’s Configuration browser loads the default group of the Metacello configuration, which unfortunately was set to ‘Core’ for Seaside 3.1. So, you will need to load additional groups programmatically: (ConfigurationOfSeaside3 project version: #stable) load: #(‘Scriptaculous’ ‘JSON’

[Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-01-31 Thread Mircea S.
I used the method described here to install Seaside3 on Pharo. All is well, but Scriptaculous doesn't come preinstalled. How do I get it? Seaside3 : 1: Go to the configuration manager 2: Select the Seaside 3 configuration. Click on Install. 3: Wait while it loads. Takes a couple of minutes on