| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:p5apl="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apple/p5apl.xsd"
- basedir="../../."
- default="default"
- name="apple">
- <include as="PRODUCT" file="build.p5apl.PRODUCT.xml"/>
- <include as="SYSTEM" file="build.p5apl.SYSTEM.xml"/>
- <include as="INSTALL" file="build.p5apl.INSTALL.xml"/>
- <include as="WPS_Functions" file="../build.WPS_Functions.PRODUCT.xml"/>
- <include file="../system_ui_info_speech/build.system_ui_info_speech.PRODUCT.xml"/>
-
- <include file="build.p5apl.terminal-notifier.xml" as="terminal-notifier"/>
-
- <extension-point name="open" depends="open.exec, open.exec.fail" extensionOf="p5ant.safety.open_file__x3A__p5apl.open" onMissingExtensionPoint="warn" />
-
-
-
- <target name="open.exec" if="p5apl.open" unless="open_file__x3A__opened">
- <echo>#19 [ O P E N F I L E ] will exec open </echo>
- <exec executable="${p5apl.open}">
- <arg file="${local.p5ant.safety.filename}"/>
- </exec>
- <property name="open_file__x3A__opened" value=" file was oppened by p5apl.open.exec app ${p5apl.open} "/>
- </target>
-
- <target name="open.exec.fail" unless="p5apl.open">
- <echo>#27 [ O P E N E R R O R ] - NO MODULE AVIABLE TO OPEN
- $p5apl.open = ${p5apl.open}
-
- </echo>
- </target>
-
- <target description="test usage of default xslt template for module"
- name="xsl-test">
- <xslt basedir="${p5apl.basedir}"
- destdir="${p5apl.temp}"
- force="true"
- in="${p5apl.INSTALL.install_example}"
- out="${p5apl.temp}/INSTALL.install_example.xsl-test.xml"
- style="${p5apl.xsl}">
- <factory name="net.sf.saxon.TransformerFactoryImpl">
- <attribute name="http://saxon.sf.net/feature/xinclude-aware" value="true"/>
- <attribute name="http://saxon.sf.net/feature/initialMode"
- value="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apple/p5apl.xsd}INSTALL.install_example.xsl-test.xml"/>
- <attribute name="http://saxon.sf.net/feature/dtd-validation-recoverable"
- value="true"/>
- </factory>
- <param expression="${p5apl.basedir}"
- name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apple/p5apl.xsd}basedir"/>
- <param expression="${p5apl.repository}"
- name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apple/p5apl.xsd}repository"/>
- <param expression="${p5apl.temp}"
- name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apple/p5apl.xsd}temp"/>
- <classpath location="/opt/local/share/java/saxon9he.jar"/>
- <xmlcatalog refid="dita-ot.dtd.catalog"/>
- </xslt>
- </target>
- </project>
|