Seaside 3.0.7

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

Re: Seaside 3.0.7

Dale Henrichs
Nick,

Don't worry about the "extra work" I just want to make sure that we've got it right ... I'm just a cranky old, Smalltalker:)

Did you take a look at #canPerform: ... I assume you used #canPerform: because you wanted it's "special behavior"?

Dale

----- Original Message -----
| From: "Nick Ager" <[hidden email]>
| To: "Seaside - developer list" <[hidden email]>
| Sent: Thursday, March 29, 2012 3:46:01 AM
| Subject: Re: [Seaside-dev] Seaside 3.0.7
|
|
|
|
|
| Hi Dale,
|
|
| #canPerform: in WATestingMetadataFileLibrary>>fileResourceOf: is not
| portable...Presumably #respondsTo: is the portable selector?
|
|
| Opps, fixed in Seaside-Core-NickAger.768 - I've updated the version
| in ConfigurationOfSeaside30
|
|
|
|
|
| Nick it looks like you haven't updated the ConfigurationOfGrease, but
| there appear to be new packages for Grease?
| Are these supposed to be used or are they just floating around?
|
|
| Oh dear I really did a half-arsed job on this. I guess when I tested,
| I didn't clear my package cache so I brought in the latest Grease
| anyway without updating the configuration. Presumably you mean new
| Grease versions rather than packages.
|
|
|
| I've update Grease config with my best guesses...
|
|
| Looks good.
|
|
|
| With all of those changes to the filelibrary hierarchy, what happens
| if you install the changes into an existing installation?
| I haven't looked closely, but presumably there are going to be
| minimal impacts on existing installations?
|
|
| The file library changes shouldn't break any existing installations -
| existing file libraries will continue working as is. However if
| people want to use libraries such as twitter bootstrap in which css
| files expect images to have an 'img' path element prepended then
| they can use the (awkwardly) named: WAFileMetadataLibrary -
| http://code.google.com/p/seaside/issues/detail?id=267
|
|
| Apologies if my attempt at updating the Metacello configurations just
| appear to be making a lot of unnecessary work for you
|
|
| Cheers
|
|
| Nick
| _______________________________________________
| seaside-dev mailing list
| [hidden email]
| http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
|
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Nick
Hi Dale,
 
Did you take a look at #canPerform: ... I assume you used #canPerform: because you wanted it's "special behavior"?

I fear you credit me with more intelligence than I deserve; #canPerform: vs #respondsTo: no "special behaviour" is required - I simply want to test the existence of a selector.

Cheers

Nick

_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Philippe Marschall
In reply to this post by Dale Henrichs
Am 29. März 2012 02:11 schrieb Dale Henrichs <[hidden email]>:
> #canPerform: in WATestingMetadataFileLibrary>>fileResourceOf: is not portable...Presumably #respondsTo: is the portable selector?

#respondsTo: is in ANSI
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Dale Henrichs
In reply to this post by Nick
Haha! With the abstract class involved, I thought that maybe you were leveraging that "special behavior" ... always better to ask than make an assumption one way or the other:)

I'll get back to the 3.0.7 for GemStone tomorrow and I'll put in the #respondsTo: then...

Dale

----- Original Message -----
| From: "Nick Ager" <[hidden email]>
| To: "Seaside - developer list" <[hidden email]>
| Sent: Thursday, March 29, 2012 10:11:17 AM
| Subject: Re: [Seaside-dev] Seaside 3.0.7
|
|
|
|
| Hi Dale,
|
|
| Did you take a look at #canPerform: ... I assume you used
| #canPerform: because you wanted it's "special behavior"?
|
|
| I fear you credit me with more intelligence than I deserve;
| #canPerform: vs #respondsTo: no "special behaviour" is required - I
| simply want to test the existence of a selector.
|
|
| Cheers
|
|
| Nick
| _______________________________________________
| seaside-dev mailing list
| [hidden email]
| http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
|
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Nick
> Haha! With the abstract class involved, I thought that maybe you were leveraging that "special behavior" ... always better to ask than make an assumption one way or the other:)
>
> I'll get back to the 3.0.7 for GemStone tomorrow and I'll put in the #respondsTo: then...

