vote up 0 vote down star
1

i have a tiny little problem with xslt, js and html entities, eg. within a template:

<script type="text/javascript">
    <xsl:value-of select="/some/node"/>
    for (var i = 0; i &lt; 5; i++) {
        //            ^^^ js error
    }
</script>

<script type="text/javascript">
    <xsl:value-of select="/some/node"/>
    for (var i = 0; i < 5; i++) {
        //            ^ xslt error
    }
</script>

<script type="text/javascript">
    <xsl:value-of select="/some/node"/>
    // <![CDATA[
    for (var i = 0; i < 5; i++) {
        //            ^ becomes &lt;
    }
    // ]]>
</script>


<script type="text/javascript">
    <xsl:value-of select="/some/node"/>
    for (var i = 0; i <xsl:value-of disable-output-escaping="yes" select="string('&lt;')"/> 5; i++) {
        // works of course
    }
</script>

does anyone have an idea where my problem could come from? i always thought the xslt processor would leave the content of a <script/> element unescaped when using the html output method ...

i run libxslt2 version 1.1.24 on OSX which was installed using macportsports ...

flag

71% accept rate
(answer deleted as no longer relevant) – annakata Jan 12 at 10:47

4 Answers

vote up 4 vote down check

ok. long story, short answer:

it seems that with some libxslt versions the xslt processor leaves the content of a <script/> element unescaped when using the html output method, with others not ... therefor the following is recommended:

<script type="text/javascript">
    <xsl:value-of select="/some/node"/>
    <xsl:text disable-output-escaping="yes">
        // ^ does the trick ...
        for (var i = 0; i < 5; i++) {
            //            ^ works
        }
    </xsl:text>
</script>
link|flag
HEY! You saved my life. No, at least a couple of hours! Thanks. – Marcos Buarque Mar 14 at 19:56
vote up 1 vote down

Try removing the double slash before the CDATA of your third solution

link|flag
did that too ... but thx... – Pierre Spring Jan 12 at 10:30
vote up 1 vote down

i always thought the xslt processor would leave the content of a script element unescaped when using the html output method

You are correct: http://www.w3.org/TR/xslt#section-HTML-Output-Method

The html output method should not perform escaping for the content of the script and style elements.
For example, a literal result element written in the stylesheet as
    <script>if (a &lt; b) foo()</script>
or
    <script><![CDATA[if (a < b) foo()]]></script>
should be output as
    <script>if (a < b) foo()</script>

If your XSLT processor is doing otherwise, it's a bug.

However, in any case it's a good idea to avoid '<' and '&' in embedded scripts, and an even better idea to kick all the code out into a linked .js file.

link|flag
If XSLT is generating the variable JS script, a linked js file isn't always a possibility and avoiding < and & isn't going to be realistic – annakata Jan 12 at 10:59
looks like a bug then ... i'll try to narrow it down the best i can an submit the bug report ... cheerz for your answer ... – Pierre Spring Jan 12 at 11:17
vote up 1 vote down

The CDATA blocks should have worked; they always have for me. What's your disable-output-escaping value?

UPDATE: Using Xalan, with disable-output-escaping on its default, which I'm pretty sure is no, I have the following in my working XSL files:

  • No CDATA block:

    for (var i = 0; i &lt; foo.length; i++) { … }

  • CDATA block:

    <![CDATA[

    for (var i = 0; i < foo.length; i++) { … }

    ]]>

link|flag
do you mean using the following: <xsl:value-of disable-output-escaping="yes" select="string('&amp;')"/> works, but this isn't how is should work, right? – Pierre Spring Jan 12 at 10:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.