89 |
Information should only be retrieved with the respective |
Information should only be retrieved with the respective |
90 |
get*() methods. |
get*() methods. |
91 |
""" |
""" |
92 |
root = xml.dom.minidom.parseString(data).documentElement |
xml_dom = xml.dom.minidom.parseString(data) |
93 |
|
root = xml_dom.documentElement |
94 |
|
|
95 |
# Extract the title |
# Extract the title |
96 |
foo = getElementByName(getElementByName(root, 'Service'), 'Title') |
foo = getElementByName(getElementByName(root, 'Service'), 'Title') |
126 |
self.peekLayers(getElementByName(getElementByName( |
self.peekLayers(getElementByName(getElementByName( |
127 |
root, 'Capability'), 'Layer'), -1) |
root, 'Capability'), 'Layer'), -1) |
128 |
|
|
129 |
|
xml_dom.unlink() |
130 |
|
|
131 |
|
|
132 |
def peekLayers(self, top, parent): |
def peekLayers(self, top, parent): |
133 |
""" |
""" |