|
Subject: [xsl] Bug with character map? From: Frederic Bergeron <fbergeron@xxxxxxxxxxxxx> Date: Fri, 27 Jul 2012 01:29:33 +0900 |
Hi,
I'm using a character map in my stylesheet to convert some special characters.
Here is my code:
<xsl:stylesheet version="2.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="xsi xsl">
<xsl:character-map name="funny-quote">
<xsl:output-character character="’" string="’"/>
</xsl:character-map>
<xsl:output method="xhtml" indent="yes" use-character-maps="funny-quote"/>
<xsl:variable name="link"
+select="'http://www.infiressources.ca/fer/depotdocuments/Modeles_et_demarches_d’education_therapeutique-place_des_TIC.pdf'"/>
<xsl:template match="/">
<html>
 
<a>
<xsl:attribute name="href"><xsl:value-of select="$link"/></xsl:attribute>
<xsl:value-of select="$link"/>
</a>
<br/> 
<xsl:text disable-output-escaping="yes"><a href="</xsl:text><xsl:value-of select="$link"/><xsl:text
+disable-output-escaping="yes">"></xsl:text><xsl:value-of select="$link"/><xsl:text disable-output-escaping="yes"></a></xsl:text>
</html>
</xsl:template>
</xsl:stylesheet>
I generate 2 hyperlinks. I was expecting the 2 links to be exactly the same. However, the first link's href value is wrong. Is this a bug or am I missing
+something?
I'm using Saxon HE 9.3.0.5.
Frederic Bergeron
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| [xsl] Re: [the XML Guild] Just a re, Betty Harvey | Thread | Re: [xsl] Bug with character map?, David Carlisle |
| [xsl] Re: [the XML Guild] Just a re, Betty Harvey | Date | Re: [xsl] Bug with character map?, David Carlisle |
| Month |