xsl-list
[Top] [All Lists]

Re: [xsl] xmlns="" added to output

2011-06-28 14:34:16
On 28/06/2011 19:48, Thomas, Jackie R Jr CTR USAF AFMC ESC/HGGI wrote:
<xsl:template 
match="*"><xsl:copy><xsl:apply-templates/></xsl:copy></xsl:template>

presumably you are copying elements in no-namespace into your result document and you want the result to be in a namespace so you don't want to copy you need to generate new nodes with different names from the source.

so not

<xsl:template match="*"><xsl:copy><xsl:apply-templates/></xsl:copy></xsl:template>

but

<xsl:template match="*"><xsl:element name="{local-name()}"><xsl:apply-templates/></xsl:element></xsl:template>

which takes elements from the source and generates elements with the same local name but in the default namespace of the stylesheet..

David

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>