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

Re: testing for a missing attribute

Subject: Re: testing for a missing attribute
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Sat, 10 Jul 2010 22:34:52 -0400
Re:  testing for a missing attribute
At 2010-07-10 19:21 -0700, Dan Vint wrote:
I'm trying to process an XML schema and produce some documentation. I'm trying to trap the various ways min/max occurs can be specified and give the typical option/required/repeating translation. min/maxOccurs are not required values and they default to 1 when not specified. I'm having troubles detecting this situation.

Here is what I've been trying, but it isn't working unless values are specified:

<xsl:choose>
        <xsl:when test="@minOccurs=0 and @maxOccurs=''"> optional

The above won't work because you are testing that the attribute exists and is the empty string. When the attribute doesn't exist, the operand is the empty set. All tests with the empty set as an operand evaluate to false.


</xsl:when>
<xsl:when test="@minOccurs=nil and @maxOccurs=nil"> required
</xsl:when>
<xsl:when test="@minOccurs=1 and @maxOccurs=1"> required
</xsl:when>
<xsl:when test="@minOccurs=1 and @maxOccurs='unbounded'"> required repeating
</xsl:when>
<xsl:when test="@minOccurs='' and @maxOccurs='unbounded'"> required repeating
</xsl:when>
<xsl:otherwise> min:<xsl:value-of select="@minOccurs"/> max:<xsl:value-of select="@maxOccurs"/>
</xsl:otherwise>
</xsl:choose>

How about having:


  <xsl:variable name="minOccurs" select="(@minOccurs,1)[1]"/>
  <xsl:variable name="maxOccurs" select="(@maxOccurs,1)[1]"/>

... and then changing your tests to variables instead of attributes? You won't need the tests for absence since the variable assignment has accommodated absence.

I hope this helps.

. . . . . . . . . . . Ken

--
XSLT/XQuery training:   after http://XMLPrague.cz 2011-03-28/04-01
Vote for your XML training:   http://www.CraneSoftwrights.com/s/i/
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Male Cancer Awareness Nov'07  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal

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.