> i tried something like <xsl:apply-templates match="nodea|nodeb"/>
> and all I got
> was an org.apache.xalan.xslt.XSLProcessorException:
> Should this work?
You're just a little off. You probably want:
<xsl:template match="nodea|nodeb">
...
</xsl:template>
or perhaps
<xsl:appy-templates select="nodea|nodeb"/>
I've never tried the latter, nor seen code like it so i can't
guarantee it works, but the first one will.
-matt
On Fri, Sep 01, 2000 at 11:47:05AM +0200, Konstantin Agouros wrote:
> Hi,
>
> Konstantin
>
> --
> Konstantin Agouros - NetAge Solutions, Dingolfinger Str. 6, 81673 Muenchen
> Tel.: 089 666584-0, Fax: 089 666584-11, Email: Konstantin.Agouros@netage.de
> --------------------------------------------------------------------------
> Black holes are, where god divided by zero.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: cocoon-users-unsubscribe@xml.apache.org
> For additional commands, e-mail: cocoon-users-help@xml.apache.org
>
|