| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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"
- version="2.0">
-
- <!-- template do zbudowania listy podzadan na podsatwie <fileset id="builds_to_ant" dir="temp" includes="prezes1.build_root_x2f_.d1e1.CRM_PROCES_x2f_.d1e46.CRM_WSKAZNIK_x2f_.d1e51.CRM_LISTA_ZASOBOW.*" /> -->
-
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <xsl:param name="temp" required="yes"/>
- <xsl:param name="default_antfile"/>
- <!--<xsl:param name="loop_xpath" required="yes"/>-->
- <xsl:param name="loop_xpath_real" required="yes"/>
- <xsl:template match="builds_to_ant">
- <project xmlns:gml="http://www.opengis.net/gml"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:p5_default_db="https://biuro.biall-net.pl/wfs/default_db"
- xmlns:wfs="http://www.opengis.net/wfs"
- xmlns:ogc="http://www.opengis.net/ogc"
- xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
- basedir="../."
- name="builds_to_ant_proj{$loop_xpath_real}"
- default="builds_to_ant{$loop_xpath_real}">
- <target name="builds_to_ant{$loop_xpath_real}">
- <xsl:comment> default_antfile: <xsl:value-of select="$default_antfile"/> ; </xsl:comment>
-
- <xsl:for-each select="tokenize(.,';')">
- <echo>
- #
- #
- #
- #
- builds_to_ant - za chwile uruchomie antfile temp/<xsl:value-of select="."/>;
- #
- #
- </echo>
- <ant antfile="{$temp}/{.}" dir="."/>
- </xsl:for-each>
- </target>
- </project>
- </xsl:template>
-
- </xsl:stylesheet>
|