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

Re: using default params?

Subject: Re: using default params?
From: Paul Tchistopolskii <paul@xxxxxxx>
Date: Tue, 28 Mar 2000 19:48:17 -0800
xpath xsl eval xsl param
----- Original Message ----- 
From: David Carlisle 

> > What I'm looking for is something like being able to 
> 
> > <xsl:param name="a_name" select="eval(@a_name or 'default_value')"/>
> 
> <xsl:param name="a_name">
>   <xsl:choose>
>    <xsl:when test="@a_name"><xsl:value-of select="@_name"/></xsl:when>
>    <xsl:otherwise>default</xsl:otherwise>
>   </xsl:choose>
> </xsl:param>
> 
> does what you say you are looking for, but it's not what you want.
> 
> what you want is
> 
> <table bgcolor="#ff0000">
>   <xsl:if test="@col1"><xsl:value-of select="@col1"/></xsl:if>
>   <tr><td><xsl:apply-templates/></td></tr>
> <table>

.... I guess what David wants to say is :

<table bgcolor="#ff0000">
     <xsl:attribute name="bgcolor">
     <xsl:if test="@col1"><xsl:value-of select="@col1"/></xsl:if>
     </xsl:attribute>
     <tr><td><xsl:apply-templates/></td></tr>
<table>

> if your input attribute had had the same name as the result attribute 
> it is simpler
> 
> 
> <table bgcolor="#ff0000">
>   <xsl:copy-of select="@bgcolor"/>
>   <tr><td><xsl:apply-templates/></td></tr>
> <table>

Only David knows what he wants to say here, because the original 
posting was talking about 3 tables when each table has the 'bgcolor' 
attribute. ( BTW  - <xsl:attribute> is also missing here ).

Rgds.Paul.




 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.