[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[xsl] XSLT2.0 modes
Subject: [xsl] XSLT2.0 modes
From: Soren Kuula <dongfang@xxxxxxxxxxx>
Date: Wed, 04 Jan 2006 16:07:48 +0000
|
Hi,
If I do
<template match="/" mode="#default">
<call-template name="foo"/>
</template>
<template name="foo">
<apply-templates mode="#current"/>
</template>
--- what is the mode, in the apply-templates inst.? I'm inclined to
believe that it is #default, since it appears that calling named
templates does not change the current mode, and that was #default at the
time of the call. On the other hand, I can't find the place where the
spec is explicit about that (I can only see that mode doesn't affect
template calls -- not the other way round).
Soren
|