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

RE: Can't match node without node()[name(.) syntax

Subject: RE: Can't match node without node()[name(.) syntax
From: "Robert Soesemann" <rsoesemann@xxxxxxxxxxx>
Date: Tue, 30 Nov 2004 15:54:23 +0100
xsl template match node
Thanks Michael and David,

Indeed my problem was namespace-related. I clean my xml files with Tidy
before, which adds an XHTML namespace default definition. After I told
Tidy to stop that, my problems faded away. ;-)

Thanks for your great hints.

Robert

-----Original Message-----
From: Michael Kay [mailto:mike@xxxxxxxxxxxx]
Sent: Dienstag, 30. November 2004 15:48
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE:  Can't match node without node()[name(.) syntax


I asked for a complete example, you've only given us a fragment. You've
probably left out the part of your stylesheet or source document that
contains the problem. It's remarkable how often people remove the
"irrelevant detail" that's actually the bug.

For example, you might have another template rule that matches
my-relation elements, and that has higher priority than
match="my-relation" but lower priority than match="node()[name(.) =
'my-relation']".

But that's only a guess.

Sometimes these problems are namespace-related: your source document
would give clues to that. You haven't shown us that either. But in this
case I can't think of any namespace issues that would cause this effect.

Michael Kay
http://www.saxonica.com/

> -----Original Message-----
> From: Robert Soesemann [mailto:rsoesemann@xxxxxxxxxxx]
> Sent: 30 November 2004 13:56
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  Can't match node without node()[name(.) syntax
>
> Help;-(
>
> I experienced that I cannot match any element in the normal
> way of just
> Naming the node name. Instead I also need to write
> "node()[name(.)='....
> Any ideas why that happens? Could it be the identity template that I
> use?
>
> This works (I see <FOOOOOO/>):
> -----------------------------
> 	<!-- Copy nodes except those affected by other templates -->
> 	<xsl:template match="/ | @* | node()">
> 	   <xsl:copy>
> 	     <xsl:apply-templates select="@* | node()"/>
> 	   </xsl:copy>
> 	</xsl:template>
>
> 	<!-- Match all kiwi-relation elements  -->
> 	<xsl:template match="node()[name(.) = 'my-relation']">
>
>         <FOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO/>
>         ...
>
> This doesn't works (I don't see <FOOOOOO/>):
> -------------------------------------------
> 	<!-- Copy nodes except those affected by other templates -->
> 	<xsl:template match="/ | @* | node()">
> 	   <xsl:copy>
> 	     <xsl:apply-templates select="@* | node()"/>
> 	   </xsl:copy>
> 	</xsl:template>
>
> 	<!-- Match all kiwi-relation elements  -->
> 	<xsl:template match="my-relation">
>         <FOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO/>
>         ...
> Why that?

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.