Take into account that for XSL transformation you always have to put something inside <script> element because HTML will be incorrect if there will be <script .../> tag after XSL transformation (if it is your case). Such a "script" tag will be treated as unclosed in HTML. So you have to put at least comment "//" inside "script" element like this:
<script language="JavaScript" src="some_source.js">//</script> Best regards Roman "Piroumian, Konstantin" wrote: > > From: Derek Hohls [mailto:[EMAIL PROTECTED]] > > > > Konstantin > > > > Thanks - this works fine when the JavaScript is included in > > the XSL file - does not work when the JS is a separate, > > linked file, tho'. > > Hm... So, what's the result? If you include a file then it must become > something like: > <script src="code.js" ...></script> > > Do you get this line? Or there's something else? > > I suspect that you have wrong pipeline in your sitemap. Try something like > this: > <map:match pattern="*.js"> > <map:read src="{1}.js" mime-type="text/plain" /> > </map:match> > > -- > Konstantin Piroumian > [EMAIL PROTECTED] > > > > > Derek > > > > >>> [EMAIL PROTECTED] 22/03/2002 04:26:19 >>> > > > From: MJ Ray [mailto:[EMAIL PROTECTED]] > > > > > > Derek Hohls wrote: > > > > write('<html>'); > > > > write('<head>'); > > > > in the XSL file, and causing it to become: > > > > > > I think it's because cocoon sees the tags, not the context. > > > Rather, to > > > cocoon, the tags are the context and the rest is just so much > > > content. > > > Probably a good thing generally, but it's hurting you here. > > > > > > Have you tried write('<'+'head>');? Not sure if that will > > > work as a quick > > > fix, or whether this mysterious <'+'head> tag will cause trouble. > > You > > > probably want your Javascript in a different file anyway, though. > > > > The problem must be somewhere in the serialization part. A better way > > of > > using a JavaScript in XSL stylesheet is to wrap it as CDATA: > > <DEFANGED_script> > > <![CDATA[ > > // your script here > > ]]> > > </script> > > > > -- > > Konstantin Piroumian > > [EMAIL PROTECTED] > > > > > > > > > > Hope that helps, > > > -- > > > MJR ,---------------------------------------------------- > > > | Q. Do you need a net-based application developing, > > > | or advice and training about web technology? > > > | A. I suggest you try http://www.luminas.co.uk/ > > > > > > > > --------------------------------------------------------------------- > > > Please check that your question has not already been answered in the > > > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> > > > > > > To unsubscribe, e-mail: <[EMAIL PROTECTED]> > > > For additional commands, e-mail: <[EMAIL PROTECTED]> > > > > > > > --------------------------------------------------------------------- > > Please check that your question has not already been answered in the > > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> > > > > To unsubscribe, e-mail: <[EMAIL PROTECTED]> > > For additional commands, e-mail: <[EMAIL PROTECTED]> > > > > > > --------------------------------------------------------------------- > > Please check that your question has not already been answered in the > > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> > > > > To unsubscribe, e-mail: <[EMAIL PROTECTED]> > > For additional commands, e-mail: <[EMAIL PROTECTED]> > > > > --------------------------------------------------------------------- > Please check that your question has not already been answered in the > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> > > To unsubscribe, e-mail: <[EMAIL PROTECTED]> > For additional commands, e-mail: <[EMAIL PROTECTED]> --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>