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

Re: forwarding only existing parameter

Subject: Re: forwarding only existing parameter
From: Tony Graham <Tony.Graham@xxxxxxxxxxxxxxx>
Date: Mon, 17 Sep 2001 14:00:17 +0100
apply template parameter default
Guillaume Rousse wrote at 17 Sep 2001 14:16:47 +0200:
...
 > Cause i have the following structure
 > 
 > <template name="list-item">
 >   <param name="context">
 > 
 >   <li>
 >     <apply-template select=".">
 >       <with-param name="context" select="$context"/>
 >     <apply-template/>
 >   </li>
 > </template>
 > 
 > <template match="specific-item1">
 >   <param name="context">default value</param>
 > 
 >   [..]
 > </template>
 > 
 > When calling list-item template with a context parameter, it get forwarded to 
 > template specific-item1. But when calling list-item template without this 
 > parameter, it forwards an empty context parameter to template specific-item1, 
 > thus preventing default value use :-(

Try:

<template name="list-item">
  <param name="context" select="false()">

  <li>
    <apply-template select=".">
      <with-param name="context" select="$context"/>
    <apply-template/>
  </li>
</template>

<template match="specific-item1">
  <param name="context"/>
  <variable name="real-context">
    <choose>
       <when test="$context">
          <value-of select="$context"/>
       </when>
       <otherwise>default value</otherwise>
    </choose>
  </variable>

  [..]
</template>

Regards,


Tony Graham
------------------------------------------------------------------------
XML Technology Center - Dublin        mailto:tony.graham@xxxxxxxxxxxxxxx
Sun Microsystems Ireland Ltd                       Phone: +353 1 8199708
Hamilton House, East Point Business Park, Dublin 3            x(70)19708

 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.