The simple example given earlier works but the following one doesn't.

<xsl:template match="identity">
    <xsl:element name="fo:basic-link">
       <xsl:attribute name="external-destination">
            mailto:<xsl:value-of select="adress/email"/>
       </xsl:attribute>
       <xsl:value-of select="adress/email"/>
     </xsl:element>
</xsl:template>

An xslt engine would produce the following output :
<fo:basic-link external-destination="mailto:[EMAIL PROTECTED]">
    [EMAIL PROTECTED]
</fo:basic-link>

This output is similar to the example that works.


I believe this is a bug either in the xslt engine parser either in fop
cause it should open the mail client rather than the browser

Franck MARTIN

Reply via email to