I have a problem with adding attribute value <input> to the input tag. I can't insert encoded with ISO-8859-2 text into this tag attributes (value attribute). I always receive Xalan error (inproper integral value etc.). There is no problem to insert encoded text anywhere else. My coocoon i properly configured for this encoding. My XSL file is

<?xml version="1.0" encoding="iso-8859-2"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output encoding="iso-8859-2"/>
<xsl:template name="xxx" match="/">
<input>
<xsl:attribute name="value"><xsl:value-of select="dane"/></xsl:attribute>
</input>
</xsl:template>
</xsl:stylesheet>


and XML

<?xml version="1.0" encoding="iso-8859-2"?>
<dane>
żółta ćma
</dane>

Any sugestions?


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to