xsl-list
[Top] [All Lists]

[xsl] Re: changing from no namespace to a namespace

2008-04-05 07:20:21
solution:

  <xsl:template match="*">
        <xsl:element name="{local-name()}" namespace="
http://www.bibletechnologies.net/2003/OSIS/namespace";>
            <xsl:copy-of select="@*"/>
            <xsl:apply-templates/>
        </xsl:element>
    </xsl:template>

I was pleasantly surprised to see that xml:lang wasn't changed.
Thanks for your help.

Jim Albright
704 843-0582
JAARS, Speeding Bible Translation
Wycliffe, Partners in Bible Translation



--~------------------------------------------------------------------
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>
  • [xsl] Re: changing from no namespace to a namespace, Jim_Albright <=