Hi folks, I just wanted to let you know I found the problem. The problem was that when Genshi serializing the output, it output script tags as a single tag
<script src="/static/js/MochiKit/MochiKit.js" type="text/javascript" charset="utf-8"/> instead of <script src="/static/js/MochiKit/MochiKit.js" type="text/javascript" charset="utf-8"></script> This broke all following <script>...</script> tags. What I forgot was to tell Genshi that I wanted xhtml output by passing 'xhtml' to the serialize() call. Once I added that it outputs script tags correctly and everything is fine. Arnar On 1/10/07, Arnar Birgisson <[EMAIL PROTECTED]> wrote: > On 1/10/07, troels knak-nielsen <[EMAIL PROTECTED]> wrote: > > FWIW, I tried with Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; > > rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1 + MochiKit r.1247. I can't > > reproduce the problem. > > Ok, thank you Troels. I'll see if I can narrow down to some server > problem tomorrow. > > Arnar > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MochiKit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/mochikit?hl=en -~----------~----~----~----~------~----~------~--~---
