Altova Mailing List Archives>Archive Index >xsl-list Archive Home >Recent entries >Thread Prev - [xsl] Namespaces best practice in XML [Thread Next] Re: [xsl] Namespaces best practice in XMLTo: Date: 4/4/2006 1:44:00 PM On 4/4/06, tom tom <tomxsllist@xxxxxxxxxxx> wrote: > My XML Source has a default namespace and never uses prefixes. I am writing > a stylesheet which transforms this into XHTML. In the XSLT I (ideally) > never want to prefix any XHTML output elements or any source XML element > references. You will have to do one or the other, as there is only one default namespace, unless you use two passes with the second pass to put all the output elements in the xhtml namespace. eg: Store the first pass in a variable: <xsl:variable name="first_pass"> <xsl:apply-templates/> </xsl:variable> Use an identity template put all the elements in the xhtml namespace: <xsl:template match="*" mode="xhtml"> <xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml"> <xsl:copy-of select="@*"/> <xsl:apply-templates mode="xhtml"/> </xsl:element> </xsl:template> Generate your output by applying the identity template to the first pass: <xsl:template match="/"> <xsl:for-each select="$first_pass"> <xsl:apply-templates mode="xhtml"/> </xsl:for-each> </xsl:template> cheers andrew | ||||||
| Company | Legal | Press | Partners | Careers | Sitemap | Contact Us | Altova Blog | Mobile | Full Site | |||
|
