[Q] Seaside 2.6b1-mb.40 and 41 differences?

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

[Q] Seaside 2.6b1-mb.40 and 41 differences?

Chun, Sungjin
Hi,

After migrating to version 41, I cannot display seaside application in web browsers(at least on IE6 and Firefox 1.5.X, Opera can display... but), that is,
blank page is displayed. But it seems that source of html does have the contents. I've tried importing 41 using fresh image but it does same.

Is there any other required process for version 41?

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

RE: [Q] Seaside 2.6b1-mb.40 and 41 differences?

Chun, Sungjin
Hi,

I've found the source of my problem - cannot display web page in IE, Firefox. It's related with WARenderedHtmlRoot>>writeScript:on:. Original method
does write html source with closed script tag but modified method in mb-41 does write unclosed script tag. I can fix this with beClosed method like this;

writeScript: aString on: aStream
    (self scriptElementWithSrc: (context urlForDocument: aString mimeType: 'text/javascript')) beClosed; writeOn: aStream

in WARenderedHtmlRoot.

Hope this can help fixing bug.

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

Re: RE: [Q] Seaside 2.6b1-mb.40 and 41 differences?

Michel Bany-3

>Hope this can help fixing bug.
>
>  
>
Thanks, mb-42 has the fix.
Michel.

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside