[Seaside] Keep-alive timer for Seaside app

Johan Brichau johan at inceptive.be
Thu Jan 6 21:02:07 UTC 2011


On 06 Jan 2011, at 20:52, Tony Fleig wrote:

> What confused me was that the interval callback was working in every case.

That's indeed something I would not expect either, but I would have to see the generated code to understand anyway.

> And I didn't realize that a failure in a load script would prevent
> execution of Javascript that (from my viewpoint) is attached to events
> and unrelated to the load script. Inspection of the generated code
> makes it clear that Seaside is packaging it all up together, using
> bind() to assign the event handlers, hence its susceptibility to
> errors early in the Javascript code. Something to remember.

It's not the case for all inline event handlers, but it's the case for some of them. 

> Safari's dev tools did show a "parse error" and provided the line on
> which it occurred. Unfortunately, the line was the entire 5000+
> characters of Seaside-generated Javascript and it was not clear to me
> where in that mess the problem was happening. Still, I suppose I
> should have tracked that down since it would have ultimately led to
> the solution. I don't suppose there is an option I don't know about to
> have Seaside generate formatted Javascript? How do other people deal
> with this situation?

Unfortunately, that's a problem I'm also struggling with a lot. The key is not to generate large javascripts but use external javascript files and generate only what you really need to. That makes debugging your javascript errors easier.
In case something happens in an onload script, I'm often justing putting a halt in the method where the script is rendered and I manually inspect the generated script in a Smalltalk inspector.

> I'm a little disappointed that there wasn't a more useful indication
> of what the error actually was and where it occurred, like a walkback
> in the Smalltalk environment or something.

That's not feasible because the error happens in the javascript code at the client side. When that happens, there is no walkback to go to (not technically, nor conceptually: the javascript code is generated).
But I understand: when you are used to debugging in Smalltalk, debugging javascript is probably the entire other end of the spectrum.

cheers
Johan


More information about the seaside mailing list