xsl-list
[Top] [All Lists]

[xsl] Find the root element from an attribute node

2008-07-10 06:07:55
Hi all,  [xslt 2.0, Saxon 9]

I'm processing dita and xhtml documents with the same template. All I'm
doing is rewriting the links, that is @hef and @src attributes. However,
I've discovered laterly, for reasons I don't want to go into, that sometimes
the @href in the xhtml need to be handled differently. I want to detect
whether the ancestor of the particular href is <html> as opposed to <map>,
<task>, <concept> or <reference> so that I can treat it differently. How do
I do it?

<xsl:template match="@href[ancestor::html]">

Is never going to work. I've read with bewilderment the threads about the
xslt spec and that attributes are children of elements but elements are not
parents of children... So, that being the case, how exactly do I find out
where my current @href came from?

Thanks in advance,
Richard



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--