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

Re: testing for attribute-only

Subject: Re: testing for attribute-only
From: Mukul Gandhi <gandhi.mukul@xxxxxxxxx>
Date: Sun, 28 Aug 2005 11:07:27 +0530
attribute only template
Hi Trevor,
   Probably you want something like

 <?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">

<xsl:output method="text" />

<xsl:template match="/root">
   <xsl:apply-templates select="a" />
</xsl:template>

<xsl:template match="a">
   <xsl:if test="not(@*) and not(node())">
     <xsl:value-of select="position()" /> empty element
   </xsl:if>
   <xsl:if test="@* and not(node())">
     <xsl:value-of select="position()" /> only attributes
   </xsl:if>
   <xsl:if test="not(@*) and node()">
     <xsl:value-of select="position()" /> no attribute, but has child nodes
   </xsl:if>
   <xsl:if test="@* and node()">
     <xsl:value-of select="position()" /> has attribute and also child nodes
   </xsl:if>
</xsl:template>

</xsl:stylesheet>

The XML I used is
<root>
 <a></a>
 <a docref="123456"/>
 <a>some text</a>
 <a case="2"><elementary>my dear Watson</elementary></a>
</root>

This is just a dummy example to illustrate the concept. I have used
position() function to see for which "a" node the output is coming.

Regards,
Mukul

On 8/28/05, Trevor Nicholls <trevor@xxxxxxxxxxxxxxxxxx> wrote:
> Hello
>
> Is there a concise test for the context node that will distinguish between
a
> node that has attributes at most:
>
>  <a><a/>
>  <a docref="123456"/>
>
> and a node that has more than attributes?
>
>  <a>some text</a>
>  <a case="2"><elementary>my dear Watson</elementary><a/>
>
> I have been inadvertently dropping a few dozen of the latter type in trying
> to clean up several thousand of the former in my input documents.
>
> Cheers
> Trevor

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.