[xsl] SOS, print one character (·), please help me

Subject: [xsl] SOS, print one character (·), please help me
From: Dionisio Ruiz de Zárate <dionisio@xxxxxxxxxxxxx>
Date: Thu, 26 Aug 2004 22:16:35 +0200
hello.
i have the next xml file:

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<sn_servicioproyecto>
<parrafo_texto><![CDATA[<P>16:30 h. Prospeccisn.<br />.&nbsp;Preparacisn de
los trabajos. Recogida de informacisn. Toponimia. Inventarios. Fuentes
escritas. Fotografma airea. Cartografma.<br />.&nbsp;En el terreno:
coloraciones. Vegetacisn. Estructuras. Caminos. Procedimientos magniticos y
electromagniticos.<br />PAQUITA SAEZ DE URTURI.</P>
<br /><P>18:30 h. Excavacisn y registros de la informacisn.<br
/>.&nbsp;Sondeos. Preparacisn de los trabajos. Mitodos Whiler y Harris.<br
/>.&nbsp;Diarios. Inventarios.<br />AGUSTMN AZKARATE. Universidad del Pams
Vasco.<br /></P>]]></parrafo_texto>
</sn_servicioproyecto>

and this xslt file

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="xhtml" version="1.0" encoding="ISO-8859-1" indent="yes"
omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/sn_servicioproyecto">
<xsl:for-each select="parrafo_texto">
<xsl:value-of select="." disable-output-escaping="yes"/>
</xsl:for-each>

you can see than into the xml file are some characters as: 7 but it always
print me, after passing accross the xslt file, one ?, it doesn't print the 7

why?
can you help me?
i must to print the 7 character.

Thnaks

Current Thread