| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="." name="SyncResourcesYed" default="http_fist_input" >
-
- <!-- default procesy5 template -->
- <property name="uuid" value="${uuid}"/>
- <property name="passwordBase64Basic" value="${passwordBase64Basic}"/>
- <property name="url" value="${url}"/>
- <!-- eof default procesy5 template -->
-
- <!-- custom properties of script -->
- <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"/>
- <!-- eof properties of script -->
-
-
- <!-- first menu to be showed in GUI @description-->
- <target name="http_fist_input" description="Export/Import Resources to Yed .grapml">
- <echo message="${uuid}"/>
- <loadfile property="output.html" srcfile="${http_fist_input.html}"/>
- <echo message="${output.html}"/>
- <echoproperties regex=".*"/>
- </target>
-
-
- <target name="first_save_data" description="do zapisania wynikow od uzytkownika do WFS">
-
-
-
- </target>
-
-
- <target name="http_fist_input">
- <exec executable="curl" outputproperty="wfs_output" errorproperty="wfs_error" resultproperty="wfs_result">
- <arg line="-H 'Authorization: Basic ${passwordBase64Basic}' ${url}"/>
- </exec>
- <echo message="curl -H 'Authorization: Basic ${passwordBase64Basic}' '${url}'"/>
- <echo message="OUTPUT__START"/>
- <echo message="${wfs_output}"/>
- <echo message="OUTPUT__END"/>
-
- <echo message="RESULT__START"/>
- <echo message="${wfs_result}"/>
- <echo message="RESULT__END"/>
-
- <echo message="ERROR__START"/>
- <echo message="${wfs_error}"/>
- <echo message="ERROR__END"/>
- </target>
- <!--
- <target name="http_first_output">
- <echo message="${uuid}"/>
- <echo>http_first_output</echo>
- </target>-->
-
- </project>
|