| 123456789101112131415161718192021222324252627282930313233 |
- <?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:bp="https://procesy5.pl/biale_plamy-schema.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
-
- <xsl:import href="asText.xsl"/>
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <xsl:template match="joins_asText">
- <joins_asText_xml>
- <xsl:apply-templates/>
- </joins_asText_xml>
- </xsl:template>
-
-
- <xsl:template match="item">
- <item>
- <xsl:copy-of select="@id"/>
- <xsl:variable name="asText">
- <asText>
- <xsl:value-of select="text()"/>
- </asText>
- </xsl:variable>
- <xsl:apply-templates mode="POINT" select="$asText"/>
- </item>
-
- </xsl:template>
-
-
- </xsl:stylesheet>
|