[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: generating mailto

Subject: Re: generating mailto
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Fri, 11 Oct 2002 19:11:51 +0100
mailto template
Hi Steve,

> I'm just getting my feet wet in XSL and it's pretty interesting. I
> think I am missing something though, because I find myself needing
> xsl:text more than I think I really ought to. For example, if I have
> XML
>
> <contact>
>   <email>xxx@xxxxxxxxx</email>
> </contact>
>
> and I want to generate a mailto URI like this:
> <a href="xxx@xxxxxxxxx>xxx@xxxxxxxxx</a>

Whenever you find yourself using disable-output-escaping, you know
you're on the wrong track! The secret here is to use attribute value
templates as follows:

<xsl:template match="contact">
  <a href="{email}"><xsl:value-of select="email" /></a>
</xsl:template>

or use the longer xsl:attribute instruction if you prefer:

<xsl:template match="contact">
  <a>
    <xsl:attribute name="href">
      <xsl:value-of select="email" />
    </xsl:attribute>
    <xsl:value-of select="email" />
  </a>
</xsl:template>

Try to think in terms of building a tree of nodes rather than in terms
of creating an XML string, and XSLT will seem a lot simpler to use.

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.