[squeak-dev] Whick Annoucement package?

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

[squeak-dev] Whick Annoucement package?

Edward Stow
Hi

I know of three squeak announcements packages: Is their an 'official'
package that is likely to be supported long term?


I am also concerned about strong references causing my long running
image to bloat, [3] seems to explicity address weak / strong
references, I'm not sure of the others.

The three are:

[1] OmniBrowswer-Announcements - came pre installed in my Seaside image
[2] Lukas Rengalli - MCHttpRepository
        location: 'http://source.lukas-renggli.ch/announcements'
        user: ''
        password: ''
[3] SqueakSource  -  MCHttpRepository
        location: 'http://www.squeaksource.com/AXAnnouncements'
        user: ''
        password: ''

Thanks
--

Edward Stow

Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] Whick Annoucement package?

Colin Putney

On 19-Apr-08, at 3:03 PM, Edward Stow wrote:

> [1] OmniBrowswer-Announcements - came pre installed in my Seaside  
> image

This one really isn't a separate package, it's just a simple  
implementation that's used internally by OmniBrowser. You're welcome  
to use it for your own purposes, of course, but you might find it a  
bit spartan since it only implements what's needed for OmniBrowser. In  
particular, it uses an explicit Announcer, rather than having each  
object generate their own announcements. It doesn't bother with weak  
reference either, since the announcer will become garbage at the same  
time as its listeners anyway.

Colin