| 12345678910111213141516171819202122232425262728293031323334 |
- <?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"
- xmlns:p5ant-interface="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/ant_interface/ant_interface.xsd"
- xmlns:p5suis="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/system_ui_info_speech/system_ui_info_speech.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
- <xsl:output indent="yes" method="xml" />
-
- <xsl:strip-space elements="*"/>
-
-
- <xsl:template match="p5ant-interface:filelist.index_fileset.xml" mode="p5dkp:ditafiles.wordindex.merged.ditafiles.single.xml">
- <p5dkp:ditafiles.wordindex.merged.ditafiles.single.xml>
- <xsl:apply-templates mode="#current"/>
- </p5dkp:ditafiles.wordindex.merged.ditafiles.single.xml>
- </xsl:template>
-
-
-
- <xsl:template match="p5ant-interface:p5dg.file" mode="p5dkp:ditafiles.wordindex.merged.ditafiles.single.xml">
- <!--<p5ant-interface:p5dg.file>-->
- <xsl:copy-of select="doc(p5ant-interface:dir.filename/text())"/>
- <!--</p5ant-interface:p5dg.file>-->
- </xsl:template>
-
-
-
-
-
- </xsl:stylesheet>
|