[Seaside-dev] Issue 73 in seaside: Seaside 2.8 522 buglet when adding applications

codesite-noreply at google.com codesite-noreply at google.com
Fri May 30 20:36:50 UTC 2008


Issue 73: Seaside 2.8 522 buglet when adding applications
http://code.google.com/p/seaside/issues/detail?id=73

New issue report by philippe.marschall:
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: [^ '' ]


Issue attributes:
	Status: New
	Owner: ----
	Labels: Type-Defect Priority-Low Version-Seaside2.8

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings


More information about the seaside-dev mailing list