Changeset 753 for trunk/zoo-project/zoo-client/lib
- Timestamp:
- Mar 14, 2016, 10:34:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-client/lib/tpl/payload_Execute.mustache
r752 r753 2 2 ../wpsExecute_request.xsd" language="{{language}}"> 3 3 <!-- template-version: 0.21 --> 4 5 4 <ows:Identifier>{{Identifier}}</ows:Identifier> 5 <wps:DataInputs> 6 6 {{#DataInputs}} 7 7 {{#is_literal}} 8 9 10 11 12 13 8 <wps:Input> 9 <ows:Identifier>{{identifier}}</ows:Identifier> 10 <wps:Data> 11 <wps:LiteralData{{#dataType}} dataType="{{dataType}}"{{/dataType}}>{{value}}</wps:LiteralData> 12 </wps:Data> 13 </wps:Input> 14 14 {{/is_literal}} 15 15 {{#is_bbox}} 16 17 18 19 20 21 22 23 24 16 <wps:Input> 17 <ows:Identifier>{{identifier}}</ows:Identifier> 18 <wps:Data> 19 <wps:BoundingBoxData ows:crs="{{crs}}" ows:dimensions="{{dimension}}"> 20 <ows:LowerCorner>{{lowerCorner}}</ows:LowerCorner> 21 <ows:UpperCorner>{{upperCorner}}</ows:UpperCorner> 22 </wps:BoundingBoxData> 23 </wps:Data> 24 </wps:Input> 25 25 {{/is_bbox}} 26 26 {{#is_complex}} 27 27 {{#is_reference}} 28 28 {{#is_get}} 29 30 31 32 29 <wps:Input> 30 <ows:Identifier>{{identifier}}</ows:Identifier> 31 <wps:Reference xlink:href="{{href}}"{{#schema}} schema="{{shema}}"{{/schema}}{{#mimeType}} mimeType="{{mimeType}}"{{/mimeType}}{{#encoding}} encoding="{{encoding}}"{{/encoding}}/> 32 </wps:Input> 33 33 {{/is_get}} 34 34 {{#is_post}} 35 36 37 35 <wps:Input> 36 <ows:Identifier>{{identifier}}</ows:Identifier> 37 <wps:Reference xlink:href="{{href}}" method="{{method}}" {{#schema}} schema="{{shema}}"{{/schema}}{{#mimeType}} mimeType="{{mimeType}}"{{/mimeType}}{{#encoding}} encoding="{{encoding}}"{{/encoding}}> 38 38 {{#headers}} 39 39 <wps:Header key="{{key}}" value="{{value}}" /> 40 40 {{/headers}} 41 42 43 41 <wps:Body>{{{value}}}</wps:Body> 42 </wps:Reference> 43 </wps:Input> 44 44 {{/is_post}} 45 45 {{/is_reference}} 46 46 {{^is_reference}} 47 47 <wps:Input> 48 48 <ows:Identifier>{{identifier}}</ows:Identifier> 49 49 <wps:Data> 50 <wps:ComplexData{{#schema}} schema="{{shema}}"{{/schema}}{{#mimeType}} mimeType="{{mimeType}}"{{/mimeType}}{{#encoding}} encoding="{{encoding}}"{{/encoding}}>{{#is_XML}} 51 {{{value}}}{{/is_XML}}{{^is_XML}}<![CDATA[{{{value}}}]]>{{/is_XML}} 52 </wps:ComplexData> 50 <wps:ComplexData{{#schema}} schema="{{shema}}"{{/schema}}{{#mimeType}} mimeType="{{mimeType}}"{{/mimeType}}{{#encoding}} encoding="{{encoding}}"{{/encoding}}>{{#is_XML}}{{{value}}}{{/is_XML}}{{^is_XML}}<![CDATA[{{{value}}}]]>{{/is_XML}}</wps:ComplexData> 53 51 </wps:Data> 54 52 </wps:Input> … … 56 54 {{/is_complex}} 57 55 {{/DataInputs}} 58 59 56 </wps:DataInputs> 57 <wps:ResponseForm> 60 58 {{#RawDataOutput}} 61 59 {{#DataOutputs}}
Note: See TracChangeset
for help on using the changeset viewer.