src/ldt/ldt/utils/xml.py
author ymh <ymh.work@gmail.com>
Fri, 15 May 2015 16:10:02 +0200
changeset 1376 82d479d7af2c
parent 13 97ab7b3191cf
permissions -rw-r--r--
Added tag V01.56.02 for changeset 3e9428287eb1

def getText(anode):
	nodelist = anode.childNodes
	rc = ""
	for node in nodelist:
		if node.nodeType == node.TEXT_NODE:
			rc = rc + node.data
	return rc