xsl-list
[Top] [All Lists]

SOS, print one character (·), please help me

2004-08-26 13:16:35
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. Prospección.<br />.&nbsp;Preparación de
los trabajos. Recogida de información. Toponimia. Inventarios. Fuentes
escritas. Fotografía aérea. Cartografía.<br />.&nbsp;En el terreno:
coloraciones. Vegetación. Estructuras. Caminos. Procedimientos magnéticos y
electromagnéticos.<br />PAQUITA SÁEZ DE URTURI.</P>
<br /><P>18:30 h. Excavación y registros de la información.<br
/>.&nbsp;Sondeos. Preparación de los trabajos. Métodos Whiler y Harris.<br
/>.&nbsp;Diarios. Inventarios.<br />AGUSTÍN AZKARATE. Universidad del País
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: · but it always
print me, after passing accross the xslt file, one ?, it doesn't print the ·

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

Thnaks




<Prev in Thread] Current Thread [Next in Thread>