Re: [Fresco-devel] Re: [Fresco-changes] web/hosts/issues/html Makefile.in,1.16,1.17 help.xsl,1.4,1.5 issues.js,1.2,1.3

Stefan Seefeld <[email protected]> Thu, 04 Sep 2003 09:20:50 -0400
Newsgroups gmane.comp.video.fresco.devel
Message-ID <[email protected]>
Nick Lewycky wrote:

> The problem being that xsltproc will reduce the script tag into the form 
> of <script /> which breaks browsers such as Opera or IE6. Unless 
> xsltproc on purcel has been upgraded since we last tried, you just 
> removed the fix to bug119.

The problem here is the 'output method' (as specified in the xslt file):

'<script/>' would be perfectly fine in xml, but not in html. xsltproc
Would correctly print '<script></script>' if we would use output method 
'html'. Unfortunately we can't, since all the other 'tal' template stuff
makes it non-html compliant, i.e. we have to use output method 'xml'.

I really think all that zope pseudo-xml stuff is a big hack, but
that's what we have got. Oh well...