| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:tidy="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/tidy/tidy.xsd"
- xmlns:p5xsl="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/xsl_interface/xsl_interface.xsd"
- basedir="../../."
- default="PRODUCT"
- name="tidy.PRODUCT">
- <description>p5suis:say Created function tidy with prefix tidy by p5ant module</description>
- <include as="WPS_Functions" file="../build.WPS_Functions.PRODUCT.xml"/>
- <condition property="tidy.PRODUCT.ifdef.parent"
- taskname="tidy.parent.PRODUCT.ifdef">
- <isset property="WPS_Functions.PRODUCT.name"/>
- </condition>
- <property name="tidy.PRODUCT.name" value="${WPS_Functions.PRODUCT.name}.tidy"/>
- <property name="tidy.PRODUCT.vendor-domain"
- value="${WPS_Functions.PRODUCT.name}.tidy"/>
- <property name="tidy.basedir" value="${WPS_Functions.basedir}/tidy"/>
- <property name="tidy.repository" value="${tidy.basedir}/repository"/>
- <property name="tidy.install" value="${tidy.basedir}/install"/>
- <property location="${tidy.basedir}/temp" name="tidy.temp"/>
- <property location="${tidy.basedir}/tidy.xsl" name="tidy.xsl"/>
- <property location="${tidy.basedir}/tidy.xsd" name="tidy.xsd"/>
- <property location="${tidy.basedir}/tidy.include.structure.xml"
- name="tidy.include.structure.xml"/>
- <property location="${tidy.basedir}/tidy.include.xsl.p5xsls.xml"
- name="tidy.include.xsl.p5xsls.xml"/>
- <property location="${tidy.repository}/install_example.file"
- name="tidy.install_example"/>
- <target depends="basedir,p5xsls.xml"
- description="to create basedir, includes and install"
- name="PRODUCT"/>
- <target description="to create local dirs" name="basedir">
- <propertyset id="tidy.local.properties">
- <propertyref prefix="tidy"/>
- <mapper from="tidy.*" to="local.*" type="glob"/>
- </propertyset>
- <antcall inheritall="false" target="WPS_Functions.basedir.p5bws:dirs">
- <propertyset refid="tidy.local.properties"/>
- </antcall>
- </target>
- <target description="To delete all temp and repository" name="clean">
- <antcall inheritall="false" target="WPS_Functions.basedir.p5bws:dirs.clean">
- <propertyset refid="tidy.local.properties"/>
- </antcall>
- </target>
- <target description="To delete all temp and repository" name="clean.temp">
- <antcall inheritall="false"
- target="WPS_Functions.basedir.p5bw.p5bws:dirs.temp.clean">
- <propertyset refid="tidy.local.properties"/>
- </antcall>
- </target>
- <target name="parent.PRODUCT.ifdef"
- unless="tidy.WPS_Functions.PRODUCT.ifdef.parent">
- <fail>There is not set correct parent PRODUCT from expected file="../build.WPS_Functions.PRODUCT.xml"</fail>
- </target>
- <target name="p5xsls.xml" depends="basedir">
- <description>
- TODO to be fixed by xslt to allow dynamic create of multi include xsl templates
- </description>
- <echoxml namespacepolicy="elementsOnly" file="${tidy.include.xsl.p5xsls.xml}">
- <stylesheet_buildlist xmlns="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/xsl_interface/xsl_interface.xsd">
- <namespaces.list>
- <namespaces.list.namespace prefix="tidy"
- namespace="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/tidy/tidy.xsd"/>
- </namespaces.list>
- <include.list>
- <include.list.href href="/Users/a.binder/Documents/xmlschema_procesy5/src-xmlschema/public_html/WPS_Functions/ant/p5ant.xsl"/>
- </include.list>
- </stylesheet_buildlist>
- </echoxml>
- </target>
- </project>
|