[xsl] xsl, and different xml versions

Subject: [xsl] xsl, and different xml versions
From: Jake Briggs <jakbri@xxxxxxxxxxxxxx>
Date: Fri, 15 Apr 2005 14:27:34 +1200
Hi all

I have a problem and I am unsure which approach to take in order to solve it. The problem is this:

The root element of the xml I am transforming with xsl will have a version number in it, indicating which version of the xsl i want to transform it with. By that, I mean I have 2 style sheets, both operating on similer xml. I though I may be able to do this by xsl:import, when the xsl matches the root element I though that I could make a decision based on the value of the attribute. IE :

The source xml :

<report version="1">
 <table foo="bar"/>
 <text value="sometext"/>
</report>

The xsl :

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:template match="/">
<xsl:if test="@version = '1'"> <xsl:import href="version1.xsl"/>
</xsl:if>
<xsl:if test="@version = '2'"> <xsl:import href="version2.xsl"/>
</xsl:if>


   <xsl:apply-imports/>
 </xsl:template>

</xsl:stylesheet>


The files version1.xsl, and version2.xsl would contain matches for "table" and "text", but would process them differently.


But no, apparently <xsl:import /> and <xsl:include /> can only have <xsl:stylesheet /> as a parent. I would like to do something like the above, because I dont want to have to call my version 2 xml elements convoluted names so that they dont conflict with the version 1 xml. I dont want to have a version attribute in each xml element either. Also, I would prefer to avoid having the software that initiates the transformation make the decision on which stylesheet to use to transform the xml, but maybe that is the correct way to do it.

Any ideas?

Jake

--
Named after its country of origin 'England', English is a little known dialect used by up to 1.5 billion non-Americans worldwide. Some interesting but obviously incorrect features of the language include:

- queues of people
- wonderful coloUrs
- the useful metal aluminIum
- the exotic herbs (h-urbs), basil (ba-zil) and oregano (o-re-gaa-no)
- specialiSed books called 'dictionaries' that tell you how to spell words correctly

Many people using this bizarre gutter speak also subscribe to the pagan belief that water freezes at 0 degrees and that distances should be measured in the forbidden mathematical system of base-10...

Current Thread