| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:send_email="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/send_email/send_email.xsd"
- basedir="../../."
- default="default"
- name="send_email">
- <include as="PRODUCT" file="build.send_email.PRODUCT.xml"/>
- <include as="SYSTEM" file="build.send_email.SYSTEM.xml"/>
- <include as="INSTALL" file="build.send_email.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"/>
- <target depends="PRODUCT.PRODUCT,INSTALL.INSTALL" name="default"/>
-
-
-
- <target name="send_email_from_xml_parsed" description="To send email based on dita file - parse if there are any emails aviable">
- <input addproperty="send_email.xml_to_parse.xml" message="Type url to XML with emails to parse - like .dita file"/>
- <!--<property name="send_email.xml_to_parse.xml" location="/opt/local/pl.procesy5/p5build_SE/temp/WPS_Functions/temp/recurse_ant/62888prezes1/62888prezes1_out_task_dita_final.dita"/>-->
- <tempfile property="send_email.send_email_from_xml_parsed.xml" destdir="${send_email.temp}" prefix="send_email.send_email_from_xml_parsed." suffix=".xml"/>
- <tempfile property="send_email.send_email_from_xml_parsed.build.xml" destdir="${send_email.temp}" prefix="send_email.send_email_from_xml_parsed.build.xml" suffix=".xml"/>
-
-
- <xslt basedir="${send_email.temp}" style="${send_email.xsl}" in="${send_email.xml_to_parse.xml}" destdir="./" out="${send_email.send_email_from_xml_parsed.xml}" >
- <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/send_email/send_email.xsd}send_email.send_email_from_xml_parsed.xml"/>
- </factory>
- <classpath location="/opt/local/share/java/saxon9he.jar"/>
- <!--<param name="webRootUrl" expression="${webRootUrl}" />-->
- <!--<param name="main_build_recurse_ant.dita" expression="${main_build_recurse_ant.dita}"/>-->
- <!--<param name="uuid" expression="${uuid_tested}"/>-->
- <param name="basedir" expression="${basedir}"/>
- <!-- <param name="temp" expression="${temp}"/>
- <param name="with_RelatedFeatureLoop" expression="1"/>
- <param name="simpleSchema_dir" expression="${simpleSchema_dir}"/>-->
-
- </xslt>
-
- <xslt basedir="${send_email.temp}" style="${send_email.xsl}" in="${send_email.send_email_from_xml_parsed.xml}" destdir="./" out="${send_email.send_email_from_xml_parsed.build.xml}" >
- <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/send_email/send_email.xsd}send_email.send_email_from_xml_parsed.build.xml"/>
- </factory>
- <classpath location="/opt/local/share/java/saxon9he.jar"/>
-
- <param name="basedir" expression="${basedir}"/>
- <param name="send_email.INSTALL.javax.mail-1.6.1.jar" expression="${send_email.INSTALL.javax.mail-1.6.1.jar}"/>
-
- </xslt>
-
- <ant antfile="${send_email.send_email_from_xml_parsed.build.xml}"/>
-
- <!--<exec executable="open">
- <arg file="${send_email.send_email_from_xml_parsed.build.xml}"/>
- </exec>-->
-
- </target>
-
- </project>
|