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

RE: using call-template to call template from another

Subject: RE: using call-template to call template from another xsl
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Fri, 4 May 2001 09:55:27 +0100
RE:  using call-template to call template from another
> 	<xsl:template match="/order/admin">
> 		<myorder>
> 			<xsl:call-template name="tmpadmin"/>
> 			<xsl:call-template name="tmpbill"/>
> 		</myorder>
> 	</xsl:template>

> 	<xsl:template  name="tmpbill" >
> 		<adminsection>
> 			<xsl:if test= "firstname"
> ><myfirstname><xsl:value-of select="firstname" />
> </myfirstname></xsl:if>
> 			<xsl:if test= "lastname"
> ><mylastname><xsl:value-of
> select="lastname" /> </mylastname></xsl:if>
> 		</adminsection>
> 	<xsl:template>

> i get
> empty tags <myfirstname> and <mylastname> even though the
> corresponding tags
> are present in the input xml

They are present in the input XML, but not as children of the context node,
which is /order/admin.

I think it would be a much cleaner design to do

<xsl:template match="order">
  <xsl:apply-templates/>
</xsl:template>

and then have a template rule for <admin> in one module, and a rule for
<billing> in the other.

Mike Kay
Software AG


 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.