RFB Package

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

RFB Package

Jimmie Houchin-3
Hello,

I am trying to install the RFB package into Damien's sqMiniDev image
trying to build a good deployment image for Seaside and Pier which is
reasonably minimal in resource use. Trying to free up as much memory use
as I can, so that I can deploy this image on my hosting provider's server.

I get an error upon attempt with Package Browser stating that the
Package depends on DumberMenuMorph.
Where is DumberMenuMorph? What Package?

And how could I have discovered which Package, myself?

Thanks for any help.

Jimmie

Reply | Threaded
Open this post in threaded view
|

Re: RFB Package

Travis Kay
Jimmie,

DumberMenuMorph is part of the Morphic-Explorer package, there isn't
much to it, see the attached file out ( from a standard 3.9 image ).

Travis

Jimmie Houchin wrote:

> Hello,
>
> I am trying to install the RFB package into Damien's sqMiniDev image
> trying to build a good deployment image for Seaside and Pier which is
> reasonably minimal in resource use. Trying to free up as much memory
> use as I can, so that I can deploy this image on my hosting provider's
> server.
>
> I get an error upon attempt with Package Browser stating that the
> Package depends on DumberMenuMorph.
> Where is DumberMenuMorph? What Package?
>
> And how could I have discovered which Package, myself?
>
> Thanks for any help.
>
> Jimmie
>

'From Squeak3.9 of 7 November 2006 [latest update: #7067] on 12 October 2007 at 9:41:13 am'!
MenuMorph subclass: #DumberMenuMorph
        instanceVariableNames: ''
        classVariableNames: ''
        poolDictionaries: ''
        category: 'Morphic-Explorer'!
!DumberMenuMorph commentStamp: '<historical>' prior: 0!
Contributed by Bob Arning as part of the ObjectExplorer package.
!


!DumberMenuMorph methodsFor: 'menu' stamp: 'RAA 6/21/1999 15:40'!
setInvokingView: invokingView
        "I'd rather not, if that's OK"! !


Reply | Threaded
Open this post in threaded view
|

Re: RFB Package

Jimmie Houchin-3
Travis Kay wrote:
> Jimmie,
>
> DumberMenuMorph is part of the Morphic-Explorer package, there isn't
> much to it, see the attached file out ( from a standard 3.9 image ).

Thanks,

I was expecting there to be a Package in the Universes which contained
the DumberMenuMorph. I didn't know that a simple fileout would make
installation possible. I figured there would potentially be other
dependencies for the DumberMenuMorph. So I never looked for a simple
class to fileout.

Again, thanks.

Jimmie