xsl-list
[Top] [All Lists]

Re: [xsl] Processing Stylesheet with multiple namespaces

2007-09-21 14:53:27
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/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--