r4893 - trunk/lib/style/skins/first

leinfelder at ecoinformatics.org leinfelder at ecoinformatics.org
Thu Apr 2 15:20:06 PDT 2009


Author: leinfelder
Date: 2009-04-02 15:20:05 -0700 (Thu, 02 Apr 2009)
New Revision: 4893

Modified:
   trunk/lib/style/skins/first/first-item-resultset.xsl
Log:
disable output escaping for CDATA html elements

Modified: trunk/lib/style/skins/first/first-item-resultset.xsl
===================================================================
--- trunk/lib/style/skins/first/first-item-resultset.xsl	2009-04-02 16:36:23 UTC (rev 4892)
+++ trunk/lib/style/skins/first/first-item-resultset.xsl	2009-04-02 22:20:05 UTC (rev 4893)
@@ -110,18 +110,18 @@
 						
 						<td class="text_plain">
 							<xsl:for-each select="./param[@name='presentation/flow/response_lid/render_choice/material/mattext']">
-								<xsl:value-of select="."/>
+								<xsl:value-of select="." disable-output-escaping="yes"/>
 								<br/>
 							</xsl:for-each>	
 							<xsl:for-each select="./param[@name='presentation/flow/response_str/material/mattext']">
-								<xsl:value-of select="."/>
+								<xsl:value-of select="." disable-output-escaping="yes"/>
 								<br/>
 							</xsl:for-each>
 							<ul>
 							<xsl:for-each
 								select="./param[@name='response_label/material/mattext']">
 								<li>
-									<xsl:value-of select="." />
+									<xsl:value-of select="." disable-output-escaping="yes"/>
 								</li>	
 							</xsl:for-each>
 							</ul>



More information about the Metacat-cvs mailing list