(nodelist)
| 19 | dom = xml.dom.minidom.parseString(document) |
| 20 | |
| 21 | def getText(nodelist): |
| 22 | rc = [] |
| 23 | for node in nodelist: |
| 24 | if node.nodeType == node.TEXT_NODE: |
| 25 | rc.append(node.data) |
| 26 | return ''.join(rc) |
| 27 | |
| 28 | def handleSlideshow(slideshow): |
| 29 | print("<html>") |
no test coverage detected
searching dependent graphs…