|
|
@@ -0,0 +1,46 @@
|
|
|
+<?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"
|
|
|
+ exclude-result-prefixes="xs"
|
|
|
+ xmlns:get_wfs="http://biuro.biall-net.pl/WPS_Functions/get_wfs/get_wfs.xsd"
|
|
|
+ xmlns:system_cache__dita="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/dita.xsd"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xmlns:p5="https://biuro.biall-net.pl/wfs"
|
|
|
+ version="2.0">
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <xsl:output indent="yes"/>
|
|
|
+ <xsl:strip-space elements="*"/>
|
|
|
+
|
|
|
+ <xsl:template name="system_cache__dita:parts__x3A__map.title">
|
|
|
+ <xsl:choose>
|
|
|
+ <xsl:when test="count(system_cache__dita:parts) > 1 ">
|
|
|
+ <xsl:apply-templates mode="system_cache__dita:parts__x3A__map.title" select="@*"/><xsl:text> ( łącznie </xsl:text> <xsl:value-of select="count(system_cache__dita:parts)"/><xsl:text> części ) </xsl:text>
|
|
|
+ </xsl:when>
|
|
|
+ <xsl:when test="system_cache__dita:parts">
|
|
|
+ <xsl:apply-templates mode="system_cache__dita:parts__x3A__map.title" select="@*"/>
|
|
|
+ <xsl:text> (jedyna)
|
|
|
+ </xsl:text>
|
|
|
+ </xsl:when>
|
|
|
+ </xsl:choose>
|
|
|
+
|
|
|
+ </xsl:template>
|
|
|
+
|
|
|
+
|
|
|
+ <xsl:template mode="system_cache__dita:parts__x3A__map.title" match="@system_cache__dita:part">
|
|
|
+ <xsl:text> , część nr: </xsl:text><xsl:value-of select="."/><xsl:text>
|
|
|
+ </xsl:text>
|
|
|
+ </xsl:template>
|
|
|
+
|
|
|
+ <xsl:template mode="system_cache__dita:parts__x3A__map.title" match="@*"/>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <xsl:template mode="system_cache__dita:parts__x3A__map.title" match="*"/>
|
|
|
+
|
|
|
+ <xsl:template mode="system_cache__dita:parts__x3A__map.title" match="text()|comment()"/>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</xsl:stylesheet>
|