I've already updated to swapped to #respondsTo:

Nick
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Philippe Marschall
In reply to this post by Nick
Am 26. März 2012 13:00 schrieb Nick Ager <[hidden email]>:

> Hi,
>
> I have updated ConfigurationOfSeaside30 and ConfigurationOfSeasideRest.
>
> I'm using the following to build the one-click image:
>
> Gofer new
> squeaksource: 'MetacelloRepository';
> package: 'ConfigurationOfSeaside30';
> load.
>
>
> (ConfigurationOfSeaside30 project version: '3.0.7') load: 'OneClick'.
>
>
>
>
> Gofer new
> squeaksource: 'MetacelloRepository';
> package: 'ConfigurationOfSeasideRest';
> load.
>
>
> ConfigurationOfSeasideRest project stableVersion load: 'Tests'.

I did a quick test and it looks OK.

Cheers
Philippe
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Nick
In reply to this post by Dale Henrichs
Hi Dale,

I'll get back to the 3.0.7 for GemStone tomorrow ...

Give me a shout when the configuration is complete from your perspective and I'll make the downloadable images etc (http://code.google.com/p/seaside/wiki/MakeRelease)

Cheers

Nick



_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Dale Henrichs
Just getting around to it now ... will ping you when I'm happy...

Dale

----- Original Message -----
| From: "Nick Ager" <[hidden email]>
| To: "Seaside - developer list" <[hidden email]>
| Sent: Friday, March 30, 2012 9:53:05 AM
| Subject: Re: [Seaside-dev] Seaside 3.0.7
|
|
| Hi Dale,
|
|
|
|
| I'll get back to the 3.0.7 for GemStone tomorrow ...
|
|
|
| Give me a shout when the configuration is complete from your
| perspective and I'll make the downloadable images etc (
| http://code.google.com/p/seaside/wiki/MakeRelease )
|
|
| Cheers
|
|
| Nick
|
|
|
|
| _______________________________________________
| seaside-dev mailing list
| [hidden email]
| http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
|
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Dale Henrichs
In reply to this post by Nick
Nick,

Ship it ... I committed a new version of the Seaside configuration with my merge of your fix ...

Dale


----- Original Message -----
| From: "Nick Ager" <[hidden email]>
| To: "Seaside - developer list" <[hidden email]>
| Sent: Friday, March 30, 2012 9:53:05 AM
| Subject: Re: [Seaside-dev] Seaside 3.0.7
|
|
| Hi Dale,
|
|
|
|
| I'll get back to the 3.0.7 for GemStone tomorrow ...
|
|
|
| Give me a shout when the configuration is complete from your
| perspective and I'll make the downloadable images etc (
| http://code.google.com/p/seaside/wiki/MakeRelease )
|
|
| Cheers
|
|
| Nick
|
|
|
|
| _______________________________________________
| seaside-dev mailing list
| [hidden email]
| http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
|
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: Seaside 3.0.7

Nick
Hi Dale,

I'll investigate some of the Pharo 1.4 issues then build the release images. Should be sometime this weekend

Cheers

Nick

On 30 March 2012 19:42, Dale Henrichs <[hidden email]> wrote:
Nick,

Ship it ... I committed a new version of the Seaside configuration with my merge of your fix ...

Dale


----- Original Message -----
| From: "Nick Ager" <[hidden email]>
| To: "Seaside - developer list" <[hidden email]>
| Sent: Friday, March 30, 2012 9:53:05 AM
| Subject: Re: [Seaside-dev] Seaside 3.0.7
|
|
| Hi Dale,
|
|
|
|
| I'll get back to the 3.0.7 for GemStone tomorrow ...
|
|
|
| Give me a shout when the configuration is complete from your
| perspective and I'll make the downloadable images etc (
| http://code.google.com/p/seaside/wiki/MakeRelease )
|
|
| Cheers
|
|
| Nick
|
|
|
|
| _______________________________________________
| seaside-dev mailing list
| [hidden email]
| http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
|
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev


_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
12