build.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <loadfile srcfile="http_fist_input.html" property="output"/>
  11. <echo message="${output}"/>
  12. <!--<echo message="${uuid}"/>-->
  13. <!--<xslt basedir="./" style="${http_fist_input.xsl}" in="${http_fist_input.html}" destdir="./" >
  14. <!-\-<fileset refid="edge_paths_with_PE.xml_collection"/>-\->
  15. <factory name="net.sf.saxon.TransformerFactoryImpl">
  16. <attribute name="http://saxon.sf.net/feature/xinclude-aware" value="true"/>
  17. <!-\-<attribute name="http://saxon.sf.net/feature/initialMode" value="DITA_PARSE_templ"/>-\->
  18. <!-\-<attribute name="http://saxon.sf.net/feature/initialTemplate" value="asd"/>-\->
  19. </factory>
  20. <param name="uuid" expression="${uuid}"/>
  21. <classpath location="/opt/local/share/java/saxon9he.jar"/>
  22. </xslt>-->
  23. </target>
  24. <target name="http_fist_output">
  25. <echo message="${uuid}"/>
  26. <!--<echo message="${uuid}"/>-->
  27. <!--<xslt basedir="./" style="${http_fist_input.xsl}" in="${http_fist_input.html}" destdir="./" >
  28. <!-\-<fileset refid="edge_paths_with_PE.xml_collection"/>-\->
  29. <factory name="net.sf.saxon.TransformerFactoryImpl">
  30. <attribute name="http://saxon.sf.net/feature/xinclude-aware" value="true"/>
  31. <!-\-<attribute name="http://saxon.sf.net/feature/initialMode" value="DITA_PARSE_templ"/>-\->
  32. <!-\-<attribute name="http://saxon.sf.net/feature/initialTemplate" value="asd"/>-\->
  33. </factory>
  34. <param name="uuid" expression="${uuid}"/>
  35. <classpath location="/opt/local/share/java/saxon9he.jar"/>
  36. </xslt>-->
  37. </target>
  38. </project>