On Sat, May 29, 2010 at 2:24 PM, magique poter <[email protected]> wrote:

> Hello,
>
> I have problem installing Seaside on Pharo 1.0. Evaluate
> ConfigurationOfSeaside >> workspace
> did not work.
>

Hi!

In the Smalltalk world, when you see aClass >> aMmethod
it means that you are talking about the method aMethod from the class
aClass.

If you refer to class side methods:

aClass class >> aMethod

So, in this case, it means you should see the method workspace of the class
ConfigurationInSeaside, NOT to evaluate the code.

Actually, what you CAN evaluate is something like this:

AClass >> #aMethodName

example

ConfigurationOfSeaside >> #workspace

if you evaluate this, it answer the compiled method of the selector
#workspace.


> I have also tryed this code:
> Gofer new
>   squeaksource: 'MetacelloRepository';
>   package: 'ConfigurationOfSeaside';
>   load.
> ((Smalltalk at: #ConfigurationOfSeaside ) project latestVersion) load
> it did not work to.
>
>

Try:

Gofer new
  squeaksource: 'MetacelloRepository';
  package: 'ConfigurationOfSeaside30';
  load.
((Smalltalk at: #ConfigurationOfSeaside30 ) project latestVersion) load



> Why does the code
> DEVImageWorkspaces openExternalProjectWorkspace
> did not show an easy way to install Seaside (it was the case before)?
>
>
What is before and what is now?

Thanks!

Mariano


> Cordialy
>
> _______________________________________________
> Pharo-project mailing list
> [email protected]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to