web/ldt/utils/xml.py
author veltr
Wed, 18 Jul 2012 11:26:58 +0200
changeset 79 be3defb1bbdb
parent 0 ecdfc63274bf
permissions -rw-r--r--
Added Event communication

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