Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Seaside 2.8 522 buglet when adding applications #73

Closed
GoogleCodeExporter opened this issue Mar 25, 2015 · 3 comments
Closed

Seaside 2.8 522 buglet when adding applications #73

GoogleCodeExporter opened this issue Mar 25, 2015 · 3 comments

Comments

@GoogleCodeExporter
Copy link

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: [^ '' ]

Original issue reported on code.google.com by philippe...@gmail.com on 30 May 2008 at 8:35

@GoogleCodeExporter
Copy link
Author

Original comment by philippe...@gmail.com on 31 May 2008 at 8:28

  • Changed state: Started
  • Added labels: Version-Seaside2.9
  • Removed labels: ****

@GoogleCodeExporter
Copy link
Author

Name: Seaside2.8a1-pmm.549
Author: pmm
Time: 31 May 2008, 10:52:22 am
UUID: 02bfe6c0-aa47-4810-ab9e-5556436896bb
Ancestors: Seaside2.8a1-lr.548

- fix and test for http://code.google.com/p/seaside/issues/detail?id=73

Original comment by philippe...@gmail.com on 31 May 2008 at 8:54

  • Added labels: ****
  • Removed labels: ****

@GoogleCodeExporter
Copy link
Author

Fixed in Seaside 2.8.2 and Seaside 2.9 branches

Original comment by renggli on 31 May 2008 at 4:02

  • Changed state: Fixed
  • Added labels: ****
  • Removed labels: ****

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant