tests/auto/xmlpatternsschemats/TESTSUITE/unifyCatalog.xsl
author Eckhart Koeppen <eckhart.koppen@nokia.com>
Wed, 21 Apr 2010 20:15:53 +0300
branchRCL_3
changeset 13 c0432d11811c
parent 0 1918ee327afb
permissions -rw-r--r--
eb175c3290cd7ea85da4a590db9461504a4904bc

<xsl:stylesheet version="2.0"
                xmlns:ts="http://www.w3.org/XML/2004/xml-schema-test-suite/"
                xmlns:xlink="http://www.w3.org/1999/xlink"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

    <xsl:template match="ts:testSetRef">
        <xsl:apply-templates select="document(@xlink:href)"/>
    </xsl:template>

    <!-- We make all URI references absolute. -->
    <xsl:template match="@xlink:href">
        <xsl:attribute name="xlink:href" select="resolve-uri(., base-uri())"/>
    </xsl:template>

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>