[Glass] Seaside on 3.1.0.4

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

[Glass] Seaside on 3.1.0.4

JupiterJones
I apologise if this is a double posting… I used the old list first :)

There are messages in the archive that suggest GS3.1.0.4 is working with Seaside.

Is there a definitive way to lead Seaside?

When I use the new configuration:

Gofer new
                url: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
                package: 'ConfigurationOfSeaside3';
                load.
        ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load

I get:

ERROR 2010 , a MessageNotUnderstood occurred (error 2010), a MetacelloVersionConstructor does not understand  #'baseline:with:' (MessageNotUnderstood)

If I try the old configuration if stops unable to find a package - sorry I don't have the error in front of me but I can recreate it if the old configuration is the way to go.

Any help would be much appreciated.

Kind Regards,

Jupiter
_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Seaside on 3.1.0.4

Johan Brichau-3
Hi Jupiter,

Which version of GLASS are you running?
This seems to be because you are using an older Metacello version.

I think it will work if you update Metacello first.

regards,
Johan

On 19 Sep 2013, at 06:52, Jupiter Jones <[hidden email]> wrote:

> I apologise if this is a double posting… I used the old list first :)
>
> There are messages in the archive that suggest GS3.1.0.4 is working with Seaside.
>
> Is there a definitive way to lead Seaside?
>
> When I use the new configuration:
>
> Gofer new
>                url: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>                package: 'ConfigurationOfSeaside3';
>                load.
>        ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load
>
> I get:
>
> ERROR 2010 , a MessageNotUnderstood occurred (error 2010), a MetacelloVersionConstructor does not understand  #'baseline:with:' (MessageNotUnderstood)
>
> If I try the old configuration if stops unable to find a package - sorry I don't have the error in front of me but I can recreate it if the old configuration is the way to go.
>
> Any help would be much appreciated.
>
> Kind Regards,
>
> Jupiter
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Seaside on 3.1.0.4

JupiterJones
In reply to this post by JupiterJones
Hi Paul and Johan,

Thank you both so much for the quick replies.

I was attempting to go without GemTools and do everything in topaz. But after updating to 9.1 with GemTools, I'm back to topaz and it's all wonderful :)

I noticed that it loaded Seaside-Adaptors-FastCGI but that doesn't include the FSSeasideHandler class. Do you know what package that is in… Actually I'm being very lazy asking since I've had to find this class numerous times when setting up a new extent, but I never remember where I found it :)

Thanks again.

Kind Regards,

Jupiter
On 19/09/2013, at 3:29 PM, Paul DeBruicker <[hidden email]> wrote:

> Hi Jupiter,
>
>   I'm not sure about the new config, but with the old one you need to:
>
>
> 1. Be sure to update to GLASS 1.0.beta9.1 first.
> 2. either
> a) update Metacello from Dale's github repo here:
> https://github.com/dalehenrich/metacello-work
>           to the latest commit, not release
>
> or
>
> b) in the old Seaside config, in the #baseline306commonbaseline: method
> find the Zinc section and delete the line:
>
> loads:'Zinc-HTTP';
>
> and start loading Seaside again.
>
> If you haven't already tried I would guess that the new config might
> work with GLASS 1.0-beta9.1 but have not tried.
>
>
> Hope this helps.
>
>
> Paul
>
>
> On 09/18/2013 09:52 PM, Jupiter Jones wrote:
>> I apologise if this is a double posting… I used the old list first :)
>>
>> There are messages in the archive that suggest GS3.1.0.4 is working with Seaside.
>>
>> Is there a definitive way to lead Seaside?
>>
>> When I use the new configuration:
>>
>> Gofer new
>>                url: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>>                package: 'ConfigurationOfSeaside3';
>>                load.
>>        ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load
>>
>> I get:
>>
>> ERROR 2010 , a MessageNotUnderstood occurred (error 2010), a MetacelloVersionConstructor does not understand  #'baseline:with:' (MessageNotUnderstood)
>>
>> If I try the old configuration if stops unable to find a package - sorry I don't have the error in front of me but I can recreate it if the old configuration is the way to go.
>>
>> Any help would be much appreciated.
>>
>> Kind Regards,
>>
>> Jupiter
>> _______________________________________________
>> Glass mailing list
>> [hidden email]
>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>
>

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: [Glass] Seaside on 3.1.0.4

JupiterJones
It's all good - I found it in the GLASS repository :)

Thanks again.

Kind Regards,

Phil

On 19/09/2013, at 7:31 PM, Jupiter Jones <[hidden email]> wrote:

> Hi Paul and Johan,
>
> Thank you both so much for the quick replies.
>
> I was attempting to go without GemTools and do everything in topaz. But after updating to 9.1 with GemTools, I'm back to topaz and it's all wonderful :)
>
> I noticed that it loaded Seaside-Adaptors-FastCGI but that doesn't include the FSSeasideHandler class. Do you know what package that is in… Actually I'm being very lazy asking since I've had to find this class numerous times when setting up a new extent, but I never remember where I found it :)
>
> Thanks again.
>
> Kind Regards,
>
> Jupiter
> On 19/09/2013, at 3:29 PM, Paul DeBruicker <[hidden email]> wrote:
>
>> Hi Jupiter,
>>
>>  I'm not sure about the new config, but with the old one you need to:
>>
>>
>> 1. Be sure to update to GLASS 1.0.beta9.1 first.
>> 2. either
>> a) update Metacello from Dale's github repo here:
>> https://github.com/dalehenrich/metacello-work
>>          to the latest commit, not release
>>
>> or
>>
>> b) in the old Seaside config, in the #baseline306commonbaseline: method
>> find the Zinc section and delete the line:
>>
>> loads:'Zinc-HTTP';
>>
>> and start loading Seaside again.
>>
>> If you haven't already tried I would guess that the new config might
>> work with GLASS 1.0-beta9.1 but have not tried.
>>
>>
>> Hope this helps.
>>
>>
>> Paul
>>
>>
>> On 09/18/2013 09:52 PM, Jupiter Jones wrote:
>>> I apologise if this is a double posting… I used the old list first :)
>>>
>>> There are messages in the archive that suggest GS3.1.0.4 is working with Seaside.
>>>
>>> Is there a definitive way to lead Seaside?
>>>
>>> When I use the new configuration:
>>>
>>> Gofer new
>>>               url: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>>>               package: 'ConfigurationOfSeaside3';
>>>               load.
>>>       ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load
>>>
>>> I get:
>>>
>>> ERROR 2010 , a MessageNotUnderstood occurred (error 2010), a MetacelloVersionConstructor does not understand  #'baseline:with:' (MessageNotUnderstood)
>>>
>>> If I try the old configuration if stops unable to find a package - sorry I don't have the error in front of me but I can recreate it if the old configuration is the way to go.
>>>
>>> Any help would be much appreciated.
>>>
>>> Kind Regards,
>>>
>>> Jupiter
>>> _______________________________________________
>>> Glass mailing list
>>> [hidden email]
>>> http://lists.gemtalksystems.com/mailman/listinfo/glass
>>>
>>
>
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass