xslt, javascript and unescaped html entities - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T23:35:10Z http://stackoverflow.com/feeds/question/435005 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities 0 xslt, javascript and unescaped html entities Pierre Spring 2009-01-12T10:17:03Z 2009-03-17T19:58:12Z <p>i have a tiny little problem with xslt, js and html entities, eg. within a template:</p> <pre><code>&lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; for (var i = 0; i &amp;lt; 5; i++) { // ^^^ js error } &lt;/script&gt; &lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; for (var i = 0; i &lt; 5; i++) { // ^ xslt error } &lt;/script&gt; &lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; // &lt;![CDATA[ for (var i = 0; i &lt; 5; i++) { // ^ becomes &amp;lt; } // ]]&gt; &lt;/script&gt; &lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; for (var i = 0; i &lt;xsl:value-of disable-output-escaping="yes" select="string('&amp;lt;')"/&gt; 5; i++) { // works of course } &lt;/script&gt; </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 &lt;script/&gt; 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#435014 1 Answer by Hank Gay for xslt, javascript and unescaped html entities Hank Gay 2009-01-12T10:21:18Z 2009-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>&amp;lt;</code> foo.length; i++) { … }</p></li> <li><p><code>CDATA</code> block:</p> <p>&lt;![CDATA[</p> <p>for (var i = 0; i &lt; foo.length; i++) { … }</p> <p>]]></p></li> </ul> http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435024#435024 1 Answer by Olivier PAYEN for xslt, javascript and unescaped html entities Olivier PAYEN 2009-01-12T10:25:13Z 2009-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#435088 1 Answer by bobince for xslt, javascript and unescaped html entities bobince 2009-01-12T10:55:01Z 2009-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 &lt;script&gt;if (a &amp;lt; b) foo()&lt;/script&gt; or &lt;script&gt;&lt;![CDATA[if (a &lt; b) foo()]]&gt;&lt;/script&gt; should be output as &lt;script&gt;if (a &lt; b) foo()&lt;/script&gt; </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 '&lt;' and '&amp;' 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#435468 4 Answer by Pierre Spring for xslt, javascript and unescaped html entities Pierre Spring 2009-01-12T13:54:28Z 2009-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 &lt;script/> element unescaped when using the html output method, <strong>with others not</strong> ... therefor the following is recommended:</p> <pre><code>&lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; &lt;xsl:text disable-output-escaping="yes"&gt; // ^ does the trick ... for (var i = 0; i &lt; 5; i++) { // ^ works } &lt;/xsl:text&gt; &lt;/script&gt; </code></pre>