Seaside 2.8 522 buglet when adding applications

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

Seaside 2.8 522 buglet when adding applications

Ragnar Hojland Espinosa-2
In the process of getting out of the squeak/seaside stone age I found
that, when adding an application to 2.8 but not specifying an root
component, rootComponent is nil and broke /seaside/config due to:

WAApplication>>description
        ^ self rootComponent description

which I quick fixed as:

WAApplication>>description
        self rootComponent notNil
                ifTrue: [^ self rootComponent description]
                ifFalse: [^ '' ]

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

Re: Seaside 2.8 522 buglet when adding applications

Philippe Marschall
http://code.google.com/p/seaside/issues/detail?id=73

2008/5/30 Ragnar Hojland Espinosa <[hidden email]>:

> In the process of getting out of the squeak/seaside stone age I found
> that, when adding an application to 2.8 but not specifying an root
> component, rootComponent is nil and broke /seaside/config due to:
>
> WAApplication>>description
>        ^ self rootComponent description
>
> which I quick fixed as:
>
> WAApplication>>description
>        self rootComponent notNil
>                ifTrue: [^ self rootComponent description]
>                ifFalse: [^ '' ]
>
> --
> Ragnar
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside