| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="." name="test default_db/TEST_PERMS">
- <description>
- Test 'default_db/TEST_PERMS' storage acl by Ant
- </description>
- <property name="uuid" value="${uuid}"/>
- <property name="passwordBase64Basic" value="${passwordBase64Basic}"/>
- <property name="url" value="${url}"/>
- <property name="php_session_id" value="${php_session_id}"/>
- <property name="webRootUrl" value="${webRootUrl}"/>
- <target name="DescribeFeatureType" description="URL_TASK Target DescribeFeatureType">
- <echo message="OUTPUT__TYPE__XML"/>
- <echo message="OUTPUT__START"/>
- <!-- <echo message="${wfs_output}"/> -->
- <echoxml>
- <project default="foo">
- <target name="foo">
- <echo>foo</echo>
- </target>
- </project>
- </echoxml>
- <echo message="OUTPUT__END"/>
- </target>
- <target name="GetFeature" description="URL_TASK Target GetFeature">
- <echo message="FETCHING '${url}' ..."/>
- <exec executable="curl" outputproperty="wfs_output" errorproperty="wfs_error" resultproperty="wfs_result">
- <arg line="--cookie 'PHPSESSID=${php_session_id}' '${url}&REQUEST=GetFeature'"/>
- </exec>
- <echo message="OUTPUT__TYPE__XML"/>
- <echo message="OUTPUT__START"/>
- <echo message="${wfs_output}"/>
- <echo message="webRootUrl"></echo>
- <echo message="${webRootUrl}"></echo>
- <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>
- </project>
|