| 1234567891011121314151617181920 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:bgwrx="http://biuro.biall-net.pl/WPS_Functions/get_wfs_recurse_xsl/get_wfs_recurse_xsl.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
-
-
-
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
-
- <xsl:template match="*" mode="bgwrx:RelatedFeatureRoot">
- <RelatedFeatureRoot>
- <xsl:copy-of select="."/>
- </RelatedFeatureRoot>
- </xsl:template>
-
- </xsl:stylesheet>
|