File: v2_0_2.js

package info (click to toggle)
openlayers 2.13.1%2Bds2-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 67,180 kB
  • ctags: 11,977
  • sloc: xml: 7,435; python: 891; sh: 44; makefile: 23
file content (18 lines) | stat: -rw-r--r-- 632 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var csw_request = 
'<csw:GetDomain xmlns:csw="http://www.opengis.net/cat/csw/2.0.2" service="CSW" version="2.0.2">' +
  '<csw:PropertyName>type</csw:PropertyName>' +
'</csw:GetDomain>';

var csw_response = 
'<?xml version="1.0" encoding="UTF-8"?>' +
'<csw:GetDomainResponse xmlns:csw="http://www.opengis.net/cat/csw/2.0.2">' +
  '<csw:DomainValues type="csw:Record">' +
    '<csw:PropertyName>type</csw:PropertyName>' +
    '<csw:ListOfValues>' +
      '<csw:Value my_attr="my_value">dataset</csw:Value>' +
      '<csw:Value>service</csw:Value>' +
    '</csw:ListOfValues>' +
  '</csw:DomainValues>' +
'</csw:GetDomainResponse>'
;