xslt, javascript and unescaped html entities - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T23:35:10Zhttp://stackoverflow.com/feeds/question/435005http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities0xslt, javascript and unescaped html entitiesPierre Spring2009-01-12T10:17:03Z2009-03-17T19:58:12Z
<p>i have a tiny little problem with xslt, js and html entities, eg. within a template:</p>
<pre><code><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>
</code></pre>
<p>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 ...</p>
<p>i run libxslt2 version 1.1.24 on OSX which was installed using macportsports ...</p>
http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435014#4350141Answer by Hank Gay for xslt, javascript and unescaped html entitiesHank Gay2009-01-12T10:21:18Z2009-01-12T11:03:50Z<p>The <code>CDATA</code> blocks should have worked; they always have for me. What's your <code>disable-output-escaping</code> value?</p>
<p>UPDATE:
Using Xalan, with <code>disable-output-escaping</code> on its default, which I'm pretty sure is <code>no</code>, I have the following in my working XSL files:</p>
<ul>
<li><p>No <code>CDATA</code> block:</p>
<p>for (var i = 0; i <code>&lt;</code> foo.length; i++) {
…
}</p></li>
<li><p><code>CDATA</code> block:</p>
<p><![CDATA[</p>
<p>for (var i = 0; i < foo.length; i++) {
…
}</p>
<p>]]></p></li>
</ul>
http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435024#4350241Answer by Olivier PAYEN for xslt, javascript and unescaped html entitiesOlivier PAYEN2009-01-12T10:25:13Z2009-01-12T10:25:13Z<p>Try removing the double slash before the CDATA of your third solution</p>
http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435088#4350881Answer by bobince for xslt, javascript and unescaped html entitiesbobince2009-01-12T10:55:01Z2009-01-12T10:55:01Z<blockquote>
<p>i always thought the xslt processor would leave the content of a script element unescaped when using the html output method</p>
</blockquote>
<p>You are correct: <a href="http://www.w3.org/TR/xslt#section-HTML-Output-Method" rel="nofollow">http://www.w3.org/TR/xslt#section-HTML-Output-Method</a></p>
<pre><code>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>
</code></pre>
<p>If your XSLT processor is doing otherwise, it's a bug.</p>
<p>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.</p>
http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435468#4354684Answer by Pierre Spring for xslt, javascript and unescaped html entitiesPierre Spring2009-01-12T13:54:28Z2009-01-12T13:54:28Z<p>ok. long story, short answer: </p>
<p>it seems that with <strong>some libxslt versions</strong> the xslt processor leaves the content of a <script/> element unescaped when using the html output method, <strong>with others
not</strong> ... therefor the following is recommended:</p>
<pre><code><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>
</code></pre>