p5dkp.href.no.component.xsl 742 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns:p5dkp="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsd"
  5. exclude-result-prefixes="xs"
  6. version="2.0">
  7. <xsl:function name="p5dkp:href.no.component">
  8. <xsl:param name="href"/>
  9. <xsl:choose>
  10. <xsl:when test="contains($href,'#')">
  11. <xsl:value-of select="substring-before($href,'#')"/>
  12. </xsl:when>
  13. <xsl:otherwise>
  14. <xsl:value-of select="$href"/>
  15. </xsl:otherwise>
  16. </xsl:choose>
  17. </xsl:function>
  18. </xsl:stylesheet>