xsl-list
[Top] [All Lists]

Re: Namespaces and the identity transform

2002-10-29 11:21:36

How can I design an identity transform that applies the default namespace to
the output? 

you want to change body-in-no-namespace to body-in-xhtml to xslt that is
basically a name change, and you'd code it the same way as any other
name change


<xsl:template match="*">
<xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml";>
...

You had
<xsl:template match="*">
        <xsl:element name="{name()}">

which also works as xhtml is the default in the stylesheet ,but I
usualy prefer the other form as it is clearer, or more verbose or
something.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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