| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="." name="przykladowy ant - do wymiany informacji jako ogolny modul typu WPS obslugujacy zadania get/post" default="http_fist_input">
-
-
- <!--<input addproperty="http_input" />--><!-- dane z apache requesty -->
- <property name="uuid" value="${uuid}"/>
-
- <property name="http_fist_input" value="http_fist_input"/>
- <property name="http_fist_input.html" value="${http_fist_input}.html"/>
- <property name="http_fist_input.xsl" value="${http_fist_input}.xsl"/>
-
- <target name="http_fist_input">
- <!--<echo message="${uuid}"/>-->
- <loadfile srcfile="http_fist_input.html" property="output"/>
- <echo message="${output}"/>
- <!--<echo message="${uuid}"/>-->
- <!--<xslt basedir="./" style="${http_fist_input.xsl}" in="${http_fist_input.html}" destdir="./" >
- <!-\-<fileset refid="edge_paths_with_PE.xml_collection"/>-\->
- <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="DITA_PARSE_templ"/>-\->
- <!-\-<attribute name="http://saxon.sf.net/feature/initialTemplate" value="asd"/>-\->
- </factory>
- <param name="uuid" expression="${uuid}"/>
- <classpath location="/opt/local/share/java/saxon9he.jar"/>
- </xslt>-->
- </target>
-
-
- <target name="http_fist_output">
- <echo message="${uuid}"/>
- <!--<echo message="${uuid}"/>-->
- <!--<xslt basedir="./" style="${http_fist_input.xsl}" in="${http_fist_input.html}" destdir="./" >
- <!-\-<fileset refid="edge_paths_with_PE.xml_collection"/>-\->
- <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="DITA_PARSE_templ"/>-\->
- <!-\-<attribute name="http://saxon.sf.net/feature/initialTemplate" value="asd"/>-\->
- </factory>
- <param name="uuid" expression="${uuid}"/>
- <classpath location="/opt/local/share/java/saxon9he.jar"/>
- </xslt>-->
- </target>
- </project>
|