[Glass] 3.1.0.4 and Seaside 3.1

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

[Glass] 3.1.0.4 and Seaside 3.1

JupiterJones
Hi All,

With James' release of the sexy GS for Mac, I'm overenthusiastic and making an attempt to get Seaside 3.1 and JQueryWidgetBox running in GS3.1.0.4 and here's the story… :)

I opted (wisely or not) to load the bleedingEdge and the first issue was Esteban's addition of 'Seaside-Adaptor' for Pharo, but as he states in the comment "(not tested outside Pharo)"… fairy nuff.

So I added the group to GemStone:

group: 'Seaside-Adaptor' with: #('FastCGI' 'Seaside-GemStone-Adaptors-Zinc')

I'm sure I don't need the Zinc adaptor (since I'm running OSXServer with FastCGI so will just be using it locally), but loaded it all the same… call me crazy.

Loaded like a bought one.

I then went to load version 2.8 of JQueryWidgetBox and found that the Seaside load didn't include JQuery or JQueryUI, and when JQWB attempted to load it there was a not found for "Zinc-HTTP":

spec import: 'Zinc'.
spec baseline: 'Zinc' with: [
                spec
                        versionString: 'baseline';
                        repository: 'github://glassdb/zinc:gemstone3.1/repository' ].

Before I go too much further, am I chasing my own tail with Seaside 3.1 in GS3.1.0.4 at this stage?

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] 3.1.0.4 and Seaside 3.1

Paul DeBruicker
Does the configuration load without your modifications?


Is 'loaded like a bought one'  good or bad?

Re: Zinc- sounds like the same error from this thread:
http://forum.world.st/Glass-Seaside-on-3-1-0-4-tp4709097.html

Is it different than that?



Before loading JQWB load JQueryUI using the Seaside3 config from
smalltalkhub and see if loading JQWB works after that.

Note also that the JQWB may not have been loaded/tested on 3.1 at all.




On 09/26/2013 04:20 PM, Jupiter Jones wrote:

> Hi All,
>
> With James' release of the sexy GS for Mac, I'm overenthusiastic and making an attempt to get Seaside 3.1 and JQueryWidgetBox running in GS3.1.0.4 and here's the story… :)
>
> I opted (wisely or not) to load the bleedingEdge and the first issue was Esteban's addition of 'Seaside-Adaptor' for Pharo, but as he states in the comment "(not tested outside Pharo)"… fairy nuff.
>
> So I added the group to GemStone:
>
> group: 'Seaside-Adaptor' with: #('FastCGI' 'Seaside-GemStone-Adaptors-Zinc')
>
> I'm sure I don't need the Zinc adaptor (since I'm running OSXServer with FastCGI so will just be using it locally), but loaded it all the same… call me crazy.
>
> Loaded like a bought one.
>
> I then went to load version 2.8 of JQueryWidgetBox and found that the Seaside load didn't include JQuery or JQueryUI, and when JQWB attempted to load it there was a not found for "Zinc-HTTP":
>
> spec import: 'Zinc'.
> spec baseline: 'Zinc' with: [
> spec
> versionString: 'baseline';
> repository: 'github://glassdb/zinc:gemstone3.1/repository' ].
>
> Before I go too much further, am I chasing my own tail with Seaside 3.1 in GS3.1.0.4 at this stage?
>
> 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] 3.1.0.4 and Seaside 3.1

Johan Brichau-3
Hey guys,

Mind that Seaside 3.1 for Gemstone is work in progress.
After the sprint at ESUG, where Dale and Philippe were able to get very far, it has been lying waiting for finishing.
I've been catching up a bit on work that pays my bills since but intend to take a look at the state of the Gemstone port and the state of the configuration right now.

I've been bitten by the 'Seaside-Adaptors' error in the configuration yesterday everning as well when trying to update.... so I will take a look at it today.

Johan

On 27 Sep 2013, at 02:14, Paul DeBruicker <[hidden email]> wrote:

> Does the configuration load without your modifications?
>
>
> Is 'loaded like a bought one'  good or bad?
>
> Re: Zinc- sounds like the same error from this thread:
> http://forum.world.st/Glass-Seaside-on-3-1-0-4-tp4709097.html
>
> Is it different than that?
>
>
>
> Before loading JQWB load JQueryUI using the Seaside3 config from
> smalltalkhub and see if loading JQWB works after that.
>
> Note also that the JQWB may not have been loaded/tested on 3.1 at all.
>
>
>
>
> On 09/26/2013 04:20 PM, Jupiter Jones wrote:
>> Hi All,
>>
>> With James' release of the sexy GS for Mac, I'm overenthusiastic and making an attempt to get Seaside 3.1 and JQueryWidgetBox running in GS3.1.0.4 and here's the story… :)
>>
>> I opted (wisely or not) to load the bleedingEdge and the first issue was Esteban's addition of 'Seaside-Adaptor' for Pharo, but as he states in the comment "(not tested outside Pharo)"… fairy nuff.
>>
>> So I added the group to GemStone:
>>
>> group: 'Seaside-Adaptor' with: #('FastCGI' 'Seaside-GemStone-Adaptors-Zinc')
>>
>> I'm sure I don't need the Zinc adaptor (since I'm running OSXServer with FastCGI so will just be using it locally), but loaded it all the same… call me crazy.
>>
>> Loaded like a bought one.
>>
>> I then went to load version 2.8 of JQueryWidgetBox and found that the Seaside load didn't include JQuery or JQueryUI, and when JQWB attempted to load it there was a not found for "Zinc-HTTP":
>>
>> spec import: 'Zinc'.
>> spec baseline: 'Zinc' with: [
>> spec
>> versionString: 'baseline';
>> repository: 'github://glassdb/zinc:gemstone3.1/repository' ].
>>
>> Before I go too much further, am I chasing my own tail with Seaside 3.1 in GS3.1.0.4 at this stage?
>>
>> 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