blob: 170f732e6d9169ff17730005440f07c4f7ef9305 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!-- Remove includes of netex-nl-enums.xsd -->
<xsl:template match="xsd:include[@schemaLocation='netex-nl-enums.xsd']" />
<!-- Apply the transformation on the entire tree -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:transform>
|