Re: [xsl] Processing Stylesheet with multiple namespaces

Subject: Re: [xsl] Processing Stylesheet with multiple namespaces
From: "Joe Fawcett" <joefawcett@xxxxxxxxxxx>
Date: Fri, 21 Sep 2007 17:29:02 -0500
Michael

Well I ran it with .NET 2, C#, as well, same class and it certainly removed it. Strange. Can you post the exact XSLT here?

Joe
----- Original Message ----- From: "Michael Daniloff" <mdanilof@xxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Friday, September 21, 2007 4:53 PM
Subject: Re: [xsl] Processing Stylesheet with multiple namespaces



Thanks Joe

I plugged the stylesheet into C# code with
XslCompiledTransform call, but the result is still the
same. I'm left with "o:ole" attribute.

Then I plugged your stylesheet and got the same
result.

Not sure what's going on.

Regards,

Michael

------------- In reply to ----------------------

This seems to work:

<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="w:object">
<w:pict>
<xsl:apply-templates select="@*|node()"/>
</w:pict>
</xsl:template>
<xsl:template match="w:OLEObject"/>
<xsl:template match="@o:ole"/>

or you may want:

<w:pict>
<xsl:apply-templates select="@*|node()"/>
</w:pict>
for w:pict depending on whether or not you want the
attributes to
remain.

That was run with System.Xml.Xsl.XslCompiledTransform
in Microsoft.Net
framework.
(There's no point in trying to exclude namespace
prefixes if the
namespaces
themselves are needed in the output document.)

Joe
http://joe.fawcett.name



____________________________________________________________________________________
Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase.
http://farechase.yahoo.com/

Current Thread