xsl-list
[Top] [All Lists]

Re: [xsl] self axis vs .

2008-06-06 06:11:51
i guess that <xsl:apply-templates select="self::elem" mode="other"/>
is same as <xsl:if test="self::elem"><xsl:apply-templates
select="."....

i prefer use <xsl:next-match/> instead <xsl:apply-templates select="."
mode="...."

On Fri, Jun 6, 2008 at 4:59 PM, Andrew Welch 
<andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com> wrote:
An interesting practice I've come across at a client's site is instead
of using . they use self:: instead...

So instead of:

<xsl:apply-templates select="." mode="other"/>

you have

<xsl:apply-templates select="self::elem" mode="other"/>

and instead of:

.//whatever

you have:

self::elem//whatever

While it seemed a little odd to start with, their argument of it helps
locate where you are (especially when . is far away from the match
pattern that's normally used to discover the current node) is
beginning to grow on me...


--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

--~------------------------------------------------------------------
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>
--~--



--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>