build.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="." name="przykladowy ant - do wymiany informacji jako ogolny modul typu WPS obslugujacy zadania get/post" default="http_fist_input">
  3. <!--<input addproperty="http_input" />--><!-- dane z apache requesty -->
  4. <property name="uuid" value="${uuid}"/>
  5. <property name="http_fist_input" value="http_fist_input"/>
  6. <property name="http_fist_input.html" value="${http_fist_input}.html"/>
  7. <property name="http_fist_input.xsl" value="${http_fist_input}.xsl"/>
  8. <target name="http_fist_input">
  9. <echo message="${uuid}"/>
  10. <echo></echo>
  11. <!--<echo message="${uuid}"/>-->
  12. <!--<xslt basedir="./" style="${http_fist_input.xsl}" in="${http_fist_input.html}" destdir="./" >
  13. <!-\-<fileset refid="edge_paths_with_PE.xml_collection"/>-\->
  14. <factory name="net.sf.saxon.TransformerFactoryImpl">
  15. <attribute name="http://saxon.sf.net/feature/xinclude-aware" value="true"/>
  16. <!-\-<attribute name="http://saxon.sf.net/feature/initialMode" value="DITA_PARSE_templ"/>-\->
  17. <!-\-<attribute name="http://saxon.sf.net/feature/initialTemplate" value="asd"/>-\->
  18. </factory>
  19. <param name="uuid" expression="${uuid}"/>
  20. <classpath location="/opt/local/share/java/saxon9he.jar"/>
  21. </xslt>-->
  22. </target>
  23. <target name="http_fist_output">
  24. <echo message="${uuid}"/>
  25. <!--<echo message="${uuid}"/>-->
  26. <!--<xslt basedir="./" style="${http_fist_input.xsl}" in="${http_fist_input.html}" destdir="./" >
  27. <!-\-<fileset refid="edge_paths_with_PE.xml_collection"/>-\->
  28. <factory name="net.sf.saxon.TransformerFactoryImpl">
  29. <attribute name="http://saxon.sf.net/feature/xinclude-aware" value="true"/>
  30. <!-\-<attribute name="http://saxon.sf.net/feature/initialMode" value="DITA_PARSE_templ"/>-\->
  31. <!-\-<attribute name="http://saxon.sf.net/feature/initialTemplate" value="asd"/>-\->
  32. </factory>
  33. <param name="uuid" expression="${uuid}"/>
  34. <classpath location="/opt/local/share/java/saxon9he.jar"/>
  35. </xslt>-->
  36. </target>
  37. </project>