web/ldt/utils/xml.py
author samuel huron <admin@cybunk.com>
Mon, 14 Jun 2010 15:18:58 +0200
changeset 39 b620041cc891
parent 0 ecdfc63274bf
permissions -rw-r--r--
update to augmented player (manage streamer)

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