Project

General

Profile

1
<?xml version="1.0"?>
2
<xsl:stylesheet
3
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
        xmlns:gco="http://www.isotc211.org/2005/gco"
5
        version="1.0">
6
    <!-- TODO: gco:Date-->
7
    <!-- TODO: gco:DateTime-->
8

    
9
    <xsl:template match="gco:CharacterString">
10
        <xsl:value-of select="." />
11
    </xsl:template>
12

    
13
    <xsl:template match="gco:Date">
14
        <xsl:value-of select="." />
15
    </xsl:template>
16

    
17
    <xsl:template match="gco:DateTime">
18
        <xsl:value-of select="." />
19
    </xsl:template>
20
</xsl:stylesheet>
(3-3/8)