| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?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:p5ant-interface="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/ant_interface/ant_interface.xsd"
- xmlns:p5dg="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/documentation_generator/documentation_generator.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
-
-
- <xsl:include href="../documentation_generator/p5dg.filepath.xsl"/>
-
-
-
- <xsl:output indent="yes"/>
-
- <xsl:strip-space elements="*"/>
- <xsl:param name="p5ant-interface.filelist.xml.dir" required="yes"/>
-
-
-
-
- <xsl:template mode="p5ant-interface:filelist.index_fileset.xml" match="p5ant-interface.filelist.fileset.xml" xpath-default-namespace="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/ant_interface/ant_interface.xsd"> <!-- xpath-default-namespace="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/documentation_generator/documentation_generator.xsd" -->
- <p5ant-interface:filelist.index_fileset.xml>
- <xsl:for-each select="tokenize(text(),';')">
- <p5ant-interface:p5dg.file>
- <p5ant-interface:filepath.dir><xsl:value-of select="p5dg:filepath.dir(.,$p5ant-interface.filelist.xml.dir)"/></p5ant-interface:filepath.dir>
- <p5ant-interface:filename><xsl:value-of select="p5dg:filename(.)"/></p5ant-interface:filename>
- <p5ant-interface:dir.filename><xsl:value-of select="p5dg:filepath.clean(concat(p5dg:filepath.dir(.,$p5ant-interface.filelist.xml.dir),'/',p5dg:filename(.)))"/></p5ant-interface:dir.filename>
- </p5ant-interface:p5dg.file>
- </xsl:for-each>
- </p5ant-interface:filelist.index_fileset.xml>
- </xsl:template>
-
-
-
-
- </xsl:stylesheet>
|