| 123456789101112131415161718192021 |
- <?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:p5dkp="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
-
-
- <xsl:function name="p5dkp:href.no.component">
- <xsl:param name="href"/>
- <xsl:choose>
- <xsl:when test="contains($href,'#')">
- <xsl:value-of select="substring-before($href,'#')"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$href"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:function>
-
- </xsl:stylesheet>
|