Subject: Re: Find and change an attribute in a Processing Instruction
From: Jon Gorman <jonathan.gorman@xxxxxxxxx>
Date: Mon, 30 Jan 2006 14:25:07 -0600
|
On 1/30/06, Rick Quatro <frameexpert@xxxxxxxxxxxx> wrote:
> <xsl:processing-instruction name="Fm">
>
> I am hardcoding the name of the processing instruction. How can I use the
> name of the current processing instruction instead of hard coding a name.
Memory is a little rusty here, but off the top of my head I think that
processing nodes in the XPath model aren't associated with a
stylesheet but do have names, so either :
<xsl:processing-instruction name="name()">
or
<xsl:processing-instruction name="local-name()">
should do the trick. Not entirely positive though, might want to
double-check the XPath spec on it.
Jon Gorman
|