| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:p5bws="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/WPS_Functions.xsd"
- xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
- xmlns:p5dkp="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsd"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:p5suis="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/system_ui_info_speech/system_ui_info_speech.xsd"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:p5xsda="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/xsd_asserts/p5xsda.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
-
- <xsl:param name="p5dkp:xsd" required="yes"/>
- <xsl:param name="p5dkp.map.etap.xml" required="yes"/>
- <xsl:param name="p5dkp.map.worker.xml" required="yes"/>
- <xsl:param name="p5dkp.map.role.xml" required="yes"/>
- <xsl:param name="p5dkp.map.product.xml" required="yes"/>
- <xsl:param name="p5dkp.map.wymagania.xml" required="yes"/>
- <xsl:param name="p5dkp.map.zadanie.xml" required="yes"/>
- <xsl:param name="p5dkp.map.keys.xml" required="yes"/>
- <xsl:param name="debug"/>
-
-
-
- <xsl:variable name="map.etap" select="doc($p5dkp.map.etap.xml)"/>
- <xsl:variable name="map.role" select="doc($p5dkp.map.role.xml)"/>
- <xsl:variable name="map.product" select="doc($p5dkp.map.product.xml)"/>
- <xsl:variable name="map.worker" select="doc($p5dkp.map.worker.xml)"/>
- <xsl:variable name="map.wymagania" select="doc($p5dkp.map.wymagania.xml)"/>
- <xsl:variable name="map.zadanie" select="doc($p5dkp.map.zadanie.xml)"/>
-
- <xsl:variable name="p5dkp.map.keys" select="doc($p5dkp.map.keys.xml)"/>
-
-
-
- <xsl:template name="p5dkp:merged.xml" >
-
- <p5dkp:merged.xml xsi:schemaLocation="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsd {$p5dkp:xsd}">
- <xsl:copy-of select="$map.etap"/>
- <xsl:copy-of select="$map.role"/>
- <xsl:copy-of select="$map.product"/>
- <xsl:copy-of select="$map.worker"/>
- <xsl:copy-of select="$map.zadanie"/>
- <xsl:copy-of select="$map.wymagania"/>
- <xsl:copy-of select="$p5dkp.map.keys"/>
- </p5dkp:merged.xml>
- </xsl:template>
-
-
- </xsl:stylesheet>
|