That solved the problem. Thank You
----- Original Message -----
From: "Justin Makeig" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, October 20, 2003 1:01 PM
Subject: Re: NCName:* or QName was expected


> This has nothing to do with Cocoon. Your select statement is invalid. You
> need an element name (QName) or a wildcard (*) along the attribute axis
(@)
> of your copy-of. Try:
>
> <xsl:template match="abc:*">
>      <xsl:copy><xsl:copy-of select="node() | @*"/></xsl:copy>
> </xsl:template>
>
> Or even better,
>
> <xsl:template match="abc:*">
>     <xsl:copy-of select="."/>
> </xsl:template>
>
>
> - Justin
>
>
>
> On 10/20/03 12:04 AM, "iyy" <[EMAIL PROTECTED]> wrote:
>
> > <xsl:template match="abc:*">
> >     <xsl:copy><xsl:copy-of select="node() | @"/></xsl:copy>
> > </xsl:template>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to