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

RE: how do you determine if a property exists?

Subject: RE: how do you determine if a property exists?
From: David Buddrige <dbuddrige@xxxxxxxxx>
Date: Thu, 15 Apr 2004 01:17:38 -0700 (PDT)
xslt determine if attribute exists
--- Jarno.Elovirta@xxxxxxxxx wrote:
> if you want to test if the attribute
> exists, then simply
> 
>   <xsl:when test="@Predecessors">
> 

For some reason, this doesn't seem to work for me.  I
am using saxon as my xslt processor.

I have the following data:

<?xml version="1.0" encoding="iso-8859-1"?>
<info>
	<mytag duration="3 days" />
	<mytag />
	<mytag duration="6 hours" />
	<mytag duration="33 hours" />
	<mytag duration="" />
	<mytag duration="13 hours" />
	<mytag duration="5 days" />
	<mytag duration="" />
	<mytag duration="3 hours" />
	<mytag duration="23 hours" />
</info>


Here is my template:

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="/">
		<myoutput>
			<xsl:apply-templates/>
		</myoutput>
	</xsl:template>
	<xsl:template match="mytag">
		<xsl:element name="myelement">
			<xsl:attribute name="time">
				<xsl:choose>
					<xsl:when test="@duration=''">1</xsl:when>
					<xsl:when test="@duration">1</xsl:when>
					<xsl:otherwise><xsl:value-of
select="@duration"/></xsl:otherwise>
				</xsl:choose>
			</xsl:attribute>
		</xsl:element>
	</xsl:template>
</xsl:stylesheet>


And here is the output that I get - note that the
second element has an empty attribute, where it
*should* take the value of 1, given that the second
element in the source data has no duration
attribute...

<?xml version="1.0" encoding="UTF-8"?><myoutput>
	<myelement time="1"/>
	<myelement time=""/>
	<myelement time="1"/>
	<myelement time="1"/>
	<myelement time="1"/>
	<myelement time="1"/>
	<myelement time="1"/>
	<myelement time="1"/>
	<myelement time="1"/>
	<myelement time="1"/>
</myoutput>

Does anyone know what might be wrong here?

thanks heaps guys

David Buddrige. 8-)


	
		
__________________________________
Do you Yahoo!?
Yahoo! Tax Center - File online by April 15th
http://taxes.yahoo.com/filing.html

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.