| 12345678910111213141516171819202122232425262728 |
- <?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:output indent="yes"/>
-
- <xsl:strip-space elements="*"/>
-
- <xsl:function name="p5ant-interface:filename.ifexists">
- <xsl:param name="p5ant-interface:filepath"/>
- <xsl:param name="p5ant-interface.filelist.xml.dir"/>
- <xsl:choose>
- <xsl:when test="doc($p5ant-interface.filelist.xml.dir)//p5ant-interface:dir.filename[ text() = $p5ant-interface:filepath]">
- <xsl:value-of select="true()"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:message>#21 file not found <xsl:value-of select="$p5ant-interface:filepath"/></xsl:message>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:function>
-
-
- </xsl:stylesheet>
|