| 1234567891011121314151617181920212223242526 |
- <?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">
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <xsl:param name="WPS_Functions" required="yes"/>
-
-
- <xsl:template match="WPS_Functions.childproperties.builds">
- <project basedir="." name="WPS_Functions.childproperties.builds" default="WPS_Functions.childproperties.builds">
- <description>
- Generated ant by xsl from childproperties modules, to be run modules in mode to let they give their properties and dependencies
- </description>
- <target name="WPS_Functions.childproperties.builds">
- <xsl:for-each select="tokenize(.,';')">
- <echo>Running <xsl:value-of select="."/></echo>
- <ant antfile="{$WPS_Functions}/{.}" inheritall="yes" inheritrefs="yes" target="write_child_props_to_config_dir"/>
- </xsl:for-each>
- </target>
- </project>
- </xsl:template>
-
- </xsl:stylesheet>
|