source: ISOcat/trunk/mod-ISOcat-access-data/schemas/DCIF-cleanup.xsl @ 2029

Last change on this file since 2029 was 2029, checked in by mwindhouwer, 12 years ago

Initial import of all the *cats, i.e., ISOcat, RELcat and SCHEMAcat.

File size: 529 bytes
Line 
1<xsl:stylesheet 
2  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3  version="2.0"
4  xmlns:dcr="http://www.isocat.org/ns/dcr"
5  xmlns:isocat="http://www.isocat.org/"
6>
7        <xsl:output method="xml" encoding="utf-8"/>
8       
9        <xsl:template match="@dcr:datcat[(.='http://www.isocat.org/datcat/ISO-DC-nnnn') or (.='http://www.isocat.org/datcat/DC-nnnn')]"/>
10       
11        <xsl:template match="@*|node()">
12                <xsl:copy copy-namespaces="no">
13                        <xsl:apply-templates select="@*|node()"/>
14                </xsl:copy>
15        </xsl:template>
16
17</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.